-
Notifications
You must be signed in to change notification settings - Fork 0
Bump the npm_and_yarn group across 2 directories with 1 update #106
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 |
|---|---|---|
|
|
@@ -24,7 +24,7 @@ | |
| "@types/cors": "^2.8.19", | ||
| "@types/express": "^5.0.6", | ||
| "@types/node": "catalog:", | ||
| "esbuild": "^0.27.3", | ||
| "esbuild": "^0.28.1", | ||
| "esbuild-plugin-pino": "^2.3.3", | ||
|
Comment on lines
26
to
28
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. P2 | Confidence: Medium The esbuild dependency is bumped from The lockfile ( Impacts |
||
| "pino-pretty": "^13", | ||
| "thread-stream": "3.1.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.
📝 Info: esbuild 0.x minor version bump may contain breaking changes
Under semver for
0.xversions, the caret (^) only allows patch-level changes (e.g.,^0.28.1matches>=0.28.1, <0.29.0), so this is effectively a controlled upgrade within the 0.28 range. However, esbuild treats minor version bumps in the 0.x series as potentially breaking. The build script atartifacts/api-server/build.mjsuses only stable, well-established API options (entryPoints,platform,bundle,format,outdir,outExtension,logLevel,external,sourcemap,plugins,banner), so the risk is low. Still, it's worth confirming the build succeeds with the new version, especially theesbuild-plugin-pinoplugin compatibility.Was this helpful? React with 👍 or 👎 to provide feedback.