-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build(frontend-react): ⬆️ Upgrade frontend dependencies #424
Conversation
Upgrades all direct frontend dependencies to their latest versions. Functionality was manually verified using tests and the application.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 2 out of 3 changed files in this pull request and generated no suggestions.
Files not reviewed (1)
- frontend-react/package.json: Language not supported
Pull request was converted to draft
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 7 out of 17 changed files in this pull request and generated no suggestions.
Files not reviewed (10)
- frontend-react/package.json: Language not supported
- frontend-react/src/lib/widget/configuration/configuration-context.tsx: Evaluated as low risk
- frontend-react/src/lib/application/routes/migration/migration-page.tsx: Evaluated as low risk
- frontend-react/src/lib/application/routes/dashboard-editor/layout-editor/components/empty-cell.tsx: Evaluated as low risk
- frontend-react/src/lib/user-data/state.ts: Evaluated as low risk
- frontend-react/src/lib/application/routes/migration/components/existing-user-prompt.tsx: Evaluated as low risk
- frontend-react/src/app/index.tsx: Evaluated as low risk
- frontend-react/src/lib/application/routes/migration/components/new-user-prompt.tsx: Evaluated as low risk
- frontend-react/src/lib/application/routes/dashboard-page/routing.ts: Evaluated as low risk
- frontend-react/src/lib/application/routes/dashboard-editor/layout-editor/components/layout-editor.tsx: Evaluated as low risk
Comments skipped due to low confidence (1)
frontend-react/src/lib/auth/controller.ts:43
- Removing the error parameter in the catch block can hide useful debugging information. Consider keeping the error parameter to log or handle the error appropriately.
} catch {
PR is mostly ready for review. We still need to migrate to the new ESLint config stuff – cf. https://eslint.org/docs/latest/use/configure/migration-guide – to accomodate the ESLint upgrade, though. |
…ite upgrade With the Vite upgrade to v6, the CSS file got renamed: <https://vite.dev/guide/migration#customize-css-output-file-name-in-library-mode>. This means we have to adjust the name in the `exports` of the `package.json`, as well. This is actually quite nice because the name now matches the one actually imported. But still: requires a change. That's what this commit does. Nothing more, nothing less.
Ok... I have no idea how that just broke the CI. Must look into that later. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🎲
Upgrades all direct frontend dependencies to their latest versions.
Functionality was manually verified using tests and the application.
main