-
Notifications
You must be signed in to change notification settings - Fork 423
Update various dependencies to fix vulnerabilities #2618
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -78,7 +78,7 @@ | |
| "rxjs": "^6.6.0 || ^7.4.0" | ||
| }, | ||
| "dependencies": { | ||
| "lodash": "^4.17.21" | ||
| "lodash": "^4.18.1" | ||
| }, | ||
| "devDependencies": { | ||
| "@angular-devkit/build-angular": "^20.0.0", | ||
|
|
@@ -87,20 +87,20 @@ | |
| "@angular-eslint/eslint-plugin-template": "^20.7.0", | ||
| "@angular-eslint/schematics": "^20.7.0", | ||
| "@angular-eslint/template-parser": "^20.7.0", | ||
| "@angular/animations": "^20.3.24", | ||
| "@angular/animations": "^20.3.31", | ||
| "@angular/cdk": "^20.2.14", | ||
| "@angular/cli": "^20.3.27", | ||
| "@angular/common": "^20.3.24", | ||
| "@angular/compiler": "^20.3.24", | ||
| "@angular/compiler-cli": "^20.3.24", | ||
| "@angular/core": "^20.3.24", | ||
| "@angular/forms": "^20.3.24", | ||
| "@angular/cli": "^20.3.37", | ||
| "@angular/common": "^20.3.31", | ||
| "@angular/compiler": "^20.3.31", | ||
| "@angular/compiler-cli": "^20.3.31", | ||
| "@angular/core": "^20.3.31", | ||
| "@angular/forms": "^20.3.31", | ||
| "@angular/material": "^20.2.14", | ||
| "@angular/platform-browser": "^20.3.24", | ||
| "@angular/platform-browser-dynamic": "^20.3.24", | ||
| "@angular/router": "^20.3.24", | ||
| "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.5", | ||
| "@babel/plugin-proposal-optional-chaining": "^7.16.5", | ||
| "@angular/platform-browser": "^20.3.31", | ||
| "@angular/platform-browser-dynamic": "^20.3.31", | ||
| "@angular/router": "^20.3.31", | ||
| "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", | ||
| "@babel/plugin-proposal-optional-chaining": "^7.21.0", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These two are dead here. angular-material has no babel config and no reference to babel in its sources or build config (Angular CLI runs its own pipeline), so these devDeps are never used. Dropping them is better than bumping. |
||
| "@jsonforms/angular": "workspace:*", | ||
| "@jsonforms/core": "workspace:*", | ||
| "@jsonforms/examples": "workspace:*", | ||
|
|
@@ -112,7 +112,7 @@ | |
| "@typescript-eslint/parser": "^5.54.1", | ||
| "babel-loader": "^8.0.6", | ||
| "copy-webpack-plugin": "^11.0.0", | ||
| "dayjs": "^1.11.10", | ||
| "dayjs": "^1.11.11", | ||
| "eslint": "^8.56.0", | ||
| "eslint-config-prettier": "^8.7.0", | ||
| "eslint-plugin-import": "^2.27.5", | ||
|
|
@@ -134,7 +134,7 @@ | |
| "prettier": "^2.8.4", | ||
| "protractor": "^7.0.0", | ||
| "rimraf": "^6.1.0", | ||
| "rxjs": "^6.6.0", | ||
| "rxjs": "^6.6.7", | ||
| "ts-loader": "^9.5.1", | ||
| "tslib": "^2.5.0", | ||
| "typedoc": "~0.25.3", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -88,7 +88,7 @@ | |
| "dependencies": { | ||
| "@date-io/dayjs": "^3.0.0", | ||
| "dayjs": "1.10.7", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| "lodash": "^4.17.21" | ||
| "lodash": "^4.18.1" | ||
| }, | ||
| "peerDependencies": { | ||
| "@emotion/react": "^11.5.0", | ||
|
|
@@ -101,8 +101,8 @@ | |
| "react": "^16.12.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@emotion/react": "^11.5.0", | ||
| "@emotion/styled": "^11.3.0", | ||
| "@emotion/react": "^11.11.4", | ||
| "@emotion/styled": "^11.11.5", | ||
| "@jsonforms/core": "workspace:*", | ||
| "@jsonforms/react": "workspace:*", | ||
| "@mui/icons-material": "^9.2.0", | ||
|
|
||
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.
These two are deprecated by Babel, but the better move is dropping them rather than bumping. They are only reachable via webpack.base.js (dev server only,
buildandbuild:examples-appuse rollup) and via theNODE_ENV === 'test'branch in vue / vue-vanilla, where@vue/cli-plugin-babel/presetalready pulls in preset-env, which ships both transforms already.