Skip to content

Bump the all group with 4 updates#51

Merged
applejag merged 1 commit intomainfrom
dependabot/npm_and_yarn/all-7479fc64d1
Feb 23, 2026
Merged

Bump the all group with 4 updates#51
applejag merged 1 commit intomainfrom
dependabot/npm_and_yarn/all-7479fc64d1

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 23, 2026

Bumps the all group with 4 updates: @types/node, oxfmt, oxlint and rolldown.

Updates @types/node from 25.2.3 to 25.3.0

Commits

Updates oxfmt from 0.33.0 to 0.35.0

Changelog

Sourced from oxfmt's changelog.

[0.35.0] - 2026-02-23

🚀 Features

  • 984dc07 oxfmt: Strip "experimental"SortXxx prefix (#19567) (leaysgur)

[0.34.0] - 2026-02-19

🐛 Bug Fixes

  • 6c61b70 oxfmt: Fix outdated sortImports.groups doc comments (#19513) (leaysgur)
Commits

Updates oxlint from 1.48.0 to 1.50.0

Release notes

Sourced from oxlint's releases.

oxlint v1.27.0 && oxfmt v0.12.0

Oxlint v1.27.0

🚀 Features

  • 222a8f0 linter/plugins: Implement SourceCode#isSpaceBetween (#15498) (overlookmotel)
  • 2f9735d linter/plugins: Implement context.languageOptions (#15486) (overlookmotel)
  • bc731ff linter/plugins: Stub out all Context APIs (#15479) (overlookmotel)
  • 5822cb4 linter/plugins: Add extend method to FILE_CONTEXT (#15477) (overlookmotel)
  • 7b1e6f3 apps: Add pure rust binaries and release to github (#15469) (Boshen)
  • 2a89b43 linter: Introduce debug assertions after fixes to assert validity (#15389) (camc314)
  • ad3c45a editor: Add oxc.path.node option (#15040) (Sysix)

🐛 Bug Fixes

  • 6f3cd77 linter/no-var: Incorrect warning for blocks (#15504) (Hamir Mahal)
  • 6957fb9 linter/plugins: Do not allow access to Context#id in createOnce (#15489) (overlookmotel)
  • 7409630 linter/plugins: Allow access to cwd in createOnce in ESLint interop mode (#15488) (overlookmotel)
  • 732205e parser: Reject using / await using in a switch case / default clause (#15225) (sapphi-red)
  • a17ca32 linter/plugins: Replace Context class (#15448) (overlookmotel)
  • ecf2f7b language_server: Fail gracefully when tsgolint executable not found (#15436) (camc314)
  • 3c8d3a7 lang-server: Improve logging in failure case for tsgolint (#15299) (camc314)
  • ef71410 linter: Use jsx if source type is JS in fix debug assertion (#15434) (camc314)
  • e32bbf6 linter/no-var: Handle TypeScript declare keyword in fixer (#15426) (camc314)
  • 6565dbe linter/switch-case-braces: Skip comments when searching for : token (#15425) (camc314)
  • 85bd19a linter/prefer-class-fields: Insert value after type annotation in fixer (#15423) (camc314)
  • fde753e linter/plugins: Block access to context.settings in createOnce (#15394) (overlookmotel)
  • ddd9f9f linter/forward-ref-uses-ref: Dont suggest removing wrapper in invalid positions (#15388) (camc314)
  • dac2a9c linter/no-template-curly-in-string: Remove fixer (#15387) (camc314)
  • 989b8e3 linter/no-var: Only fix to const if the var has an initializer (#15385) (camc314)
  • cc403f5 linter/plugins: Return empty object for unimplemented parserServices (#15364) (magic-akari)

⚡ Performance

  • 25d577e language_server: Start tools in parallel (#15500) (Sysix)
  • 3c57291 linter/plugins: Optimize loops (#15449) (overlookmotel)
  • 3166233 linter/plugins: Remove Arcs (#15431) (overlookmotel)
  • 9de1322 linter/plugins: Lazily deserialize settings JSON (#15395) (overlookmotel)
  • 3049ec2 linter/plugins: Optimize deepFreezeSettings (#15392) (overlookmotel)
  • 444ebfd linter/plugins: Use single object for parserServices (#15378) (overlookmotel)

📚 Documentation

  • 97d2104 linter: Update comment in lint.rs about default value for tsconfig path (#15530) (Connor Shea)
  • 2c6bd9e linter: Always refer as "ES2015" instead of "ES6" (#15411) (sapphi-red)
  • a0c5203 linter/import/named: Update "ES7" comment in examples (#15410) (sapphi-red)
  • 3dc24b5 linter,minifier: Always refer as "ES Modules" instead of "ES6 Modules" (#15409) (sapphi-red)
  • 2ad77fb linter/no-this-before-super: Correct "Why is this bad?" section (#15408) (sapphi-red)
  • 57f0ce1 linter: Add backquotes where appropriate (#15407) (sapphi-red)

Oxfmt v0.12.0

... (truncated)

Commits

Updates rolldown from 1.0.0-rc.4 to 1.0.0-rc.5

Release notes

Sourced from rolldown's releases.

v1.0.0-rc.5

[1.0.0-rc.5] - 2026-02-18

💡 Smarter entriesAware for Code Splitting

New entriesAware and entriesAwareMergeThreshold options for codeSplitting.groups[] enable entry-reachability-based chunk splitting with automatic small chunk merging.

  • entriesAware: true splits matched modules by entry reachability — modules reached by the same set of entries are grouped together, providing the most precise loading behavior with less over-fetching
  • Chunks now get more readable names reflecting their entry associations (e.g. vendor-entry-a-entry-b.js) instead of opaque hashes
  • entriesAwareMergeThreshold sets a byte-size threshold to merge tiny subgroups into the closest sibling with the fewest extra entries, reducing micro-chunk fragmentation while preserving precision
  • Recommended to use together with maxSize: merge tiny chunks first to reduce request overhead, then cap large chunks to control payload size
codeSplitting: {
  groups: [{
    name: 'vendor',
    test: /node_modules/,
    entriesAware: true,
    entriesAwareMergeThreshold: 28000, // bytes
  }]
}

🚀 Features

🐛 Bug Fixes

  • improve circular dependency detection in chunk optimizer (#8371) by @​IWANABETHATGUY
  • align minify.compress: true and minify.mangle: true with minify: true (#8367) by @​sapphi-red
  • rolldown_plugin_esm_external_require: apply conversion to UMD and IIFE outputs (#8359) by @​sapphi-red
  • cjs: bailout treeshaking on cjs modules that have multiple re-exports (#8348) by @​hyf0
  • handle member expression and this expression in JSX element name rewriting (#8323) by @​IWANABETHATGUY
  • pad encode_hash_with_base output to fixed length to prevent slice panics (#8320) by @​shulaoda
  • xxhash_with_base skips hashing when input is exactly 16 bytes (#8319) by @​shulaoda
  • complete ImportKind::try_from with missing variants and correct url-import to url-token (#8310) by @​shulaoda

... (truncated)

Changelog

Sourced from rolldown's changelog.

[1.0.0-rc.5] - 2026-02-18

🚀 Features

🐛 Bug Fixes

  • improve circular dependency detection in chunk optimizer (#8371) by @​IWANABETHATGUY
  • align minify.compress: true and minify.mangle: true with minify: true (#8367) by @​sapphi-red
  • rolldown_plugin_esm_external_require: apply conversion to UMD and IIFE outputs (#8359) by @​sapphi-red
  • cjs: bailout treeshaking on cjs modules that have multiple re-exports (#8348) by @​hyf0
  • handle member expression and this expression in JSX element name rewriting (#8323) by @​IWANABETHATGUY
  • pad encode_hash_with_base output to fixed length to prevent slice panics (#8320) by @​shulaoda
  • xxhash_with_base skips hashing when input is exactly 16 bytes (#8319) by @​shulaoda
  • complete ImportKind::try_from with missing variants and correct url-import to url-token (#8310) by @​shulaoda
  • mark Node.js builtin modules as side-effect-free when resolved via external config (#8304) by @​IWANABETHATGUY
  • mcs: maxSize should split chunks correctly based on sizes (#8289) by @​hyf0

🚜 Refactor

... (truncated)

Commits
  • c8198d1 release: v1.0.0-rc.5 (#8375)
  • dda0d48 fix: improve circular dependency detection in chunk optimizer (#8371)
  • 7d61b8f feat: add Visitor to rolldown/utils (#8373)
  • 1d0ad2d docs: change default value in format JSDoc from 'esm' to 'es' (#8372)
  • f6ca0aa test: use vi.waitFor and expect.poll instead of custom waitUtil functio...
  • 11424ab feat(module-info): add inputFormat property to ModuleInfo (#8329)
  • 7593381 chore: format more files (#8360)
  • ee428e1 fix(rolldown_plugin_esm_external_require): apply conversion to UMD and IIFE o...
  • d744c08 test(rolldown_plugin_esm_external_require_plugin): add tests (#8358)
  • dd1db9d feat: default treeshake.invalid_import_side_effects to false (#8357)
  • 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 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 all group with 4 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [oxfmt](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxfmt), [oxlint](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxlint) and [rolldown](https://github.com/rolldown/rolldown/tree/HEAD/packages/rolldown).


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

Updates `oxfmt` from 0.33.0 to 0.35.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/npm/oxfmt/CHANGELOG.md)
- [Commits](https://github.com/oxc-project/oxc/commits/oxfmt_v0.35.0/npm/oxfmt)

Updates `oxlint` from 1.48.0 to 1.50.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/npm/oxlint/CHANGELOG.md)
- [Commits](https://github.com/oxc-project/oxc/commits/oxlint_v1.50.0/npm/oxlint)

Updates `rolldown` from 1.0.0-rc.4 to 1.0.0-rc.5
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-rc.5/packages/rolldown)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 25.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: oxfmt
  dependency-version: 0.35.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: oxlint
  dependency-version: 1.50.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: rolldown
  dependency-version: 1.0.0-rc.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
...

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 Feb 23, 2026
@applejag applejag merged commit c5beff1 into main Feb 23, 2026
8 checks passed
@applejag applejag deleted the dependabot/npm_and_yarn/all-7479fc64d1 branch February 23, 2026 22:09
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