build(deps-dev): bump the development-dependencies group with 3 updates by dependabot[bot] · Pull Request #354 · actions/create-github-app-token
Bumps the development-dependencies group with 3 updates: esbuild, undici and yaml.
Updates esbuild from 0.27.3 to 0.27.4
Release notes
Sourced from esbuild's releases.
v0.27.4
Fix a regression with CSS media queries (#4395, #4405, #4406)
Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the
<media-type> and <media-condition-without-or>grammar. Specifically, esbuild was failing to wrap anorclause with parentheses when inside<media-condition-without-or>. This release fixes the regression.Here is an example:
/* Original code */ @media only screen and ((min-width: 10px) or (min-height: 10px)) { a { color: red } } /* Old output (incorrect) */ @media only screen and (min-width: 10px) or (min-height: 10px) { a { color: red; } } /* New output (correct) */ @media only screen and ((min-width: 10px) or (min-height: 10px)) { a { color: red; } }Fix an edge case with the
injectfeature (#4407)This release fixes an edge case where esbuild's
injectfeature could not be used with arbitrary module namespace names exported using anexport {} fromstatement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.With the fix, the following
injectfile:import jquery from 'jquery'; export { jquery as 'window.jQuery' };Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:
export { default as 'window.jQuery' } from 'jquery';Attempt to improve API handling of huge metafiles (#4329, #4415)
This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile.
The primary issue is that V8 has an implementation-specific maximum string length, so using the
JSON.parseAPI with large enough strings is impossible. This release will now attempt to use a fallback JavaScript-based JSON parser that operates directly on the UTF8-encoded JSON bytes instead of usingJSON.parsewhen the JSON metafile is too big to fit in a JavaScript string. The new fallback path has not yet been heavily-tested. The metafile will also now be generated with whitespace removed if the bundle is significantly large, which will reduce the size of the metafile JSON slightly.
... (truncated)
Changelog
Sourced from esbuild's changelog.
0.27.4
Fix a regression with CSS media queries (#4395, #4405, #4406)
Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the
<media-type> and <media-condition-without-or>grammar. Specifically, esbuild was failing to wrap anorclause with parentheses when inside<media-condition-without-or>. This release fixes the regression.Here is an example:
/* Original code */ @media only screen and ((min-width: 10px) or (min-height: 10px)) { a { color: red } } /* Old output (incorrect) */ @media only screen and (min-width: 10px) or (min-height: 10px) { a { color: red; } } /* New output (correct) */ @media only screen and ((min-width: 10px) or (min-height: 10px)) { a { color: red; } }Fix an edge case with the
injectfeature (#4407)This release fixes an edge case where esbuild's
injectfeature could not be used with arbitrary module namespace names exported using anexport {} fromstatement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.With the fix, the following
injectfile:import jquery from 'jquery'; export { jquery as 'window.jQuery' };Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:
export { default as 'window.jQuery' } from 'jquery';Attempt to improve API handling of huge metafiles (#4329, #4415)
This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile.
... (truncated)
Commits
f9c9012publish 0.27.4 to npm207dbc7js api: fall back to js-based metafile json parser1ca56dcfix #4329: auto-minify metafile for large bundlese3823aafix #4415: add uint cast to stdio int parserd50e88cchore: correct copy&paste panic message (#4399)8b829b1fix #4407: incorrect error for inject edge case4384badfix #4395 close #4405 close #4406: parens foror- See full diff in compare view
Updates undici from 7.24.1 to 7.24.6
Release notes
Sourced from undici's releases.
v7.24.6
What's Changed
- fix(test): client wasm compatible with clang 22 by
@rozzillain nodejs/undici#4909- fix(mock): improve error message when intercepts are exhausted by
@travisbreaksin nodejs/undici#4912- fix(websocket): support open diagnostics over h2 by
@mcollinain nodejs/undici#4921- fix: assume http/https scheme for scheme-less proxy env vars by
@travisbreaksin nodejs/undici#4914- fix(cache): check Authorization on request headers per RFC 9111 §3.5 by
@metalix2in nodejs/undici#4911- fix: wrap kConnector call in try/catch to prevent client hang by
@veeceeyin nodejs/undici#4834- docs: clarify fetch and FormData pairing by
@mcollinain nodejs/undici#4922- fix: support Connection header with connection-specific header names per RFC 7230 by
@mcollinain nodejs/undici#4775- fix: avoid prototype collisions in parseHeaders by
@mcollinain nodejs/undici#4923- build(deps-dev): bump typescript from 5.9.3 to 6.0.2 by
@dependabot[bot] in nodejs/undici#4926- test: auto-init WPT submodule by
@mcollinain nodejs/undici#4930New Contributors
@rozzillamade their first contribution in nodejs/undici#4909@veeceeymade their first contribution in nodejs/undici#4834Full Changelog: nodejs/undici@v7.24.5...v7.24.6
v7.24.5
What's Changed
- Formdata tests by
@KhafraDevin nodejs/undici#4902- test: add unexpected disconnect guards to more client test files by
@samayer12in nodejs/undici#4844- fix(cache): only apply 1-year deleteAt for immutable responses by
@metalix2in nodejs/undici#4913New Contributors
@metalix2made their first contribution in nodejs/undici#4913Full Changelog: nodejs/undici@v7.24.4...v7.24.5
v7.24.4
What's Changed
- fix(fetch): handle URL credentials in dispatch path extraction by
@mcollinain nodejs/undici#4892Full Changelog: nodejs/undici@v7.24.3...v7.24.4
v7.24.3
What's Changed
- fix(h2): TypeError: Cannot read properties of null (reading 'push') i… by
@hxinhanin nodejs/undici#4881Full Changelog: nodejs/undici@v7.24.2...v7.24.3
v7.24.2
What's Changed
- fix fetch path logic by
@KhafraDevin nodejs/undici#4890- remove maxDecompressedMessageSize by
@KhafraDevin nodejs/undici#4891
... (truncated)
Commits
38eab36Bumped v7.24.6 (#4931)993609dtest: auto-init WPT submodule (#4930)1eacc49build(deps-dev): bump typescript from 5.9.3 to 6.0.2 (#4926)b64e7e4fix: avoid prototype collisions in parseHeaders (#4923)deba679Revert "fix: assume http/https scheme for scheme-less proxy env vars (#4914)"feef62bfix: support Connection header with connection-specific header names per RFC ...a613d9adocs: clarify fetch and FormData pairing (#4922)2ba99a3fix: wrap kConnector call in try/catch to prevent client hang (#4834)a7398c0fix(cache): check Authorization on request headers per RFC 9111 §3.5 (#4911)2b2afbcfix: assume http/https scheme for scheme-less proxy env vars (#4914)- Additional commits viewable in compare view
Updates yaml from 2.8.2 to 2.8.3
Release notes
Sourced from yaml's releases.
v2.8.3
- Add
trailingCommaToString option for multiline flow formatting (#670)- Catch stack overflow during node composition (1e84ebb)
Commits
ce145872.8.31e84ebbfix: Catch stack overflow during node composition6b24090ci: Include Prettier check in lint action9424deechore: Refresh lockfiled1aca82Add trailingComma ToString option for multiline flow formatting (#670)4321509ci: Drop the branch filter from GitHub PR actions47207d0chore: Update docs-slate5212faechore: Update docs-slate- 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 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