Skip to content

Commit b9e1552

Browse files
jessealamaclaude
andcommitted
chore: bump major versions for low/medium-risk dependencies
Update 27 packages to their latest major versions: Tier 3 (low risk): @fontsource/roboto (5.x), @fontsource/roboto-mono (5.x), @fortawesome/* (7.x), cross-env (10.x), debounce (3.x), uuid (13.x), @vitejs/plugin-react-swc (4.x), concurrently (9.x), css-loader (7.x), cypress (15.x), style-loader (4.x), vite (7.x), vite-plugin-node-polyfills (0.25.x), vite-plugin-static-copy (3.x), wait-on (9.x) Tier 2 (medium risk): express (5.x), i18next (25.x), i18next-http-backend (3.x), react-i18next (16.x), marked (17.x), react-markdown (10.x), remark-gfm (4.x), remark-math (6.x), rehype-katex (7.x) Code changes required by the upgrades: - debounce v3: switch to default import - react-markdown v10: wrap in div for className (removed prop) - express v5: use named wildcard params (*path) and array join - Remove @types/debounce (v3 ships own types) All 24 E2E tests pass. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 246d4f6 commit b9e1552

File tree

5 files changed

+4252
-6252
lines changed

5 files changed

+4252
-6252
lines changed

client/src/components/markdown.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ export function Markdown(props: any) {
2626
rehypePlugins: [...props.remarkPlugins ?? [], rehypeKatex],
2727
};
2828
return (
29-
<ReactMarkdown {...newProps} className="markdown" />
29+
<div className="markdown">
30+
<ReactMarkdown {...newProps} />
31+
</div>
3032
);
3133
}

client/src/state/store.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @fileOverview configure the store and save the state periodically to the browser storage
33
*/
44
import { configureStore } from '@reduxjs/toolkit';
5-
import { debounce } from "debounce";
5+
import debounce from "debounce";
66

77
import { connection } from '../connection'
88
import { apiSlice } from './api'

0 commit comments

Comments
 (0)