From 35e57803d7bc2f4f2a5dda52631c09fae4b0545e Mon Sep 17 00:00:00 2001 From: Kristjan SCHMIDT <35647502+KristjanESPERANTO@users.noreply.github.com> Date: Sat, 25 Mar 2023 08:16:21 +0100 Subject: [PATCH 1/2] Fix import order To fix issue caused by #3071 --- serveronly/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serveronly/index.js b/serveronly/index.js index 7f81dc11ee..3cfa7969d2 100644 --- a/serveronly/index.js +++ b/serveronly/index.js @@ -1,5 +1,5 @@ -const Log = require("logger"); const app = require("../js/app"); +const Log = require("../js/logger"); app.start().then((config) => { const bindAddress = config.address ? config.address : "localhost"; From 833bbd087526f5f1cf4c3c84d763b398b05a6a62 Mon Sep 17 00:00:00 2001 From: Kristjan SCHMIDT <35647502+KristjanESPERANTO@users.noreply.github.com> Date: Sat, 25 Mar 2023 09:22:23 +0100 Subject: [PATCH 2/2] Add PR links --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3aeb891468..a3ce292659 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,7 +39,7 @@ _This release is scheduled to be released on 2023-04-01._ - Update `stylelint` dependencies, switch to `stylelint-config-standard` and handle `stylelint` issues, update `main.css` matching new rules - Update Eslint config, add new rule and handle issue - Convert lots of callbacks to async/await -- Revise require imports +- Revise require imports (#3071 and #3072) ### Fixed @@ -58,7 +58,7 @@ _This release is scheduled to be released on 2023-04-01._ - Fix e2e tests (failed after async changes) by running calendar and newsfeed tests last - Lint: Use template literals instead of string concatenation - Fix default alert module to render HTML for title and message -- Fixed Open-Meteo wind speed units +- Fix Open-Meteo wind speed units ## [2.22.0] - 2023-01-01