Bump the packages group with 36 updates
Type: Pull Request
State: Closed
Association: Unknown
Comments: 1
(7 days ago)
(7 days ago)
(7 days ago)
dependencies javascript
poad
Bumps the packages group with 36 updates:
Updates @types/node from 24.9.1 to 24.9.2
Commits
- See full diff in compare view
 
Updates pnpm from 10.19.0 to 10.20.0
Release notes
Sourced from pnpm's releases.
pnpm 10.20
Minor Changes
- Support
 --alloption inpnpm --helpto list all commands #8628.Patch Changes
- When the
 latestversion doesn't satisfy the maturity requirement configured byminimumReleaseAge, pick the highest version that is mature enough, even if it has a different major version #10100.createcommand should not verify patch info.- Set
 managePackageManagerVersionstofalse, when switching to a different version of pnpm CLI, in order to avoid subsequent switches #10063.Platinum Sponsors
Gold Sponsors
... (truncated)
Changelog
Sourced from pnpm's changelog.
10.20.0
Minor Changes
- Support
 --alloption inpnpm --helpto list all commands #8628.Patch Changes
- When the
 latestversion doesn't satisfy the maturity requirement configured byminimumReleaseAge, pick the highest version that is mature enough, even if it has a different major version #10100.createcommand should not verify patch info.- Set
 managePackageManagerVersionstofalse, when switching to a different version of pnpm CLI, in order to avoid subsequent switches #10063.
