Skip to content

Bump the minor-patch group with 12 updates#1126

Merged
alcohol merged 1 commit intomainfrom
dependabot/npm_and_yarn/minor-patch-6da641f653
Apr 14, 2026
Merged

Bump the minor-patch group with 12 updates#1126
alcohol merged 1 commit intomainfrom
dependabot/npm_and_yarn/minor-patch-6da641f653

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 13, 2026

Bumps the minor-patch group with 12 updates:

Package From To
prettier 3.8.1 3.8.2
webpack 5.105.4 5.106.1
@sinclair/typebox 0.34.48 0.34.49
@types/node 25.5.2 25.6.0
baseline-browser-mapping 2.10.15 2.10.18
caniuse-lite 1.0.30001786 1.0.30001787
css-declaration-sorter 7.3.1 7.4.0
electron-to-chromium 1.5.331 1.5.335
postcss 8.5.8 8.5.9
resolve 1.22.11 1.22.12
tinyexec 1.0.4 1.1.1
undici-types 7.18.2 7.19.2

Updates prettier from 3.8.1 to 3.8.2

Release notes

Sourced from prettier's releases.

3.8.2

  • Support Angular v21.2

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.8.2

diff

Angular: Support Angular v21.2 (#18722, #19034 by @​fisker)

Exhaustive typechecking with @default never;

<!-- Input -->
@switch (foo) {
  @case (1) {}
  @default never;
}
<!-- Prettier 3.8.1 -->
SyntaxError: Incomplete block "default never". If you meant to write the @ character, you should use the "&#64;" HTML entity instead. (3:3)
<!-- Prettier 3.8.2 -->
@​switch (foo) {
@​case (1) {}
@​default never;
}

arrow function and instanceof expressions.

<!-- Input -->
@let fn = (a) =>        a?    1:2;
{{ fn ( a         instanceof b)}}
<!-- Prettier 3.8.1 -->
@​let fn = (a) =>        a?    1:2;
{{ fn ( a         instanceof b)}}
<!-- Prettier 3.8.2 -->
@​let fn = (a) => (a ? 1 : 2);
{{ fn(a instanceof b) }}

Commits

Updates webpack from 5.105.4 to 5.106.1

Release notes

Sourced from webpack's releases.

v5.106.1

Patch Changes

  • Fix two ES5-environment regressions in the anonymous default export .name fix-up: the generated code referenced an undeclared __WEBPACK_DEFAULT_EXPORT__ binding causing ReferenceError, and used Reflect.defineProperty which is not available in pre-ES2015 runtimes. The fix-up now references the real assignment target and uses Object.defineProperty / Object.getOwnPropertyDescriptor. (by @​xiaoxiaojx in #20796)

  • Prevent !important from being renamed as a local identifier in CSS modules. (by @​xiaoxiaojx in #20798)

  • Use compiler context instead of module context for CSS modules local ident hashing to avoid hash collisions when files with the same name exist in different directories. (by @​xiaoxiaojx in #20799)

v5.106.0

Minor Changes

  • Add exportType: "style" for CSS modules to inject styles into DOM via HTMLStyleElement, similar to style-loader functionality. (by @​xiaoxiaojx in #20579)

  • Add context option support for VirtualUrlPlugin (by @​xiaoxiaojx in #20449)

    • The context for the virtual module. A string path. Defaults to 'auto', which will try to resolve the context from the module id.
    • Support custom context path for resolving relative imports in virtual modules
    • Add examples demonstrating context usage and filename customization
  • Generate different CssModule instances for different exportType values. (by @​xiaoxiaojx in #20590)

  • Added the localIdentHashFunction option to configure the hash function to be used for hashing. (by @​alexander-akait in #20694) Additionally, the localIdentName option can now be a function.

  • Added support for destructuring assignment require in cjs, allowing for tree shaking. (by @​ahabhgk in #20548)

  • Added the validate option to enable/disable validation in webpack/plugins/loaders, also implemented API to make it inside plugins. (by @​xiaoxiaojx in #20275)

  • Added source support for async WASM modules. (by @​magic-akari in #20364)

Patch Changes

  • Add a static getSourceBasicTypes method to the Module class to prevent errors across multiple versions. (by @​xiaoxiaojx in #20614)

  • Included fragment groups in the conflicting order warning for CSS. (by @​aryanraj45 in #20660)

  • Avoid rendering unused top-level __webpack_exports__ declaration when output ECMA module library. (by @​hai-x in #20669)

  • Fixed resolving in CSS modules. (by @​alexander-akait in #20771)

  • Allow external modules place in async chunks when output ECMA module. (by @​hai-x in #20662)

  • Implement deprecate flag in schema for better TypeScript support to show which options are already deprecated by the configuration (by @​bjohansebas in #20432)

  • Set .name to "default" for anonymous default export functions and classes per ES spec (by @​xiaoxiaojx in #20773)

  • Hash entry chunks after runtime chunks to prevent stale content hash references in watch mode (by @​xiaoxiaojx in #20724)

  • Fix multiple bugs and optimizations in CSS modules: correct third code point position in walkCssTokens number detection, fix multiline CSS comment regex, fix swapped :import/:export error message, fix comma callback incorrectly popping balanced stack, fix cache comparison missing array length check, fix match.index mutation side effect, move publicPathAutoRegex to module scope, precompute merged callbacks in consumeUntil, simplify redundant ternary in CssGenerator, fix typo GRID_TEMPLATE_ARES, remove duplicate grid-column-start, and merge duplicate getCompilationHooks calls. (by @​xiaoxiaojx in #20648)

... (truncated)

Changelog

Sourced from webpack's changelog.

5.106.1

Patch Changes

  • Fix two ES5-environment regressions in the anonymous default export .name fix-up: the generated code referenced an undeclared __WEBPACK_DEFAULT_EXPORT__ binding causing ReferenceError, and used Reflect.defineProperty which is not available in pre-ES2015 runtimes. The fix-up now references the real assignment target and uses Object.defineProperty / Object.getOwnPropertyDescriptor. (by @​xiaoxiaojx in #20796)

  • Prevent !important from being renamed as a local identifier in CSS modules. (by @​xiaoxiaojx in #20798)

  • Use compiler context instead of module context for CSS modules local ident hashing to avoid hash collisions when files with the same name exist in different directories. (by @​xiaoxiaojx in #20799)

5.106.0

Minor Changes

  • Add exportType: "style" for CSS modules to inject styles into DOM via HTMLStyleElement, similar to style-loader functionality. (by @​xiaoxiaojx in #20579)

  • Add context option support for VirtualUrlPlugin (by @​xiaoxiaojx in #20449)

    • The context for the virtual module. A string path. Defaults to 'auto', which will try to resolve the context from the module id.
    • Support custom context path for resolving relative imports in virtual modules
    • Add examples demonstrating context usage and filename customization
  • Generate different CssModule instances for different exportType values. (by @​xiaoxiaojx in #20590)

  • Added the localIdentHashFunction option to configure the hash function to be used for hashing. (by @​alexander-akait in #20694) Additionally, the localIdentName option can now be a function.

  • Added support for destructuring assignment require in cjs, allowing for tree shaking. (by @​ahabhgk in #20548)

  • Added the validate option to enable/disable validation in webpack/plugins/loaders, also implemented API to make it inside plugins. (by @​xiaoxiaojx in #20275)

  • Added source support for async WASM modules. (by @​magic-akari in #20364)

Patch Changes

  • Add a static getSourceBasicTypes method to the Module class to prevent errors across multiple versions. (by @​xiaoxiaojx in #20614)

  • Included fragment groups in the conflicting order warning for CSS. (by @​aryanraj45 in #20660)

  • Avoid rendering unused top-level __webpack_exports__ declaration when output ECMA module library. (by @​hai-x in #20669)

  • Fixed resolving in CSS modules. (by @​alexander-akait in #20771)

  • Allow external modules place in async chunks when output ECMA module. (by @​hai-x in #20662)

  • Implement deprecate flag in schema for better TypeScript support to show which options are already deprecated by the configuration (by @​bjohansebas in #20432)

  • Set .name to "default" for anonymous default export functions and classes per ES spec (by @​xiaoxiaojx in #20773)

  • Hash entry chunks after runtime chunks to prevent stale content hash references in watch mode (by @​xiaoxiaojx in #20724)

... (truncated)

Commits
  • a934b9b chore(release): new release (#20808)
  • ecb436b fix: use compiler context for CSS modules hash to avoid collisions (#20799)
  • c0e8cf4 fix: prevent !important from being renamed in CSS modules (#20798)
  • f8d274b fix: anonymous default export name fix-up in ES5 environment (#20796)
  • e370b76 chore(deps-dev): bump the dependencies group with 5 updates (#20790)
  • 8774a01 chore(release): new release (#20593)
  • cc66616 fix: add @deprecated to methods
  • 7cdc173 feat: support source phase import for WebAssembly modules (#20364)
  • 0b60f1c chore(members): update to match @​webpack/core-wg (#20784)
  • 955a68c test: generate snapshots per stats test case (#20785)
  • Additional commits viewable in compare view

Updates @sinclair/typebox from 0.34.48 to 0.34.49

Commits

Updates @types/node from 25.5.2 to 25.6.0

Commits

Updates baseline-browser-mapping from 2.10.15 to 2.10.18

Release notes

Sourced from baseline-browser-mapping's releases.

v2.9.3 - remove process.loadEnvFile()

What's Changed

Full Changelog: web-platform-dx/baseline-browser-mapping@v2.9.2...v2.9.3

Commits
  • 71803d0 Patch to 2.10.18 because browser or feature data changed
  • 91e38d0 Browser or feature data changed
  • c5c778c Patch to 2.10.17 because browser or feature data changed
  • c3ab98d Browser or feature data changed
  • 2fd5696 Updating static site
  • c8ba05d Patch to 2.10.16 because browser or feature data changed
  • 3887938 Browser or feature data changed
  • 3b7f694 Updating static site
  • See full diff in compare view

Updates caniuse-lite from 1.0.30001786 to 1.0.30001787

Commits

Updates css-declaration-sorter from 7.3.1 to 7.4.0

Changelog

Sourced from css-declaration-sorter's changelog.

[7.4.0] - 2026-01-02

Added

  • New properties regarding text & math baseline, field size and scrollbar visibility.

Fixed

  • Missing CSS logical properties in shorthand properties.
Commits
  • 5a45577 7.4.0
  • 7bbf67d Update @​mdn/browser-compat-data to version 7.3.6
  • ca9b4d2 Update eslint to version 10.1.0
  • f9f5f05 Add missing CSS logical properties
  • 29a1988 Adjust logo size
  • cbd2177 Update all of eslint to version 9.39.2
  • e89fdaa Run npm pkg fix to fix repository url format
  • See full diff in compare view

Updates electron-to-chromium from 1.5.331 to 1.5.335

Commits

Updates postcss from 8.5.8 to 8.5.9

Release notes

Sourced from postcss's releases.

8.5.9

  • Speed up source map encoding paring in case of the error.
Changelog

Sourced from postcss's changelog.

8.5.9

  • Speed up source map encoding paring in case of the error.
Commits
  • fe88ac2 Release 8.5.9 version
  • c551632 Avoid RegExp when we can use simple JS
  • 89a6b74 Move SECURITY.txt for docs folder to keep GitHub page cleaner
  • 6ceb8a4 Create SECURITY.md
  • 02ccae6 Another way to fix CI with .ts ext in tests on old Node.js
  • 2c36658 Another way to fix CI with TS on old Node.js
  • b906003 Another way to fix CI with old Node.js
  • 04d32cd Fix another issue with Node.js 10 on CI
  • df86cdf Try to fix Node.js 10 on CI
  • 82bec0d Move to oxfmt
  • Additional commits viewable in compare view

Updates resolve from 1.22.11 to 1.22.12

Commits
  • d2d30de v1.22.12
  • 655c3db [Fix] defaultPaths: handle null homedir gracefully
  • 0cec52b [Fix] homedir: fix operator precedence bug with HOMEDRIVE/HOMEPATH concaten...
  • a93a913 [Fix] loadpkg: add missing return after error callback to prevent double-...
  • eeb965e [meta] update security policy to use GitHub PVR instead of Tidelift
  • 7929ac1 [Test] add test from v2 branch
  • 9fcaf60 [Refactor] use non-hoisted declarations instead of expressions
  • 4c6db66 [Robustness] use es-errors
  • 29bac90 [readme] replace runkit CI badge with shields.io check-runs badge
  • 651f4d1 [Performance] avoid an unnecessary slice
  • Additional commits viewable in compare view

Updates tinyexec from 1.0.4 to 1.1.1

Release notes

Sourced from tinyexec's releases.

1.1.1

What's Changed

Full Changelog: tinylibs/tinyexec@1.1.0...1.1.1

1.1.0

What's Changed

New Contributors

Full Changelog: tinylibs/tinyexec@1.0.4...1.1.0

Commits
  • 53d1934 fix: install npm twice to make publish work (#111)
  • 8a2484f chore(deps-dev): bump the development-dependencies group with 2 updates (#110)
  • 5120700 fix: add current node executable's directory to start of PATH (#108)
  • a158629 fix: use stream.pipeline to fix combining streams with auto-destroy disable...
  • 4acd4a9 feat: Support Result | ExecProcess | string for options.stdin (#106)
  • 04fde07 chore(deps-dev): bump the development-dependencies group across 1 directory w...
  • fa9f740 feat: improve Bun runtime compatibility (#101)
  • 52b74a8 docs(#96): add sync API docs (#98)
  • 70b1d9c feat(#33): implements sync API (#96)
  • f9323a9 chore(deps-dev): bump the development-dependencies group with 5 updates (#97)
  • Additional commits viewable in compare view

Updates undici-types from 7.18.2 to 7.19.2

Release notes

Sourced from undici-types's releases.

v7.19.2

What's Changed

New Contributors

Full Changelog: nodejs/undici@v7.19.1...v7.19.2

v7.19.1

What's Changed

New Contributors

Full Changelog: nodejs/undici@v7.19.0...v7.19.1

v7.19.0

What's Changed

New Contributors

Full Changelog: nodejs/undici@v7.18.2...v7.19.0

Commits

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 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

Bumps the minor-patch group with 12 updates:

| Package | From | To |
| --- | --- | --- |
| [prettier](https://github.com/prettier/prettier) | `3.8.1` | `3.8.2` |
| [webpack](https://github.com/webpack/webpack) | `5.105.4` | `5.106.1` |
| [@sinclair/typebox](https://github.com/sinclairzx81/sinclair-typebox) | `0.34.48` | `0.34.49` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.5.2` | `25.6.0` |
| [baseline-browser-mapping](https://github.com/web-platform-dx/baseline-browser-mapping) | `2.10.15` | `2.10.18` |
| [caniuse-lite](https://github.com/browserslist/caniuse-lite) | `1.0.30001786` | `1.0.30001787` |
| [css-declaration-sorter](https://github.com/Siilwyn/css-declaration-sorter) | `7.3.1` | `7.4.0` |
| [electron-to-chromium](https://github.com/Kilian/electron-to-chromium) | `1.5.331` | `1.5.335` |
| [postcss](https://github.com/postcss/postcss) | `8.5.8` | `8.5.9` |
| [resolve](https://github.com/browserify/resolve) | `1.22.11` | `1.22.12` |
| [tinyexec](https://github.com/tinylibs/tinyexec) | `1.0.4` | `1.1.1` |
| [undici-types](https://github.com/nodejs/undici) | `7.18.2` | `7.19.2` |


Updates `prettier` from 3.8.1 to 3.8.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.8.1...3.8.2)

Updates `webpack` from 5.105.4 to 5.106.1
- [Release notes](https://github.com/webpack/webpack/releases)
- [Changelog](https://github.com/webpack/webpack/blob/main/CHANGELOG.md)
- [Commits](webpack/webpack@v5.105.4...v5.106.1)

Updates `@sinclair/typebox` from 0.34.48 to 0.34.49
- [Commits](sinclairzx81/sinclair-typebox@0.34.48...0.34.49)

Updates `@types/node` from 25.5.2 to 25.6.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `baseline-browser-mapping` from 2.10.15 to 2.10.18
- [Release notes](https://github.com/web-platform-dx/baseline-browser-mapping/releases)
- [Commits](web-platform-dx/baseline-browser-mapping@v2.10.15...v2.10.18)

Updates `caniuse-lite` from 1.0.30001786 to 1.0.30001787
- [Commits](browserslist/caniuse-lite@1.0.30001786...1.0.30001787)

Updates `css-declaration-sorter` from 7.3.1 to 7.4.0
- [Changelog](https://github.com/Siilwyn/css-declaration-sorter/blob/master/changelog.md)
- [Commits](Siilwyn/css-declaration-sorter@v7.3.1...v7.4.0)

Updates `electron-to-chromium` from 1.5.331 to 1.5.335
- [Changelog](https://github.com/Kilian/electron-to-chromium/blob/main/CHANGELOG.md)
- [Commits](Kilian/electron-to-chromium@v1.5.331...v1.5.335)

Updates `postcss` from 8.5.8 to 8.5.9
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.5.8...8.5.9)

Updates `resolve` from 1.22.11 to 1.22.12
- [Commits](browserify/resolve@v1.22.11...v1.22.12)

Updates `tinyexec` from 1.0.4 to 1.1.1
- [Release notes](https://github.com/tinylibs/tinyexec/releases)
- [Commits](tinylibs/tinyexec@1.0.4...1.1.1)

Updates `undici-types` from 7.18.2 to 7.19.2
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v7.18.2...v7.19.2)

---
updated-dependencies:
- dependency-name: prettier
  dependency-version: 3.8.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: webpack
  dependency-version: 5.106.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: "@sinclair/typebox"
  dependency-version: 0.34.49
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: "@types/node"
  dependency-version: 25.6.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: baseline-browser-mapping
  dependency-version: 2.10.18
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: caniuse-lite
  dependency-version: 1.0.30001787
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: css-declaration-sorter
  dependency-version: 7.4.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: electron-to-chromium
  dependency-version: 1.5.335
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: postcss
  dependency-version: 8.5.9
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: resolve
  dependency-version: 1.22.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: tinyexec
  dependency-version: 1.1.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: undici-types
  dependency-version: 7.19.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 13, 2026
@alcohol alcohol merged commit 233a339 into main Apr 14, 2026
22 checks passed
@alcohol alcohol deleted the dependabot/npm_and_yarn/minor-patch-6da641f653 branch April 14, 2026 06:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant