Bump the packages group with 7 updates
Type: Pull Request
State: Open
Association: Contributor
Comments: 1
(about 2 months ago)
(about 2 months ago)
dependencies javascript
poad
Bumps the packages group with 7 updates:
| Package | From | To |
|---|---|---|
| @types/node | 24.5.1 |
24.5.2 |
| vercel | 48.0.2 |
48.0.3 |
| vite | 7.1.5 |
7.1.6 |
| @esbuild/openharmony-arm64 | 0.25.9 |
0.25.10 |
| @vercel/hono | 0.0.25 |
0.1.0 |
| baseline-browser-mapping | 2.8.5 |
2.8.6 |
| electron-to-chromium | 1.5.221 |
1.5.222 |
Updates @types/node from 24.5.1 to 24.5.2
Commits
- See full diff in compare view
Updates vercel from 48.0.2 to 48.0.3
Release notes
Sourced from vercel's releases.
vercel@48.0.3
Patch Changes
fix(cli): handle triggering re-auth with legacy token + flags (#13955)
If the CLI was using a legacy token (ie, was signed in on a version previous to 48.0.0) and did not have a SAML authorization for a team resource, commands with flags unknown to vc login failed to initiate the SAML re-authentication flow as we were parsing all arguments. This change ensures that the user is prompted to log in again in such cases.
Updated dependencies [
426aca07b47590a0f1b7631e92c8776d5f8d661d]:
Changelog
Sourced from vercel's changelog.
48.0.3
Patch Changes
fix(cli): handle triggering re-auth with legacy token + flags (#13955)
If the CLI was using a legacy token (ie, was signed in on a version previous to 48.0.0) and did not have a SAML authorization for a team resource, commands with flags unknown to vc login failed to initiate the SAML re-authentication flow as we were parsing all arguments. This change ensures that the user is prompted to log in again in such cases.
Updated dependencies [
426aca07b47590a0f1b7631e92c8776d5f8d661d]:
Commits
Updates vite from 7.1.5 to 7.1.6
Changelog
Sourced from vite's changelog.
7.1.6 (2025-09-18)
Bug Fixes
- deps: update all non-major dependencies (#20773) (88af2ae)
- esbuild: inject esbuild helper functions with minified
$variables correctly (#20761) (7e8e004)- fallback terser to main thread when nameCache is provided (#20750) (a679a64)
- types: strict env typings fail when
skipLibCheckisfalse(#20755) (cc54e29)Miscellaneous Chores
Commits
54377f7release: v7.1.688af2aefix(deps): update all non-major dependencies (#20773)d785e72chore(deps): update rolldown-related dependencies (#20772)cc54e29fix(types): strict env typings fail whenskipLibCheckisfalse(#20755)7e8e004fix(esbuild): inject esbuild helper functions with minified$variables cor...a679a64fix: fallback terser to main thread when nameCache is provided (#20750)a67bb5fchore(deps): update rolldown-related dependencies (#20675)- See full diff in compare view
Updates @esbuild/openharmony-arm64 from 0.25.9 to 0.25.10
Release notes
Sourced from @esbuild/openharmony-arm64's releases.
v0.25.10
Fix a panic in a minification edge case (#4287)
This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value
undefinedin this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):function identity(x) { return x } identity({ y: identity(123) })Fix
@supportsnested inside pseudo-element (#4265)When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as
::placeholderfor correctness. The CSS nesting specification says the following:The nesting selector cannot represent pseudo-elements (identical to the behavior of the ':is()' pseudo-class). We’d like to relax this restriction, but need to do so simultaneously for both ':is()' and '&', since they’re intentionally built on the same underlying mechanisms.
However, it seems like this behavior is different for nested at-rules such as
@supports, which do work with pseudo-elements. So this release modifies esbuild's behavior to now take that into account:/* Original code */ ::placeholder { color: red; body & { color: green } @supports (color: blue) { color: blue } }/* Old output (with --supported:nesting=false) */
::placeholder {
color: red;
}
body :is() {
color: green;
}
@supports(color: blue) {
{
color: blue;
}
}/* New output (with --supported:nesting=false) */
::placeholder {
color: red;
}
body :is() {
color: green;
}
@supports(color: blue) {
::placeholder {
color: blue;
}
... (truncated)
Changelog
Sourced from @esbuild/openharmony-arm64's changelog.
0.25.10
Fix a panic in a minification edge case (#4287)
This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value
undefinedin this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):function identity(x) { return x } identity({ y: identity(123) })Fix
@supportsnested inside pseudo-element (#4265)When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as
::placeholderfor correctness. The CSS nesting specification says the following:The nesting selector cannot represent pseudo-elements (identical to the behavior of the ':is()' pseudo-class). We’d like to relax this restriction, but need to do so simultaneously for both ':is()' and '&', since they’re intentionally built on the same underlying mechanisms.
However, it seems like this behavior is different for nested at-rules such as
@supports, which do work with pseudo-elements. So this release modifies esbuild's behavior to now take that into account:/* Original code */ ::placeholder { color: red; body & { color: green } @supports (color: blue) { color: blue } }/* Old output (with --supported:nesting=false) */
::placeholder {
color: red;
}
body :is() {
color: green;
}
@supports(color: blue) {
{
color: blue;
}
}/* New output (with --supported:nesting=false) */
::placeholder {
color: red;
}
body :is() {
color: green;
}
@supports(color: blue) {
::placeholder {
color: blue;
... (truncated)
Commits
d6b668fpublish 0.25.10 to npm5088c19refactor: use strings.Builder (#4290)755da31runmake update-compat-tablea1d9c86fix #4287: marked the wrong issue as fixed73a0b2afix #4286: minifier panic due to identity function134dadffix #4265:@supportsnested inside::pseudo- See full diff in compare view
Updates @vercel/hono from 0.0.25 to 0.1.0
Release notes
Sourced from @vercel/hono's releases.
@vercel/hono@0.1.0Minor Changes
- Add h3 zero config support (#13942)
Changelog
Sourced from @vercel/hono's changelog.
0.1.0
Minor Changes
- Add h3 zero config support (#13942)
Commits
341094eVersion Packages (#13951)- See full diff in compare view
Updates baseline-browser-mapping from 2.8.5 to 2.8.6
Commits
ece0447Patch to 2.8.6 because browser or feature data changed0f29244Browser or feature data changed2b1770fUpdating static site- See full diff in compare view
Updates electron-to-chromium from 1.5.221 to 1.5.222
Commits
c48d6aa1.5.2223ed4b5egenerate new version- See full diff 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
0
0
+0
-0
Package Dependencies
@esbuild/openharmony-arm64
npm
0.25.9 → 0.25.10
Patch
Technical Details
| ID: | 8001608 |
| UUID: | 3432122889 |
| Node ID: | PR_kwDOMzbQP86pYv9o |
| Host: | GitHub |
| Repository: | poad/github-rest-api-executor |