Skip to content

Commit 777b49c

Browse files
chore: update dependencies (MagicMirrorOrg#3891)
Since receiving a security warning about `axios` in `node-ical` (https://github.com/MagicMirrorOrg/MagicMirror/security/dependabot/70), I've created [a pull request to remove `axios` from `node-ical`](jens-maus/node-ical#397) — it was accepted and we now have a new version 🙂
1 parent fb2aa43 commit 777b49c

File tree

5 files changed

+2927
-1760
lines changed

5 files changed

+2927
-1760
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Thanks to: @dathbe.
4545
### Updated
4646

4747
- [calendar] Update defaultSymbol name and also the link to the icon search site (#3879)
48-
- [core] Update dependencies including electron to v38 as well as github actions (#3831, #3849, #3857, #3858, #3872, #3876, #3882)
48+
- [core] Update dependencies including electron to v38 as well as github actions (#3831, #3849, #3857, #3858, #3872, #3876, #3882, #3891)
4949
- [weather] Update feels_like temperature calculation formula (#3869)
5050

5151
### Fixed
@@ -56,6 +56,7 @@ Thanks to: @dathbe.
5656
- [calendar] Fix regression handling of limit days (#3840)
5757
- [calendar] Fixed regression of calendarfetcherutils.shouldEventBeExcluded (#3841)
5858
- [core] Fixed socket.io timeout when server is slow to send notification, notification lost at client (#3380)
59+
- [tests] refactor AnimateCSS tests after jsdom 27 upgrade (#3891)
5960
- [weather] Use `apparent_temperature` data from openmeteo's hourly weather for current feelsLikeTemp (#3868).
6061

6162
## [2.32.0] - 2025-07-01

eslint.config.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import globals from "globals";
33
import {flatConfigs as importX} from "eslint-plugin-import-x";
44
import jest from "eslint-plugin-jest";
55
import js from "@eslint/js";
6-
import jsdoc from "eslint-plugin-jsdoc";
6+
import jsdocPlugin from "eslint-plugin-jsdoc";
77
import packageJson from "eslint-plugin-package-json";
88
import stylistic from "@stylistic/eslint-plugin";
99

@@ -23,8 +23,8 @@ export default defineConfig([
2323
moment: "readonly"
2424
}
2525
},
26-
plugins: {js, jsdoc, stylistic},
27-
extends: [importX.recommended, jest.configs["flat/recommended"], "js/recommended", jsdoc.configs["flat/recommended"], "stylistic/all"],
26+
plugins: {js, stylistic},
27+
extends: [importX.recommended, jest.configs["flat/recommended"], "js/recommended", jsdocPlugin.configs["flat/recommended"], "stylistic/all"],
2828
rules: {
2929
"@stylistic/array-element-newline": ["error", "consistent"],
3030
"@stylistic/arrow-parens": ["error", "always"],

0 commit comments

Comments
 (0)