Bump the npm group with 9 updates
Type: Pull Request
State: Merged
![dependabot[bot]](https://github.com/dependabot.png)
Association: Contributor
Comments: 2
(3 months ago)
(3 months ago)
(3 months ago)
by github-actions[bot]
dependencies javascript
poad
Bumps the npm group with 9 updates:
Package | From | To |
---|---|---|
@hono/node-server | 1.14.3 |
1.14.4 |
zod | 3.25.53 |
3.25.56 |
pnpm | 10.11.1 |
10.12.1 |
@napi-rs/wasm-runtime | 0.2.10 |
0.2.11 |
acorn | 8.14.1 |
8.15.0 |
cssstyle | 4.3.1 |
4.4.0 |
entities | 6.0.0 |
6.0.1 |
rollup | 4.41.1 |
4.42.0 |
style-to-object | 1.0.8 |
1.0.9 |
Updates @hono/node-server
from 1.14.3 to 1.14.4
Release notes
Sourced from @hono/node-server
's releases.
v1.14.4
What's Changed
- fix: flush headers before sending data via readable stream by
@usualoma
in honojs/node-server#245Full Changelog: https://github.com/honojs/node-server/compare/v1.14.3...v1.14.4
Commits
0e35e65
1.14.469d274d
fix: flush headers before sending data via readable stream (#245)- See full diff in compare view
Updates zod
from 3.25.53 to 3.25.56
Release notes
Sourced from zod's releases.
v3.25.56
Commits:
- 64bfb7001cf6f2575bf38b5e6130bc73b4b0e371 3.25.56
v3.25.55
Commits:
- 44141ea1dbd48403f14704386119884aeda5cb27 3.25.55
v3.25.54
Commits:
- 8ab237423cd8fdca58dc9e18f45d48d56ca2a24d fix(util): cross realm IsPlainObject check (#4627)
- 2be1c6ad909a9d0598d9f45fedc9038213130529 Fix generic assignability issue. 3.25.54
Commits
Updates pnpm
from 10.11.1 to 10.12.1
Release notes
Sourced from pnpm's releases.
pnpm 10.12.1
Minor Changes
Experimental. Added support for global virtual stores. When enabled,
node_modules
contains only symlinks to a central virtual store, rather than tonode_modules/.pnpm
. By default, this central store is located at<store-path>/links
(you can find the store path by runningpnpm store path
).In the central virtual store, each package is hard linked into a directory whose name is the hash of its dependency graph. This allows multiple projects on the system to symlink shared dependencies from this central location, significantly improving installation speed when a warm cache is available.
This is conceptually similar to how NixOS manages packages, using dependency graph hashes to create isolated and reusable package directories.
To enable the global virtual store, set
enableGlobalVirtualStore: true
in your rootpnpm-workspace.yaml
, or globally via:pnpm config -g set enable-global-virtual-store true
NOTE: In CI environments, where caches are typically cold, this setting may slow down installation. pnpm automatically disables the global virtual store when running in CI.
Short demo of the speed of installation with this new setting enabled: https://www.youtube.com/watch?v=pNDFfJvaubY&ab_channel=pnpm
Related PR: #8190
The
pnpm update
command now supports updatingcatalog:
protocol dependencies and writes new specifiers topnpm-workspace.yaml
.A new
catalogMode
setting is available for controlling if and how dependencies are added to the default catalog. It can be configured to several modes:
strict
: Only allows dependency versions from the catalog. Adding a dependency outside the catalog's version range will cause an error.prefer
: Prefers catalog versions, but will fall back to direct dependencies if no compatible version is found.manual
(default): Does not automatically add dependencies to the catalog.Added two new CLI options (
--save-catalog
and--save-catalog-name=<name>
) topnpm add
to save new dependencies as catalog entries.catalog:
orcatalog:<name>
will be added topackage.json
and the package specifier will be added to thecatalogs
orcatalog[<name>]
object inpnpm-workspace.yaml
#9425.Semi-breaking. The keys used for side-effects caches have changed. If you have a side-effects cache generated by a previous version of pnpm, the new version will not use it and will create a new cache instead #9605.
Added a new setting called
ci
for explicitly telling pnpm if the current environment is a CI or not.Patch Changes
- Sort versions printed by
pnpm patch
using semantic versioning rules.- Improve the way the error message displays mismatched specifiers. Show differences instead of 2 whole objects #9598.
- Revert #9574 to fix a regression #9596.
Platinum Sponsors
... (truncated)
Changelog
Sourced from pnpm's changelog.
10.12.1
Minor Changes
Experimental. Added support for global virtual stores. When enabled,
node_modules
contains only symlinks to a central virtual store, rather tonode_modules/.pnpm
. By default, this central store is located at<store-path>/links
(you can find the store path by runningpnpm store path
).In the central virtual store, each package is hard linked into a directory whose name is the hash of its dependency graph. This allows multiple projects on the system to symlink shared dependencies from this central location, significantly improving installation speed when a warm cache is available.
This is conceptually similar to how NixOS manages packages, using dependency graph hashes to create isolated and reusable package directories.
To enable the global virtual store, set
enableGlobalVirtualStore: true
in your rootpnpm-workspace.yaml
, or globally via:pnpm config -g set enable-global-virtual-store true
NOTE: In CI environments, where caches are typically cold, this setting may slow down installation. pnpm automatically disables the global virtual store when running in CI.
Related PR: #8190
- The
pnpm update
command now supports updatingcatalog:
protocol dependencies and writes new specifiers topnpm-workspace.yaml
.- Added two new CLI options (
--save-catalog
and--save-catalog-name=<name>
) topnpm add
to save new dependencies as catalog entries.catalog:
orcatalog:<name>
will be added topackage.json
and the package specifier will be added to thecatalogs
orcatalog[<name>]
object inpnpm-workspace.yaml
#9425.- Semi-breaking. The keys used for side-effects caches have changed. If you have a side-effects cache generated by a previous version of pnpm, the new version will not use it and will create a new cache instead #9605.
- Added a new setting called
ci
for explicitly telling pnpm if the current environment is a CI or not.Patch Changes
Commits
fe2811e
chore(release): 10.12.189bc2c6
chore(release): 10.12.0b217bbb
feat: add a new setting for telling pnpm if the env is CI (#9616)6489c87
docs: update sponsorsb0ead51
feat: global virtual store (#8190)1959f99
revert: fix(deploy/legacy): unexpected directory creations (#9597)cecd039
chore(release): 10.11.195b088c
fix(deploy/legacy): unexpected directory creations (#9574)1c741b5
fix: use pnpm_config_ instead of npm_config_ (#9571)8e0b4ef
test: correct a test name (#9537)- Additional commits viewable in compare view
Updates @napi-rs/wasm-runtime
from 0.2.10 to 0.2.11
Release notes
Sourced from @napi-rs/wasm-runtime
's releases.
@napi-rs/wasm-runtime
@0
.2.11What's Changed
- fix: (wasm-runtime) fs race condition by
@lyonbot
in napi-rs/napi-rs#2698New Contributors
@lyonbot
made their first contribution in napi-rs/napi-rs#2698Full Changelog: https://github.com/napi-rs/napi-rs/compare/
@napi-rs/cli
@3.0.0-alpha.87...
@napi-rs/wasm-runtime
@0.2.11
Commits
- See full diff in compare view
Updates acorn
from 8.14.1 to 8.15.0
Commits
6dc5374
Mark version 8.15.0c8d954a
Make linter happy71d942e
Fix a crash when running the CLI tool on code with a bigint551a680
Fix the format of bigint property on bigint literal24baa2a
Show logo in readme.mdb4ae0d2
Add support for using and await usingfdfb45a
Bump test262b27ce74
Make sure the loose parser skips number literals with invalid separators82233bf
Remove outdated commentf6c9e12
Remove trailing whitespace, semicolon- Additional commits viewable in compare view
Updates cssstyle
from 4.3.1 to 4.4.0
Release notes
Sourced from cssstyle's releases.
v4.4.0
- The
cssText
getter now returns the empty string if the computed flag is set.- The
cssText
setter, and theremoveProperty()
andsetProperty()
methods, now throw if the readonly flag is set.- The
parentRule
getter now returns the parentCSSRule
instead of always returningnull
.- The
item()
method now throws if no argument is given.- Add camel-cased and Pascal-cased versions of WebKit properties, and fixed the raw properties to have a leading hyphen.
- Make internal properties non-enumerable to hide them better.
- Individual CSS property setters now handle invalid inputs better.
- Implement
unset
support.- Update the property list to be based on the latest specs, in particular removing the deprecated
azumith
property and some deprecated WebKit properties.
Commits
Updates entities
from 6.0.0 to 6.0.1
Release notes
Sourced from entities's releases.
v6.0.1
What's Changed
- fix: add types for old node entry points by
@43081j
in fb55/entities#1861Full Changelog: https://github.com/fb55/entities/compare/v6.0.0...v6.0.1
Commits
9f7ca4c
6.0.1d10dbb9
chore(package): Publish {en,de}code.d.ts665a232
fix: add types for old node entry points (#1861)c5821e4
chore(deps-dev): Bump@types/node
from 22.15.29 to 22.15.30 (#1862)0f41e50
chore(deps): Bump github/codeql-action from 3.28.18 to 3.28.19 (#1859)834c628
chore(deps-dev): Bump@typescript-eslint/eslint-plugin
(#1857)e6f4a53
chore(deps-dev): Bump@typescript-eslint/parser
from 8.33.0 to 8.33.1 (#1856)3715f43
chore(deps-dev): Bump eslint-plugin-n from 17.18.0 to 17.19.0 (#1855)97ba898
chore(deps-dev): Bump@types/node
from 22.15.24 to 22.15.29 (#1854)6826840
chore(deps-dev): Bump@types/node
from 22.15.23 to 22.15.24 (#1852)- Additional commits viewable in compare view
Updates rollup
from 4.41.1 to 4.42.0
Release notes
Sourced from rollup's releases.
v4.42.0
4.42.0
2025-06-06
Features
- Add option to allow the input to be located in the output in watch mode (#5966)
Pull Requests
- #5966: feat: watch mode add
allowInputInsideOutputPath
option (@btea
,@lukastaegert
)v4.41.2
4.41.2
2025-06-06
Bug Fixes
- Detect named export usages in dynamic imports with
then
and non-arrow function expressions (#5977)- Do not replace usages of constant variables with their values for readability (#5968)
Pull Requests
- #5968: fix: preserve constant identifiers in unary expressions instead of magic numbers (
@OmkarJ13
,@lukastaegert
)- #5969: chore(deps): update dependency yargs-parser to v22 (
@renovate
[bot],@lukastaegert
)- #5970: chore(deps): lock file maintenance minor/patch updates (
@renovate
[bot])- #5971: chore(deps): lock file maintenance (
@renovate
[bot])- #5976: Update README.md (
@ftlno
,@lukastaegert
)- #5977: fix: consider function expression in thenable when tree-shaking dynamic imports (
@TrickyPi
)- #5981: fix(deps): lock file maintenance minor/patch updates (
@renovate
[bot])- #5982: Debug/fix watch pipeline (
@lukastaegert
)
Changelog
Sourced from rollup's changelog.
4.42.0
2025-06-06
Features
- Add option to allow the input to be located in the output in watch mode (#5966)
Pull Requests
- #5966: feat: watch mode add
allowInputInsideOutputPath
option (@btea
,@lukastaegert
)4.41.2
2025-06-06
Bug Fixes
- Detect named export usages in dynamic imports with
then
and non-arrow function expressions (#5977)- Do not replace usages of constant variables with their values for readability (#5968)
Pull Requests
- #5968: fix: preserve constant identifiers in unary expressions instead of magic numbers (
@OmkarJ13
,@lukastaegert
)- #5969: chore(deps): update dependency yargs-parser to v22 (
@renovate
[bot],@lukastaegert
)- #5970: chore(deps): lock file maintenance minor/patch updates (
@renovate
[bot])- #5971: chore(deps): lock file maintenance (
@renovate
[bot])- #5976: Update README.md (
@ftlno
,@lukastaegert
)- #5977: fix: consider function expression in thenable when tree-shaking dynamic imports (
@TrickyPi
)- #5981: fix(deps): lock file maintenance minor/patch updates (
@renovate
[bot])- #5982: Debug/fix watch pipeline (
@lukastaegert
)
Commits
f763394
4.42.0dddc00d
feat: watch mode addallowInputInsideOutputPath
option (#5966)13b4669
4.41.2149d94c
Debug/fix watch pipeline (#5982)13992f2
Update README.md (#5976)224c900
fix: preserve constant identifiers in unary expressions instead of magic numb...da88626
fix: consider function expression in thenable when tree-shaking dynamic impor...8f0dbc9
fix(deps): lock file maintenance minor/patch updates (#5981)4f69d33
chore(deps): update dependency yargs-parser to v22 (#5969)0fbd796
chore(deps): lock file maintenance (#5971)- Additional commits viewable in compare view
Updates style-to-object
from 1.0.8 to 1.0.9
Release notes
Sourced from style-to-object's releases.
v1.0.9
1.0.9 (2025-06-06)
Miscellaneous Chores
- release 1.0.9 (216aab1)
Changelog
Sourced from style-to-object's changelog.
1.0.9 (2025-06-06)
Miscellaneous Chores
- release 1.0.9 (216aab1)
Commits
36a7d48
Merge pull request #642 from remarkablemark/release-please--branches--master-...db3442a
chore(master): release 1.0.92f9f7cf
build(package): fix 1 moderate severity vulnerability216aab1
chore: release 1.0.93a0c2eb
build(deps-dev): bump rollup from 4.41.1 to 4.42.0 (#641)0f046c4
build(deps-dev): bump@types/node
from 22.15.29 to 22.15.30 (#640)ccdf237
build(deps-dev): bump the typescript-eslint group with 2 updates (#639)c38b833
build(deps-dev): bump@eslint/js
in the eslint group (#638)0baf714
build(deps-dev): bump@types/node
from 22.15.28 to 22.15.29 (#637)b48efad
build(deps-dev): bump eslint from 9.27.0 to 9.28.0 (#636)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditions
Pull Request Statistics
1
2
+159
-159
Package Dependencies
Technical Details
ID: | 1318954 |
UUID: | 2577576630 |
Node ID: | PR_kwDOMVysts6ZorK2 |
Host: | GitHub |
Repository: | poad/vercel-functions-example |
Merge State: | Unknown |