You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## [2.22.0] - 2023-01-01
Thanks to: @angeldeejay, @buxxi, @dariom, @dWoolridge,
@KristjanESPERANTO, @MagMar94, @naveensrinivasan, @retroflex, @SkySails
and @tom.
Special thanks to @khassel, @rejas and @sdetweil for taking over most
(if not all) of the work on this release as project collaborators. This
version would not be there without their effort. Thank you!
### Added
- Added test for remoteFile option in compliments module
- Added hourlyWeather functionality to Weather.gov weather provider
- Removed weatherEndpoint definition from weathergov.js (not used)
- Added css class names "today" and "tomorrow" for default calendar
- Added Collaboration.md
- Added new github action for dependency review (#2862)
- Added a WeatherProvider for Open-Meteo
- Added Yr as a weather provider
- Added config options "ignoreXOriginHeader" and
"ignoreContentSecurityPolicy"
### Removed
- Removed usage of internal fetch function of node until it is more
stable
### Updated
- Cleaned up test directory (#2937) and jest config (#2959)
- Wait for all modules to start before declaring the system ready
(#2487)
- Updated e2e tests (moved `done()` in helper functions) and use es6
syntax in all tests
- Updated da translation
- Rework weather module
- Make sure smhi provider api only gets a maximum of 6 digits
coordinates (#2955)
- Use fetch instead of XMLHttpRequest in weatherprovider (#2935)
- Reworked how weatherproviders handle units (#2849)
- Use unix() method for parsing times, fix suntimes on the way (#2950)
- Refactor conversion functions into utils class (#2958)
- The `cors`-method in `server.js` now supports sending and recieving
HTTP headers
- Replace `…` by `…`
- Cleanup compliments module
- Updated dependencies including electron to v22 (#2903)
### Fixed
- Correctly show apparent temperature in SMHI weather provider
- Ensure updatenotification module isn't shown when local is _ahead_ of
remote
- Handle node_helper errors during startup (#2944)
- Possibility to change FontAwesome class in calendar, so icons like
`fab fa-facebook-square` works.
- Fix cors problems with newsfeed articles (as far as possible), allow
disabling cors per feed with option `useCorsProxy: false` (#2840)
- Tests not waiting for the application to start and stop before
starting the next test
- Fix electron tests failing sometimes in github workflow
- Fixed gap in clock module when displayed on the left side with
displayType=digital
- Fixed playwright issue by upgrading to v1.29.1 (#2969)
Signed-off-by: naveen <[email protected]>
Co-authored-by: Karsten Hassel <[email protected]>
Co-authored-by: Malte Hallström <[email protected]>
Co-authored-by: Veeck <[email protected]>
Co-authored-by: veeck <[email protected]>
Co-authored-by: dWoolridge <[email protected]>
Co-authored-by: Johan <[email protected]>
Co-authored-by: Dario Mratovich <[email protected]>
Co-authored-by: Dario Mratovich <[email protected]>
Co-authored-by: Magnus <[email protected]>
Co-authored-by: Naveen <[email protected]>
Co-authored-by: buxxi <[email protected]>
Co-authored-by: Thomas Hirschberger <[email protected]>
Co-authored-by: Kristjan ESPERANTO <[email protected]>
Co-authored-by: Andrés Vanegas Jiménez <[email protected]>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+62-10Lines changed: 62 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,30 +5,82 @@ This project adheres to [Semantic Versioning](https://semver.org/).
5
5
6
6
❤️ **Donate:** Enjoying MagicMirror²? [Please consider a donation!](https://magicmirror.builders/donate) With your help we can continue to improve the MagicMirror².
7
7
8
+
## [2.22.0] - 2023-01-01
9
+
10
+
Thanks to: @angeldeejay, @buxxi, @dariom, @dWoolridge, @KristjanESPERANTO, @MagMar94, @naveensrinivasan, @retroflex, @SkySails and @Tom.
11
+
12
+
Special thanks to @khassel, @rejas and @sdetweil for taking over most (if not all) of the work on this release as project collaborators. This version would not be there without their effort. Thank you!
13
+
14
+
### Added
15
+
16
+
- Added test for remoteFile option in compliments module
17
+
- Added hourlyWeather functionality to Weather.gov weather provider
18
+
- Removed weatherEndpoint definition from weathergov.js (not used)
19
+
- Added css class names "today" and "tomorrow" for default calendar
20
+
- Added Collaboration.md
21
+
- Added new github action for dependency review (#2862)
22
+
- Added a WeatherProvider for Open-Meteo
23
+
- Added Yr as a weather provider
24
+
- Added config options "ignoreXOriginHeader" and "ignoreContentSecurityPolicy"
25
+
26
+
### Removed
27
+
28
+
- Removed usage of internal fetch function of node until it is more stable
29
+
30
+
### Updated
31
+
32
+
- Cleaned up test directory (#2937) and jest config (#2959)
33
+
- Wait for all modules to start before declaring the system ready (#2487)
34
+
- Updated e2e tests (moved `done()` in helper functions) and use es6 syntax in all tests
35
+
- Updated da translation
36
+
- Rework weather module
37
+
- Make sure smhi provider api only gets a maximum of 6 digits coordinates (#2955)
38
+
- Use fetch instead of XMLHttpRequest in weatherprovider (#2935)
39
+
- Reworked how weatherproviders handle units (#2849)
40
+
- Use unix() method for parsing times, fix suntimes on the way (#2950)
41
+
- Refactor conversion functions into utils class (#2958)
42
+
- The `cors`-method in `server.js` now supports sending and recieving HTTP headers
43
+
- Replace `…` by `…`
44
+
- Cleanup compliments module
45
+
- Updated dependencies including electron to v22 (#2903)
46
+
47
+
### Fixed
48
+
49
+
- Correctly show apparent temperature in SMHI weather provider
50
+
- Ensure updatenotification module isn't shown when local is _ahead_ of remote
51
+
- Handle node_helper errors during startup (#2944)
52
+
- Possibility to change FontAwesome class in calendar, so icons like `fab fa-facebook-square` works.
53
+
- Fix cors problems with newsfeed articles (as far as possible), allow disabling cors per feed with option `useCorsProxy: false` (#2840)
54
+
- Tests not waiting for the application to start and stop before starting the next test
55
+
- Fix electron tests failing sometimes in github workflow
56
+
- Fixed gap in clock module when displayed on the left side with displayType=digital
57
+
- Fixed playwright issue by upgrading to v1.29.1 (#2969)
58
+
8
59
## [2.21.0] - 2022-10-01
9
60
10
61
Special thanks to: @BKeyport, @buxxi, @davide125, @khassel, @kolbyjack, @krukle, @MikeBishop, @rejas, @sdetweil, @SkySails and @veeck
11
62
12
-
## Added
63
+
###Added
13
64
14
-
-Possibility to fetch calendars through socket notifications.
65
+
-Added possibility to fetch calendars through socket notifications.
15
66
- New scripts `install-mm` (and `install-mm:dev`) for simplifying mm installation (now: `npm run install-mm`) and adding params `--no-audit --no-fund --no-update-notifier` for less noise.
16
67
- New `showTimeToday` option in calendar module shows time for current-day events even if `timeFormat` is `"relative"`.
17
-
- Add hourly forecasts, apparent temperature & custom location name to SMHI weather provider.
68
+
- Added hourly forecasts, apparent temperature & custom location name to SMHI weather provider.
69
+
- Added new electron tests for calendar and moved some compliments tests from `e2e` to `electron` because of date mocking, removed mock stuff from compliments module.
18
70
19
-
## Removed
71
+
###Removed
20
72
21
-
- Old weather deprecated modules `currentweather` and `weatherforecast`.
73
+
- Removed old and deprecated weather modules `currentweather` and `weatherforecast`.
74
+
- Removed `DAYAFTERTOMORROW` from English.
22
75
23
-
## Updated
76
+
###Updated
24
77
25
-
- Removed `DAYAFTERTOMORROW` from English.
26
-
- Update dependencies.
78
+
- Updated dependencies.
27
79
- Updated jsdoc.
28
-
- Updated font tree to use variables consistantly.
80
+
- Updated font tree to use variables consistently.
29
81
- Removed deprecated Docker Repository from issue template.
30
82
31
-
## Fixed
83
+
###Fixed
32
84
33
85
- Broadcast all calendar events while still honoring global and per-calendar maximumEntries.
This document describes how collaborators of this repository should work together.
2
+
3
+
## Pull Requests
4
+
5
+
- never merge your own PR's
6
+
- never merge without someone having approved (approving and merging from same person is allowed)
7
+
- wait for all approvals requested (or the author decides something different in the comments)
8
+
9
+
## Issues
10
+
11
+
- "real" Issues are closed if the problem is solved and the fix is released
12
+
- unrelated Issues (e.g. related to a foreign module) are closed immediately with a comment to open an issue in the module repository or to discuss this further in the forum or discord
0 commit comments