Commits
49f03d1chore(release): 10.20.05c27936fix(create): create command should not verify patch info (#10122)6e9ad42feat: support-aoption inpnpm --helpto list all commands (#8628)a1a1ab3fix: don't ever switch to another version of pnpm when it has beens switched ...d9bcd61chore(release): 10.19.1-oidc-test.334c727achore(release): 10.19.1-oidc-test.20cde128chore: update repository fieldseb0df0dchore(release): 10.19.1-oidc-test.1e5ac91fchore(release): 10.19.1-oidc-test.0afdc1e9chore: add artifact keyword to artifact packages- See full diff in compare view
 
Maintainer changes
This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for pnpm since your current version.
Updates vercel from 48.6.0 to 48.6.6
Release notes
Sourced from vercel's releases.
vercel@48.6.6
Patch Changes
- Fix regression on node 20.17 and earlier (#14158)
 vercel@48.6.5
Patch Changes
- Enable experimental backends mode (#14155)
 vercel@48.6.4
Patch Changes
- Updated dependencies [
 0e63b0b007dd5705434ff594e7576c86dda939bc]:vercel@48.6.3
Patch Changes
- Fix vc build regression (#14149)
 vercel@48.6.2
Patch Changes
Add experimental support for routes.json (#14138)
Updated dependencies [
2f586d89e744ee905626080de5f49b140739dde7,2f586d89e744ee905626080de5f49b140739dde7]:
@vercel/backends@0.0.3
Changelog
Sourced from vercel's changelog.
48.6.6
Patch Changes
- Fix regression on node 20.17 and earlier (#14158)
 48.6.5
Patch Changes
- Enable experimental backends mode (#14155)
 48.6.4
Patch Changes
- Updated dependencies [
 0e63b0b007dd5705434ff594e7576c86dda939bc]:48.6.3
Patch Changes
- Fix vc build regression (#14149)
 48.6.2
Patch Changes
Add experimental support for routes.json (#14138)
Updated dependencies [
2f586d89e744ee905626080de5f49b140739dde7,2f586d89e744ee905626080de5f49b140739dde7]:
@vercel/backends@0.0.348.6.1
Patch Changes
Replace experimental builders for Express and Hono with a
@vercel/backendspackage (#14065)Updated dependencies [
c40a0e7c53755cf5bed642256498da3d3102d8ac,c6cf33d7db28f858d7e34d08ec871a28423ded2a,c6cf33d7db28f858d7e34d08ec871a28423ded2a]:
... (truncated)
Commits
20d9397Version Packages (#14159)f52fde0Undo backends import (#14158)144c6e0Version Packages (#14156)1e22475Undo regression hotfix (#14155)e961ef6Version Packages (#14153)c5f5dd3Version Packages (#14150)72373d5Fix vc build regression (#14149)2269fbcVersion Packages (#14145)e4af921Version Packages (#14144)c4fca8aAdd experimental support for.vercel/routes.json(#14138)- Additional commits viewable in compare view
 
Updates @esbuild/aix-ppc64 from 0.24.2 to 0.23.1
Changelog
Sourced from @esbuild/aix-ppc64's changelog.
0.24.2
Fix regression with
--defineandimport.meta(#4010, #4012, #4013)The previous change in version 0.24.1 to use a more expression-like parser for
definevalues to allow quoted property names introduced a regression that removed the ability to use--define:import.meta=.... Even thoughimportis normally a keyword that can't be used as an identifier, ES modules special-case theimport.metaexpression to behave like an identifier anyway. This change fixes the regression.This fix was contributed by
@sapphi-red.0.24.1
Allow
es2024as a target intsconfig.json(#4004)TypeScript recently added
es2024as a compilation target, so esbuild now supports this in thetargetfield oftsconfig.jsonfiles, such as in the following configuration file:{ "compilerOptions": { "target": "ES2024" } }As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.
This fix was contributed by
@billyjanitsch.Allow automatic semicolon insertion after
get/setThis change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:
class Foo { get *x() {} set *y() {} }The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.
Allow quoted property names in
--defineand--pure(#4008)The
defineandpureAPI options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes--defineand--pureconsistent with--global-name, which already supported quoted property names. For example, the following is now possible:// The following code now transforms to "return true;\n" console.log(esbuild.transformSync( `return process.env['SOME-TEST-VAR']`, { define: { 'process.env["SOME-TEST-VAR"]': 'true' } },
... (truncated)
Commits
3327274publish 0.23.1 to npm38e22edadd a warning/debug log message for #3867a15bb51fix #3825: memory leak ofpluginDatavaluesf6e6481fix #3838: print comments beforecaseclauses9c13ae1fix #3853: update go 1.22.4 => 1.22.578f89e4fix #3845: some incorrect error message locations892d2a7fix #3834: cli sometimes panics with--analyze360d472fix a typo in the release notese3f4e2dfix #3821: allownode:prefix withes*targets9d50680publish 0.23.0 to npm- Additional commits viewable in compare view
 
Updates @esbuild/android-arm64 from 0.24.2 to 0.23.1
Changelog
Sourced from @esbuild/android-arm64's changelog.
0.24.2
Fix regression with
--defineandimport.meta(#4010, #4012, #4013)The previous change in version 0.24.1 to use a more expression-like parser for
definevalues to allow quoted property names introduced a regression that removed the ability to use--define:import.meta=.... Even thoughimportis normally a keyword that can't be used as an identifier, ES modules special-case theimport.metaexpression to behave like an identifier anyway. This change fixes the regression.This fix was contributed by
@sapphi-red.0.24.1
Allow
es2024as a target intsconfig.json(#4004)TypeScript recently added
es2024as a compilation target, so esbuild now supports this in thetargetfield oftsconfig.jsonfiles, such as in the following configuration file:{ "compilerOptions": { "target": "ES2024" } }As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.
This fix was contributed by
@billyjanitsch.Allow automatic semicolon insertion after
get/setThis change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:
class Foo { get *x() {} set *y() {} }The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.
Allow quoted property names in
--defineand--pure(#4008)The
defineandpureAPI options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes--defineand--pureconsistent with--global-name, which already supported quoted property names. For example, the following is now possible:// The following code now transforms to "return true;\n" console.log(esbuild.transformSync( `return process.env['SOME-TEST-VAR']`, { define: { 'process.env["SOME-TEST-VAR"]': 'true' } },
... (truncated)
Commits
3327274publish 0.23.1 to npm38e22edadd a warning/debug log message for #3867a15bb51fix #3825: memory leak ofpluginDatavaluesf6e6481fix #3838: print comments beforecaseclauses9c13ae1fix #3853: update go 1.22.4 => 1.22.578f89e4fix #3845: some incorrect error message locations892d2a7fix #3834: cli sometimes panics with--analyze360d472fix a typo in the release notese3f4e2dfix #3821: allownode:prefix withes*targets9d50680publish 0.23.0 to npm- Additional commits viewable in compare view
 
Updates @esbuild/android-arm from 0.24.2 to 0.23.1
Changelog
Sourced from @esbuild/android-arm's changelog.
0.24.2
Fix regression with
--defineandimport.meta(#4010, #4012, #4013)The previous change in version 0.24.1 to use a more expression-like parser for
definevalues to allow quoted property names introduced a regression that removed the ability to use--define:import.meta=.... Even thoughimportis normally a keyword that can't be used as an identifier, ES modules special-case theimport.metaexpression to behave like an identifier anyway. This change fixes the regression.This fix was contributed by
@sapphi-red.0.24.1
Allow
es2024as a target intsconfig.json(#4004)TypeScript recently added
es2024as a compilation target, so esbuild now supports this in thetargetfield oftsconfig.jsonfiles, such as in the following configuration file:{ "compilerOptions": { "target": "ES2024" } }As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.
This fix was contributed by
@billyjanitsch.Allow automatic semicolon insertion after
get/setThis change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:
class Foo { get *x() {} set *y() {} }The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.
Allow quoted property names in
--defineand--pure(#4008)The
defineandpureAPI options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes--defineand--pureconsistent with--global-name, which already supported quoted property names. For example, the following is now possible:// The following code now transforms to "return true;\n" console.log(esbuild.transformSync( `return process.env['SOME-TEST-VAR']`, { define: { 'process.env["SOME-TEST-VAR"]': 'true' } },
... (truncated)
Commits
3327274publish 0.23.1 to npm38e22edadd a warning/debug log message for #3867a15bb51fix #3825: memory leak ofpluginDatavaluesf6e6481fix #3838: print comments beforecaseclauses9c13ae1fix #3853: update go 1.22.4 => 1.22.578f89e4fix #3845: some incorrect error message locations892d2a7fix #3834: cli sometimes panics with--analyze360d472fix a typo in the release notese3f4e2dfix #3821: allownode:prefix withes*targets9d50680publish 0.23.0 to npm- Additional commits viewable in compare view
 
Updates @esbuild/android-x64 from 0.24.2 to 0.23.1
Changelog
Sourced from @esbuild/android-x64's changelog.
0.24.2
Fix regression with
--defineandimport.meta(#4010, #4012, #4013)The previous change in version 0.24.1 to use a more expression-like parser for
definevalues to allow quoted property names introduced a regression that removed the ability to use--define:import.meta=.... Even thoughimportis normally a keyword that can't be used as an identifier, ES modules special-case theimport.metaexpression to behave like an identifier anyway. This change fixes the regression.This fix was contributed by
@sapphi-red.0.24.1
Allow
es2024as a target intsconfig.json(#4004)TypeScript recently added
es2024as a compilation target, so esbuild now supports this in thetargetfield oftsconfig.jsonfiles, such as in the following configuration file:{ "compilerOptions": { "target": "ES2024" } }As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.
This fix was contributed by
@billyjanitsch.Allow automatic semicolon insertion after
get/setThis change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:
class Foo { get *x() {} set *y() {} }The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.
Allow quoted property names in
--defineand--pure(#4008)The
defineandpureAPI options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes--defineand--pureconsistent with--global-name, which already supported quoted property names. For example, the following is now possible:// The following code now transforms to "return true;\n" console.log(esbuild.transformSync( `return process.env['SOME-TEST-VAR']`, { define: { 'process.env["SOME-TEST-VAR"]': 'true' } },
... (truncated)
Commits
3327274publish 0.23.1 to npm38e22edadd a warning/debug log message for #3867a15bb51fix #3825: memory leak ofpluginDatavaluesf6e6481fix #3838: print comments beforecaseclauses9c13ae1fix #3853: update go 1.22.4 => 1.22.578f89e4fix #3845: some incorrect error message locations892d2a7fix #3834: cli sometimes panics with--analyze360d472fix a typo in the release notese3f4e2dfix #3821: allownode:prefix withes*targets9d50680publish 0.23.0 to npm- Additional commits viewable in compare view
 
Updates @esbuild/darwin-arm64 from 0.24.2 to 0.23.1
Changelog
Sourced from @esbuild/darwin-arm64's changelog.
0.24.2
Fix regression with
--defineandimport.meta(#4010, #4012, #4013)The previous change in version 0.24.1 to use a more expression-like parser for
definevalues to allow quoted property names introduced a regression that removed the ability to use--define:import.meta=.... Even thoughimportis normally a keyword that can't be used as an identifier, ES modules special-case theimport.metaexpression to behave like an identifier anyway. This change fixes the regression.This fix was contributed by
@sapphi-red.0.24.1
Allow
es2024as a target intsconfig.json(#4004)TypeScript recently added
es2024as a compilation target, so esbuild now supports this in thetargetfield oftsconfig.jsonfiles, such as in the following configuration file:{ "compilerOptions": { "target": "ES2024" } }As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.
This fix was contributed by
@billyjanitsch.Allow automatic semicolon insertion after
get/setThis change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:
class Foo { get *x() {} set *y() {} }The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.
Allow quoted property names in
--defineand--pure(#4008)The
defineandpureAPI options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes--defineand--pureconsistent with--global-name, which already supported quoted property names. For example, the following is now possible:// The following code now transforms to "return true;\n" console.log(esbuild.transformSync( `return process.env['SOME-TEST-VAR']`, { define: { 'process.env["SOME-TEST-VAR"]': 'true' } },
... (truncated)
Commits
3327274publish 0.23.1 to npm38e22edadd a warning/debug log message for #3867a15bb51fix #3825: memory leak ofpluginDatavaluesf6e6481fix #3838: print comments beforecaseclauses9c13ae1fix #3853: update go 1.22.4 => 1.22.578f89e4fix #3845: some incorrect error message locations892d2a7fix #3834: cli sometimes panics with--analyze360d472fix a typo in the release notese3f4e2dfix #3821: allownode:prefix withes*targets9d50680publish 0.23.0 to npm- Additional commits viewable in compare view
 
Updates @esbuild/darwin-x64 from 0.24.2 to 0.23.1
Changelog
Sourced from @esbuild/darwin-x64's changelog.
0.24.2
Fix regression with
--defineandimport.meta(#4010, #4012, #4013)The previous change in version 0.24.1 to use a more expression-like parser for
definevalues to allow quoted property names introduced a regression that removed the ability to use--define:import.meta=.... Even thoughimportis normally a keyword that can't be used as an identifier, ES modules special-case theimport.metaexpression to behave like an identifier anyway. This change fixes the regression.This fix was contributed by
@sapphi-red.0.24.1
Allow
es2024as a target intsconfig.json(#4004)TypeScript recently added
es2024as a compilation target, so esbuild now supports this in thetargetfield oftsconfig.jsonfiles, such as in the following configuration file:{ "compilerOptions": { "target": "ES2024" } }As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.
This fix was contributed by
@billyjanitsch.Allow automatic semicolon insertion after
get/setThis change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:
class Foo { get *x() {} set *y() {} }The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.
Allow quoted property names in
--defineand--pure(#4008)The
defineandpureAPI options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes--defineand--pureconsistent with--global-name, which already supported quoted property names. For example, the following is now possible:// The following code now transforms to "return true;\n" console.log(esbuild.transformSync( `return process.env['SOME-TEST-VAR']`, { define: { 'process.env["SOME-TEST-VAR"]': 'true' } },
... (truncated)
Commits
3327274publish 0.23.1 to npm38e22edadd a warning/debug log message for #3867a15bb51fix #3825: memory leak ofpluginDatavaluesf6e6481fix #3838: print comments beforecaseclauses9c13ae1fix #3853: update go 1.22.4 => 1.22.578f89e4fix #3845: some incorrect error message locations892d2a7fix #3834: cli sometimes panics with--analyze360d472fix a typo in the release notese3f4e2dfix #3821: allownode:prefix withes*targets9d50680publish 0.23.0 to npm- Additional commits viewable in compare view
 
Updates @esbuild/freebsd-arm64 from 0.24.2 to 0.23.1
Changelog
Sourced from @esbuild/freebsd-arm64's changelog.
0.24.2
Fix regression with
--defineandimport.meta(#4010, #4012, #4013)The previous change in version 0.24.1 to use a more expression-like parser for
definevalues to allow quoted property names introduced a regression that removed the ability to use--define:import.meta=.... Even thoughimportis normally a keyword that can't be used as an identifier, ES modules special-case theimport.metaexpression to behave like an identifier anyway. This change fixes the regression.This fix was contributed by
@sapphi-red.0.24.1
Allow
es2024as a target intsconfig.json(#4004)TypeScript recently added
es2024as a compilation target, so esbuild now supports this in thetargetfield oftsconfig.jsonfiles, such as in the following configuration file:{ "compilerOptions": { "target": "ES2024" } }As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.
This fix was contributed by
@billyjanitsch.Allow automatic semicolon insertion after
get/setThis change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:
class Foo { get *x() {} set *y() {} }The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.
Allow quoted property names in
--defineand--pure(#4008)The
defineandpureAPI options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes--defineand--pureconsistent with--global-name, which already supported quoted property names. For example, the following is now possible:// The following code now transforms to "return true;\n" console.log(esbuild.transformSync( `return process.env['SOME-TEST-VAR']`, { define: { 'process.env["SOME-TEST-VAR"]': 'true' } },
... (truncated)
Commits
3327274publish 0.23.1 to npm38e22edadd a warning/debug log message for #3867a15bb51fix #3825: memory leak ofpluginDatavaluesf6e6481fix #3838: print comments beforecaseclauses9c13ae1fix #3853: update go 1.22.4 => 1.22.578f89e4fix #3845: some incorrect error message locations892d2a7fix #3834: cli sometimes panics with--analyze360d472fix a typo in the release notese3f4e2dfix #3821: allownode:prefix withes*targets9d50680publish 0.23.0 to npm- Additional commits viewable in compare view
 
Updates @esbuild/freebsd-x64 from 0.24.2 to 0.23.1
Changelog
Sourced from @esbuild/freebsd-x64's changelog.
0.24.2
Fix regression with
--defineandimport.meta(#4010, #4012, #4013)The previous change in version 0.24.1 to use a more expression-like parser for
definevalues to allow quoted property names introduced a regression that removed the ability to use--define:import.meta=.... Even thoughimportis normally a keyword that can't be used as an identifier, ES modules special-case theimport.metaexpression to behave like an identifier anyway. This change fixes the regression.This fix was contributed by
@sapphi-red.0.24.1
Allow
es2024as a target intsconfig.json(#4004)TypeScript recently added
es2024as a compilation target, so esbuild now supports this in thetargetfield oftsconfig.jsonfiles, such as in the following configuration file:{ "compilerOptions": { "target": "ES2024" } }As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.
This fix was contributed by
@billyjanitsch.Allow automatic semicolon insertion after
get/setThis change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:
class Foo { get *x() {} set *y() {} }The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.
Allow quoted property names in
--defineand--pure(#4008)The
defineandpureAPI options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes--defineand--pureconsistent with--global-name, which already supported quoted property names. For example, the following is now possible:// The following code now transforms to "return true;\n" console.log(esbuild.transformSync( `return process.env['SOME-TEST-VAR']`, { define: { 'process.env["SOME-TEST-VAR"]': 'true' } },
... (truncated)
Commits
3327274publish 0.23.1 to npm38e22edadd a warning/debug log message for #3867a15bb51fix #3825: memory leak ofpluginDatavaluesf6e6481fix #3838: print comments beforecaseclauses9c13ae1fix #3853: update go 1.22.4 => 1.22.578f89e4fix #3845: some incorrect error message locations892d2a7fix #3834: cli sometimes panics with--analyze360d472fix a typo in the release notese3f4e2dfix #3821: allownode:prefix withes*targets9d50680publish 0.23.0 to npm- Additional commits viewable in compare view
 
Updates @esbuild/linux-arm64 from 0.24.2 to 0.23.1
Changelog
Sourced from @esbuild/linux-arm64's changelog.
0.24.2
Fix regression with
--defineandimport.meta(#4010, #4012, #4013)The previous change in version 0.24.1 to use a more expression-like parser for
definevalues to allow quoted property names introduced a regression that removed the ability to use--define:import.meta=.... Even thoughim...Description has been truncated
Package Dependencies
@vercel/gatsby-plugin-vercel-builder
                  npm
2.0.99 → 2.0.100
                    Patch
Technical Details
| ID: | 10628639 | 
            
| UUID: | 3563624544 | 
            
| Node ID: | PR_kwDOMzbQP86wQEgS | 
            
| Host: | GitHub | 
| Repository: | poad/github-rest-api-executor |