-
Notifications
You must be signed in to change notification settings - Fork 647
Update dependency uuid to v14 [SECURITY] - abandoned #8794
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: main
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 |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@backstage-community/plugin-agent-forge': patch | ||
| --- | ||
|
|
||
| Updated dependency `uuid` to `^14.0.0`. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,7 +42,7 @@ | |
| "@mui/material": "^5.16.6", | ||
| "@mui/styles": "^5.16.6", | ||
| "react-use": "^17.2.4", | ||
| "uuid": "^11.1.0" | ||
| "uuid": "^14.0.0" | ||
|
||
| }, | ||
|
Comment on lines
44
to
46
|
||
| "peerDependencies": { | ||
| "react": "^16.13.1 || ^17.0.0 || ^18.0.0", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@backstage-community/plugin-announcements-backend': patch | ||
| --- | ||
|
|
||
| Updated dependency `uuid` to `^14.0.0`. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -52,7 +52,7 @@ | |
| "knex": "^3.0.1", | ||
| "luxon": "^3.2.0", | ||
| "slugify": "^1.6.6", | ||
| "uuid": "^13.0.0" | ||
| "uuid": "^14.0.0" | ||
|
||
| }, | ||
| "devDependencies": { | ||
| "@backstage/cli": "backstage:^", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@backstage-community/plugin-catalog-backend-module-azure-resources': patch | ||
| --- | ||
|
|
||
| Updated dependency `uuid` to `^14.0.0`. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@backstage-community/plugin-badges-backend': patch | ||
| --- | ||
|
|
||
| Updated dependency `uuid` to `^14.0.0`. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@backstage-community/plugin-code-coverage-backend': patch | ||
| --- | ||
|
|
||
| Updated dependency `uuid` to `^14.0.0`. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@backstage-community/plugin-catalog-backend-module-keycloak': patch | ||
| --- | ||
|
|
||
| Updated dependency `uuid` to `^14.0.0`. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@backstage-community/plugin-linguist-backend': patch | ||
| --- | ||
|
|
||
| Updated dependency `uuid` to `^14.0.0`. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@backstage-community/plugin-mcp-chat-backend': patch | ||
| --- | ||
|
|
||
| Updated dependency `uuid` to `^14.0.0` and removed deprecated `@types/uuid`. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -39,14 +39,13 @@ | |
| "express-promise-router": "^4.1.0", | ||
| "knex": "^3.1.0", | ||
| "ollama": "^0.6.0", | ||
| "uuid": "^11.0.0" | ||
| "uuid": "^14.0.0" | ||
|
||
| }, | ||
| "devDependencies": { | ||
| "@backstage/backend-test-utils": "^1.11.2", | ||
| "@backstage/cli": "^0.36.1", | ||
| "@types/express": "^4.17.6", | ||
| "@types/supertest": "^7.0.0", | ||
| "@types/uuid": "^11.0.0", | ||
| "supertest": "^7.0.0" | ||
| }, | ||
| "files": [ | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| '@backstage-community/plugin-catalog-backend-module-pingidentity': patch | ||
| --- | ||
|
|
||
| Updated dependency `uuid` to `^14.0.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.
uuidv14 raises its minimum supported TypeScript version to >=5.4.3 (per upstream release notes). This workspace currently pins TypeScript to ~5.3.0 (workspaces/agent-forge/package.json), and CI runsyarn tsc:fullwith--skipLibCheck false, so this upgrade is likely to fail type-checking. Please bump the workspace TypeScript devDependency to >=5.4.3 (or a newer repo-standard version) and regenerate the lockfile if needed.