Skip to content

Commit 2d39358

Browse files
authored
chore(deps): Upgrade vulnerable dependencies (#872)
1 parent 098d9b7 commit 2d39358

45 files changed

Lines changed: 4075 additions & 4259 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/afraid-meals-talk.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@baseplate-dev/core-generators': patch
3+
---
4+
5+
Update pnpm version to 10.33.0

.changeset/upgrade-aws-sdk.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
'@baseplate-dev/plugin-storage': patch
3+
---
4+
5+
Upgrade AWS SDK packages to 3.1020.0
6+
7+
- @aws-sdk/client-s3: 3.995.0 → 3.1020.0
8+
- @aws-sdk/lib-storage: 3.995.0 → 3.1020.0
9+
- @aws-sdk/s3-presigned-post: 3.995.0 → 3.1020.0
10+
- @aws-sdk/s3-request-presigner: 3.995.0 → 3.1020.0

.changeset/upgrade-fastify.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'@baseplate-dev/fastify-generators': patch
3+
---
4+
5+
Upgrade fastify to 5.8.4
6+
7+
- fastify: 5.8.1 → 5.8.4

.changeset/upgrade-prisma-7-6-0.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
'@baseplate-dev/fastify-generators': patch
3+
---
4+
5+
Upgrade Prisma packages to 7.6.0
6+
7+
- prisma: 7.5.0 → 7.6.0
8+
- @prisma/client: 7.5.0 → 7.6.0
9+
- @prisma/adapter-pg: 7.5.0 → 7.6.0
10+
- @prisma/internals: 7.5.0 → 7.6.0
11+
- @pothos/plugin-prisma: 4.14.1 → 4.14.2

.claude/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"Bash(pnpm why *)",
3232
"Bash(pnpm dedupe)",
3333
"Bash(npm view *)",
34+
"Bash(pnpm view *)",
3435
"Bash(git log *)",
3536
"Bash(pnpm --filter * lint*)",
3637
"Bash(pnpm --filter * typecheck*)",

.claude/skills/add-component/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: Add Component
2+
name: add-component
33
description: Workflow for adding a new UI component to ui-components (with Storybook + optional tests) and optionally to the react-generators template system.
44
---
55

.claude/skills/add-plugin/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: Add Plugin
2+
name: add-plugin
33
description: Step-by-step workflow for creating a new Baseplate plugin package, including root configuration files, source structure, and platform modules.
44
---
55

.claude/skills/modify-generated-code/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: Modify Generated Code
2+
name: modify-generated-code
33
description: Workflow for modifying generated code in Baseplate, including template extraction, generator updates, and project synchronization.
44
---
55

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
---
2-
name: Package Upgrade
2+
name: upgrade-package
33
description: Systematic approach for upgrading packages in the Baseplate monorepo, ensuring consistency between monorepo dependencies and generated project code.
4+
argument-hint: [package-name]
45
---
56

67
# Package Upgrade Skill
78

8-
Use this skill when the user asks to upgrade packages, update dependencies, or mentions upgrading specific npm packages in the Baseplate monorepo.
9+
Use this skill to upgrade the following packages in the Baseplate monorepo: $ARGUMENTS
910

1011
## Overview
1112

@@ -42,10 +43,10 @@ grep -r "package-name" packages/*/src/constants/
4243

4344
```bash
4445
# Get latest version from npm
45-
npm view package-name version
46+
pnpm view package-name version
4647

4748
# Get all available versions (helpful for major version planning)
48-
npm view package-name versions --json
49+
pnpm view package-name versions --json
4950
```
5051

5152
### 3. Research Breaking Changes

examples/blog-with-auth/apps/admin/baseplate/generated/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
},
9797
"engines": {
9898
"node": "^24.14.0",
99-
"pnpm": "^10.32.0"
99+
"pnpm": "^10.33.0"
100100
},
101101
"volta": {
102102
"node": "24.14.0"

0 commit comments

Comments
 (0)