From 720614ad88dd4cac20be894d57c8b09ee9804a63 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Aug 2026 01:12:10 +0000 Subject: [PATCH 1/2] build(deps): bump katex in the npm-minor-and-patch group Bumps the npm-minor-and-patch group with 1 update: [katex](https://github.com/KaTeX/KaTeX). Updates `katex` from 0.18.1 to 0.18.4 - [Release notes](https://github.com/KaTeX/KaTeX/releases) - [Changelog](https://github.com/KaTeX/KaTeX/blob/main/CHANGELOG.md) - [Commits](https://github.com/KaTeX/KaTeX/compare/v0.18.1...v0.18.4) --- updated-dependencies: - dependency-name: katex dependency-version: 0.18.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: npm-minor-and-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 0708973..680990c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,7 +13,7 @@ "@tauri-apps/plugin-clipboard-manager": "^2.3.2", "@tauri-apps/plugin-dialog": "^2.0.0", "echarts": "^6.1.0", - "katex": "^0.18.1" + "katex": "^0.18.4" }, "devDependencies": { "@tauri-apps/cli": "^2.0.0", @@ -617,9 +617,9 @@ } }, "node_modules/katex": { - "version": "0.18.1", - "resolved": "https://registry.npmjs.org/katex/-/katex-0.18.1.tgz", - "integrity": "sha512-Td8GCYSxDAoMhHOlKmCFMJ/hz5qlAAb71n66Dryw9nfCVfumLo7nhuotbvKom/XPADmrYC3O5QR71EPq4DarJQ==", + "version": "0.18.4", + "resolved": "https://registry.npmjs.org/katex/-/katex-0.18.4.tgz", + "integrity": "sha512-IMPntbRLOU+eu88XDiFKqQ8Akhr9Tv7jDMXqPhjG9SI1JMA4DIgXk4x9k4skJz2NZJXBRbC+2pYBLj9olqcZow==", "funding": [ "https://opencollective.com/katex", "https://github.com/sponsors/katex" diff --git a/package.json b/package.json index ef6151a..adb484c 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "@tauri-apps/plugin-clipboard-manager": "^2.3.2", "@tauri-apps/plugin-dialog": "^2.0.0", "echarts": "^6.1.0", - "katex": "^0.18.1" + "katex": "^0.18.4" }, "devDependencies": { "@tauri-apps/cli": "^2.0.0", From 2461ec2f6910a1b3106ed27407712d23d97c68c3 Mon Sep 17 00:00:00 2001 From: eRAW Development Date: Tue, 18 Aug 2026 10:32:16 +0800 Subject: [PATCH 2/2] test: synchronize KaTeX dependency metadata --- THIRD_PARTY_NOTICES.md | 2 +- tests/help-window.test.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/THIRD_PARTY_NOTICES.md b/THIRD_PARTY_NOTICES.md index c3fc555..21bfde8 100644 --- a/THIRD_PARTY_NOTICES.md +++ b/THIRD_PARTY_NOTICES.md @@ -46,7 +46,7 @@ eRAW itself is distributed under GPL-3.0-or-later. Dependency copyrights remain | echarts | 6.1.0 | runtime | Apache-2.0 | | fdir | 6.5.0 | development | MIT | | fsevents | 2.3.3 | development | MIT | -| katex | 0.18.1 | runtime | MIT | +| katex | 0.18.4 | runtime | MIT | | lightningcss | 1.33.0 | development | MPL-2.0 | | lightningcss-android-arm64 | 1.33.0 | development | MPL-2.0 | | lightningcss-darwin-arm64 | 1.33.0 | development | MPL-2.0 | diff --git a/tests/help-window.test.mjs b/tests/help-window.test.mjs index 04e0c63..c828dd8 100644 --- a/tests/help-window.test.mjs +++ b/tests/help-window.test.mjs @@ -122,7 +122,7 @@ test("the application distributes no named font or font file", () => { assert.doesNotMatch(styleSource, /@font-face|Cascadia|Consolas|Segoe|Microsoft YaHei/); assert.match(pixelOverlaySource, /ui-monospace, monospace/); assert.doesNotMatch(pixelOverlaySource, /Cascadia|Consolas|Segoe|Microsoft YaHei/); - assert.equal(JSON.parse(packageSource).dependencies.katex, "^0.18.1"); + assert.equal(JSON.parse(packageSource).dependencies.katex, "^0.18.4"); assert.match(appSource, /KaTeX<\/strong>/); assert.match(appSource, /MIT<\/code>/); assert.match(fontPolicySource, /MathML/);