Skip to content

chore(deps): bump the oxc group with 8 updates#39

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/oxc-099a5ad981
Open

chore(deps): bump the oxc group with 8 updates#39
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/cargo/oxc-099a5ad981

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Apr 25, 2026

Bumps the oxc group with 8 updates:

Package From To
oxc_allocator 0.122.0 0.127.0
oxc_ast 0.122.0 0.127.0
oxc_ast_visit 0.122.0 0.127.0
oxc_parser 0.122.0 0.127.0
oxc_semantic 0.122.0 0.127.0
oxc_codegen 0.122.0 0.127.0
oxc_span 0.122.0 0.127.0
oxc_syntax 0.122.0 0.127.0

Updates oxc_allocator from 0.122.0 to 0.127.0

Release notes

Sourced from oxc_allocator's releases.

oxc crates_v0.127.0

πŸ› Bug Fixes

  • 510e344 minifier: Drop this after unconditional super() in derived constructors (#21571) (Dunqing)
  • 67d40f8 parser: Set pure comment index after dedup check to handle lookahead/rewind (#21570) (Dunqing)
  • 9eea064 minifier: Treat this outside constructor as side-effect free (#21568) (Dunqing)
  • 385eb94 minifier: Preserve annotation comments when inlining single-use variables during DCE (#21567) (Dunqing)
  • 48967e8 isolated_declarations: Drop required type check for private parameter properties on private constructors (#21515) (Dunqing)
  • 91e5bde transformer/typescript: Preserve computed-key static block when class has an empty constructor (#21562) (Dunqing)
  • 50e9d26 mangler: Assign correct slot to shadowed function-expression names (#21535) (Dunqing)
  • 065ce47 isolated_declarations: Collect types from private accessors for paired inference (#21516) (Dunqing)
  • 00fc136 codegen: Preserve coverage comments before object properties (#21312) (bab)
  • d676e0c minifier: Mark LHS of ??= as read when converting from == null && (#21546) (Gunnlaugur Thor Briem)

⚑ Performance

  • e45efc5 parser: Reduce try_parse usage in favour of lookahead (#21532) (Boshen)
  • ddb1bf8 parser: Avoid redundant IdentifierReference clone in shorthand property (#21511) (Boshen)
  • be2b392 allocator: Store pointers directly in Arena (#21483) (overlookmotel)

oxc crates_v0.126.0

πŸ’₯ BREAKING CHANGES

  • 24fb7eb allocator: [BREAKING] Rename Box and Vec methods (#21395) (overlookmotel)

πŸš€ Features

  • ce5072d parser: Support turbopack magic comments (#20803) (Kane Wang)
  • f5deb55 napi/transform: Expose optimizeConstEnums and optimizeEnums options (#21388) (Dunqing)
  • 24b03de data_structures: Introduce NonNullConst and NonNullMut pointer types (#21425) (overlookmotel)

πŸ› Bug Fixes

  • d7a359a ecmascript: Treat update expressions as unconditionally side-effectful (#21456) (Dunqing)
  • 56af2f4 transformer/async-to-generator: Correct scope of inferred named FE in async-to-generator (#21458) (Dunqing)
  • b3ed467 minifier: Avoid illegal var; when folding unused arguments copy loop (#21421) (fazba)
  • b0e8f13 minifier: Preserve var inside catch with same-named parameter (#21366) (Dunqing)
  • 4fb73a7 transformer/typescript: Preserve execution order for accessor with useDefineForClassFields: false (#21369) (Dunqing)

⚑ Performance

  • c22cba6 allocator: Simplify pointer calculation when creating Arena chunks (#21475) (overlookmotel)
  • da3cc16 parser: Refactor out LexerContext (#21275) (Ulrich Stark)

πŸ“š Documentation

  • c5b19bb allocator: Reformat comments in Arena (#21448) (overlookmotel)
  • 091e88e lexer: Update doc comment about perf benefit of reading through references (#21423) (overlookmotel)
  • 922cbee allocator: Remove references to "bump" from comments (#21397) (overlookmotel)

... (truncated)

Commits
  • 161d6b5 release(crates): oxc v0.127.0 (#21572)
  • b87a390 refactor(linter/no-useless-assignment): simplify tracking state (#21584)
  • ba5f50f chore(deps): update napi (#21467)
  • 96ede2c fix(linter/no-useless-assignment): preserve conditional self-reads (#21582)
  • fe23965 feat(linter/release): automate oxlint rule version updates (#21392)
  • f4d30d8 chore(deps): update rust crates (#21554)
  • 38d8090 feat(linter/jest): Implemented jest version settings in config file. (#21522)
  • 1e69b91 fix(linter/no-useless-assignment): improve diagnostic spans (#21581)
  • f272594 fix(linter/plugins): align RuleMeta.replacedBy type with ESLint (#21544)
  • 510e344 fix(minifier): drop this after unconditional super() in derived construct...
  • Additional commits viewable in compare view

Updates oxc_ast from 0.122.0 to 0.127.0

Release notes

Sourced from oxc_ast's releases.

oxc crates_v0.127.0

πŸ› Bug Fixes

  • 510e344 minifier: Drop this after unconditional super() in derived constructors (#21571) (Dunqing)
  • 67d40f8 parser: Set pure comment index after dedup check to handle lookahead/rewind (#21570) (Dunqing)
  • 9eea064 minifier: Treat this outside constructor as side-effect free (#21568) (Dunqing)
  • 385eb94 minifier: Preserve annotation comments when inlining single-use variables during DCE (#21567) (Dunqing)
  • 48967e8 isolated_declarations: Drop required type check for private parameter properties on private constructors (#21515) (Dunqing)
  • 91e5bde transformer/typescript: Preserve computed-key static block when class has an empty constructor (#21562) (Dunqing)
  • 50e9d26 mangler: Assign correct slot to shadowed function-expression names (#21535) (Dunqing)
  • 065ce47 isolated_declarations: Collect types from private accessors for paired inference (#21516) (Dunqing)
  • 00fc136 codegen: Preserve coverage comments before object properties (#21312) (bab)
  • d676e0c minifier: Mark LHS of ??= as read when converting from == null && (#21546) (Gunnlaugur Thor Briem)

⚑ Performance

  • e45efc5 parser: Reduce try_parse usage in favour of lookahead (#21532) (Boshen)
  • ddb1bf8 parser: Avoid redundant IdentifierReference clone in shorthand property (#21511) (Boshen)
  • be2b392 allocator: Store pointers directly in Arena (#21483) (overlookmotel)

oxc crates_v0.126.0

πŸ’₯ BREAKING CHANGES

  • 24fb7eb allocator: [BREAKING] Rename Box and Vec methods (#21395) (overlookmotel)

πŸš€ Features

  • ce5072d parser: Support turbopack magic comments (#20803) (Kane Wang)
  • f5deb55 napi/transform: Expose optimizeConstEnums and optimizeEnums options (#21388) (Dunqing)
  • 24b03de data_structures: Introduce NonNullConst and NonNullMut pointer types (#21425) (overlookmotel)

πŸ› Bug Fixes

  • d7a359a ecmascript: Treat update expressions as unconditionally side-effectful (#21456) (Dunqing)
  • 56af2f4 transformer/async-to-generator: Correct scope of inferred named FE in async-to-generator (#21458) (Dunqing)
  • b3ed467 minifier: Avoid illegal var; when folding unused arguments copy loop (#21421) (fazba)
  • b0e8f13 minifier: Preserve var inside catch with same-named parameter (#21366) (Dunqing)
  • 4fb73a7 transformer/typescript: Preserve execution order for accessor with useDefineForClassFields: false (#21369) (Dunqing)

⚑ Performance

  • c22cba6 allocator: Simplify pointer calculation when creating Arena chunks (#21475) (overlookmotel)
  • da3cc16 parser: Refactor out LexerContext (#21275) (Ulrich Stark)

πŸ“š Documentation

  • c5b19bb allocator: Reformat comments in Arena (#21448) (overlookmotel)
  • 091e88e lexer: Update doc comment about perf benefit of reading through references (#21423) (overlookmotel)
  • 922cbee allocator: Remove references to "bump" from comments (#21397) (overlookmotel)

... (truncated)

Commits
  • 161d6b5 release(crates): oxc v0.127.0 (#21572)
  • b87a390 refactor(linter/no-useless-assignment): simplify tracking state (#21584)
  • ba5f50f chore(deps): update napi (#21467)
  • 96ede2c fix(linter/no-useless-assignment): preserve conditional self-reads (#21582)
  • fe23965 feat(linter/release): automate oxlint rule version updates (#21392)
  • f4d30d8 chore(deps): update rust crates (#21554)
  • 38d8090 feat(linter/jest): Implemented jest version settings in config file. (#21522)
  • 1e69b91 fix(linter/no-useless-assignment): improve diagnostic spans (#21581)
  • f272594 fix(linter/plugins): align RuleMeta.replacedBy type with ESLint (#21544)
  • 510e344 fix(minifier): drop this after unconditional super() in derived construct...
  • Additional commits viewable in compare view

Updates oxc_ast_visit from 0.122.0 to 0.127.0

Release notes

Sourced from oxc_ast_visit's releases.

oxc crates_v0.127.0

πŸ› Bug Fixes

  • 510e344 minifier: Drop this after unconditional super() in derived constructors (#21571) (Dunqing)
  • 67d40f8 parser: Set pure comment index after dedup check to handle lookahead/rewind (#21570) (Dunqing)
  • 9eea064 minifier: Treat this outside constructor as side-effect free (#21568) (Dunqing)
  • 385eb94 minifier: Preserve annotation comments when inlining single-use variables during DCE (#21567) (Dunqing)
  • 48967e8 isolated_declarations: Drop required type check for private parameter properties on private constructors (#21515) (Dunqing)
  • 91e5bde transformer/typescript: Preserve computed-key static block when class has an empty constructor (#21562) (Dunqing)
  • 50e9d26 mangler: Assign correct slot to shadowed function-expression names (#21535) (Dunqing)
  • 065ce47 isolated_declarations: Collect types from private accessors for paired inference (#21516) (Dunqing)
  • 00fc136 codegen: Preserve coverage comments before object properties (#21312) (bab)
  • d676e0c minifier: Mark LHS of ??= as read when converting from == null && (#21546) (Gunnlaugur Thor Briem)

⚑ Performance

  • e45efc5 parser: Reduce try_parse usage in favour of lookahead (#21532) (Boshen)
  • ddb1bf8 parser: Avoid redundant IdentifierReference clone in shorthand property (#21511) (Boshen)
  • be2b392 allocator: Store pointers directly in Arena (#21483) (overlookmotel)

oxc crates_v0.126.0

πŸ’₯ BREAKING CHANGES

  • 24fb7eb allocator: [BREAKING] Rename Box and Vec methods (#21395) (overlookmotel)

πŸš€ Features

  • ce5072d parser: Support turbopack magic comments (#20803) (Kane Wang)
  • f5deb55 napi/transform: Expose optimizeConstEnums and optimizeEnums options (#21388) (Dunqing)
  • 24b03de data_structures: Introduce NonNullConst and NonNullMut pointer types (#21425) (overlookmotel)

πŸ› Bug Fixes

  • d7a359a ecmascript: Treat update expressions as unconditionally side-effectful (#21456) (Dunqing)
  • 56af2f4 transformer/async-to-generator: Correct scope of inferred named FE in async-to-generator (#21458) (Dunqing)
  • b3ed467 minifier: Avoid illegal var; when folding unused arguments copy loop (#21421) (fazba)
  • b0e8f13 minifier: Preserve var inside catch with same-named parameter (#21366) (Dunqing)
  • 4fb73a7 transformer/typescript: Preserve execution order for accessor with useDefineForClassFields: false (#21369) (Dunqing)

⚑ Performance

  • c22cba6 allocator: Simplify pointer calculation when creating Arena chunks (#21475) (overlookmotel)
  • da3cc16 parser: Refactor out LexerContext (#21275) (Ulrich Stark)

πŸ“š Documentation

  • c5b19bb allocator: Reformat comments in Arena (#21448) (overlookmotel)
  • 091e88e lexer: Update doc comment about perf benefit of reading through references (#21423) (overlookmotel)
  • 922cbee allocator: Remove references to "bump" from comments (#21397) (overlookmotel)

... (truncated)

Commits
  • 161d6b5 release(crates): oxc v0.127.0 (#21572)
  • b87a390 refactor(linter/no-useless-assignment): simplify tracking state (#21584)
  • ba5f50f chore(deps): update napi (#21467)
  • 96ede2c fix(linter/no-useless-assignment): preserve conditional self-reads (#21582)
  • fe23965 feat(linter/release): automate oxlint rule version updates (#21392)
  • f4d30d8 chore(deps): update rust crates (#21554)
  • 38d8090 feat(linter/jest): Implemented jest version settings in config file. (#21522)
  • 1e69b91 fix(linter/no-useless-assignment): improve diagnostic spans (#21581)
  • f272594 fix(linter/plugins): align RuleMeta.replacedBy type with ESLint (#21544)
  • 510e344 fix(minifier): drop this after unconditional super() in derived construct...
  • Additional commits viewable in compare view

Updates oxc_parser from 0.122.0 to 0.127.0

Release notes

Sourced from oxc_parser's releases.

oxc crates_v0.127.0

πŸ› Bug Fixes

  • 510e344 minifier: Drop this after unconditional super() in derived constructors (#21571) (Dunqing)
  • 67d40f8 parser: Set pure comment index after dedup check to handle lookahead/rewind (#21570) (Dunqing)
  • 9eea064 minifier: Treat this outside constructor as side-effect free (#21568) (Dunqing)
  • 385eb94 minifier: Preserve annotation comments when inlining single-use variables during DCE (#21567) (Dunqing)
  • 48967e8 isolated_declarations: Drop required type check for private parameter properties on private constructors (#21515) (Dunqing)
  • 91e5bde transformer/typescript: Preserve computed-key static block when class has an empty constructor (#21562) (Dunqing)
  • 50e9d26 mangler: Assign correct slot to shadowed function-expression names (#21535) (Dunqing)
  • 065ce47 isolated_declarations: Collect types from private accessors for paired inference (#21516) (Dunqing)
  • 00fc136 codegen: Preserve coverage comments before object properties (#21312) (bab)
  • d676e0c minifier: Mark LHS of ??= as read when converting from == null && (#21546) (Gunnlaugur Thor Briem)

⚑ Performance

  • e45efc5 parser: Reduce try_parse usage in favour of lookahead (#21532) (Boshen)
  • ddb1bf8 parser: Avoid redundant IdentifierReference clone in shorthand property (#21511) (Boshen)
  • be2b392 allocator: Store pointers directly in Arena (#21483) (overlookmotel)

oxc crates_v0.126.0

πŸ’₯ BREAKING CHANGES

  • 24fb7eb allocator: [BREAKING] Rename Box and Vec methods (#21395) (overlookmotel)

πŸš€ Features

  • ce5072d parser: Support turbopack magic comments (#20803) (Kane Wang)
  • f5deb55 napi/transform: Expose optimizeConstEnums and optimizeEnums options (#21388) (Dunqing)
  • 24b03de data_structures: Introduce NonNullConst and NonNullMut pointer types (#21425) (overlookmotel)

πŸ› Bug Fixes

  • d7a359a ecmascript: Treat update expressions as unconditionally side-effectful (#21456) (Dunqing)
  • 56af2f4 transformer/async-to-generator: Correct scope of inferred named FE in async-to-generator (#21458) (Dunqing)
  • b3ed467 minifier: Avoid illegal var; when folding unused arguments copy loop (#21421) (fazba)
  • b0e8f13 minifier: Preserve var inside catch with same-named parameter (#21366) (Dunqing)
  • 4fb73a7 transformer/typescript: Preserve execution order for accessor with useDefineForClassFields: false (#21369) (Dunqing)

⚑ Performance

  • c22cba6 allocator: Simplify pointer calculation when creating Arena chunks (#21475) (overlookmotel)
  • da3cc16 parser: Refactor out LexerContext (#21275) (Ulrich Stark)

πŸ“š Documentation

  • c5b19bb allocator: Reformat comments in Arena (#21448) (overlookmotel)
  • 091e88e lexer: Update doc comment about perf benefit of reading through references (#21423) (overlookmotel)
  • 922cbee allocator: Remove references to "bump" from comments (#21397) (overlookmotel)

... (truncated)

Commits
  • 161d6b5 release(crates): oxc v0.127.0 (#21572)
  • b87a390 refactor(linter/no-useless-assignment): simplify tracking state (#21584)
  • ba5f50f chore(deps): update napi (#21467)
  • 96ede2c fix(linter/no-useless-assignment): preserve conditional self-reads (#21582)
  • fe23965 feat(linter/release): automate oxlint rule version updates (#21392)
  • f4d30d8 chore(deps): update rust crates (#21554)
  • 38d8090 feat(linter/jest): Implemented jest version settings in config file. (#21522)
  • 1e69b91 fix(linter/no-useless-assignment): improve diagnostic spans (#21581)
  • f272594 fix(linter/plugins): align RuleMeta.replacedBy type with ESLint (#21544)
  • 510e344 fix(minifier): drop this after unconditional super() in derived construct...
  • Additional commits viewable in compare view

Updates oxc_semantic from 0.122.0 to 0.127.0

Release notes

Sourced from oxc_semantic's releases.

oxc crates_v0.127.0

πŸ› Bug Fixes

  • 510e344 minifier: Drop this after unconditional super() in derived constructors (#21571) (Dunqing)
  • 67d40f8 parser: Set pure comment index after dedup check to handle lookahead/rewind (#21570) (Dunqing)
  • 9eea064 minifier: Treat this outside constructor as side-effect free (#21568) (Dunqing)
  • 385eb94 minifier: Preserve annotation comments when inlining single-use variables during DCE (#21567) (Dunqing)
  • 48967e8 isolated_declarations: Drop required type check for private parameter properties on private constructors (#21515) (Dunqing)
  • 91e5bde transformer/typescript: Preserve computed-key static block when class has an empty constructor (#21562) (Dunqing)
  • 50e9d26 mangler: Assign correct slot to shadowed function-expression names (#21535) (Dunqing)
  • 065ce47 isolated_declarations: Collect types from private accessors for paired inference (#21516) (Dunqing)
  • 00fc136 codegen: Preserve coverage comments before object properties (#21312) (bab)
  • d676e0c minifier: Mark LHS of ??= as read when converting from == null && (#21546) (Gunnlaugur Thor Briem)

⚑ Performance

  • e45efc5 parser: Reduce try_parse usage in favour of lookahead (#21532) (Boshen)
  • ddb1bf8 parser: Avoid redundant IdentifierReference clone in shorthand property (#21511) (Boshen)
  • be2b392 allocator: Store pointers directly in Arena (#21483) (overlookmotel)

oxc crates_v0.126.0

πŸ’₯ BREAKING CHANGES

  • 24fb7eb allocator: [BREAKING] Rename Box and Vec methods (#21395) (overlookmotel)

πŸš€ Features

  • ce5072d parser: Support turbopack magic comments (#20803) (Kane Wang)
  • f5deb55 napi/transform: Expose optimizeConstEnums and optimizeEnums options (#21388) (Dunqing)
  • 24b03de data_structures: Introduce NonNullConst and NonNullMut pointer types (#21425) (overlookmotel)

πŸ› Bug Fixes

  • d7a359a ecmascript: Treat update expressions as unconditionally side-effectful (#21456) (Dunqing)
  • 56af2f4 transformer/async-to-generator: Correct scope of inferred named FE in async-to-generator (#21458) (Dunqing)
  • b3ed467 minifier: Avoid illegal var; when folding unused arguments copy loop (#21421) (fazba)
  • b0e8f13 minifier: Preserve var inside catch with same-named parameter (#21366) (Dunqing)
  • 4fb73a7 transformer/typescript: Preserve execution order for accessor with useDefineForClassFields: false (#21369) (Dunqing)

⚑ Performance

  • c22cba6 allocator: Simplify pointer calculation when creating Arena chunks (#21475) (overlookmotel)
  • da3cc16 parser: Refactor out LexerContext (#21275) (Ulrich Stark)

πŸ“š Documentation

  • c5b19bb allocator: Reformat comments in Arena (#21448) (overlookmotel)
  • 091e88e lexer: Update doc comment about perf benefit of reading through references (#21423) (overlookmotel)
  • 922cbee allocator: Remove references to "bump" from comments (#21397) (overlookmotel)

... (truncated)

Commits
  • 161d6b5 release(crates): oxc v0.127.0 (#21572)
  • b87a390 refactor(linter/no-useless-assignment): simplify tracking state (#21584)
  • ba5f50f chore(deps): update napi (#21467)
  • 96ede2c fix(linter/no-useless-assignment): preserve conditional self-reads (#21582)
  • fe23965 feat(linter/release): automate oxlint rule version updates (#21392)
  • f4d30d8 chore(deps): update rust crates (#21554)
  • 38d8090 feat(linter/jest): Implemented jest version settings in config file. (#21522)
  • 1e69b91 fix(linter/no-useless-assignment): improve diagnostic spans (#21581)
  • f272594 fix(linter/plugins): align RuleMeta.replacedBy type with ESLint (#21544)
  • 510e344 fix(minifier): drop this after unconditional super() in derived construct...
  • Additional commits viewable in compare view

Updates oxc_codegen from 0.122.0 to 0.127.0

Release notes

Sourced from oxc_codegen's releases.

oxc crates_v0.127.0

πŸ› Bug Fixes

  • 510e344 minifier: Drop this after unconditional super() in derived constructors (#21571) (Dunqing)
  • 67d40f8 parser: Set pure comment index after dedup check to handle lookahead/rewind (#21570) (Dunqing)
  • 9eea064 minifier: Treat this outside constructor as side-effect free (#21568) (Dunqing)
  • 385eb94 minifier: Preserve annotation comments when inlining single-use variables during DCE (#21567) (Dunqing)
  • 48967e8 isolated_declarations: Drop required type check for private parameter properties on private constructors (#21515) (Dunqing)
  • 91e5bde transformer/typescript: Preserve computed-key static block when class has an empty constructor (#21562) (Dunqing)
  • 50e9d26 mangler: Assign correct slot to shadowed function-expression names (#21535) (Dunqing)
  • 065ce47 isolated_declarations: Collect types from private accessors for paired inference (#21516) (Dunqing)
  • 00fc136 codegen: Preserve coverage comments before object properties (#21312) (bab)
  • d676e0c minifier: Mark LHS of ??= as read when converting from == null && (#21546) (Gunnlaugur Thor Briem)

⚑ Performance

  • e45efc5 parser: Reduce try_parse usage in favour of lookahead (#21532) (Boshen)
  • ddb1bf8 parser: Avoid redundant IdentifierReference clone in shorthand property (#21511) (Boshen)
  • be2b392 allocator: Store pointers directly in Arena (#21483) (overlookmotel)

oxc crates_v0.126.0

πŸ’₯ BREAKING CHANGES

  • 24fb7eb allocator: [BREAKING] Rename Box and Vec methods (#21395) (overlookmotel)

πŸš€ Features

  • ce5072d parser: Support turbopack magic comments (#20803) (Kane Wang)
  • f5deb55 napi/transform: Expose optimizeConstEnums and optimizeEnums options (#21388) (Dunqing)
  • 24b03de data_structures: Introduce NonNullConst and NonNullMut pointer types (#21425) (overlookmotel)

πŸ› Bug Fixes

  • d7a359a ecmascript: Treat update expressions as unconditionally side-effectful (#21456) (Dunqing)
  • 56af2f4 transformer/async-to-generator: Correct scope of inferred named FE in async-to-generator (#21458) (Dunqing)
  • b3ed467 minifier: Avoid illegal var; when folding unused arguments copy loop (#21421) (fazba)
  • b0e8f13 minifier: Preserve var inside catch with same-named parameter (#21366) (Dunqing)
  • 4fb73a7 transformer/typescript: Preserve execution order for accessor with useDefineForClassFields: false (#21369) (Dunqing)

⚑ Performance

  • c22cba6 allocator: Simplify pointer calculation when creating Arena chunks (#21475) (overlookmotel)
  • da3cc16 parser: Refactor out LexerContext (#21275) (Ulrich Stark)

πŸ“š Documentation

  • c5b19bb allocator: Reformat comments in Arena (#21448) (overlookmotel)
  • 091e88e lexer: Update doc comment about perf benefit of reading through references (#21423) (overlookmotel)
  • 922cbee allocator: Remove references to "bump" from comments (#21397) (overlookmotel)

... (truncated)

Commits
  • 161d6b5 release(crates): oxc v0.127.0 (#21572)
  • b87a390 refactor(linter/no-useless-assignment): simplify tracking state (#21584)
  • ba5f50f chore(deps): update napi (#21467)
  • 96ede2c fix(linter/no-useless-assignment): preserve conditional self-reads (#21582)
  • fe23965 feat(linter/release): automate oxlint rule version updates (#21392)
  • f4d30d8 chore(deps): update rust crates (#21554)
  • 38d8090 feat(linter/jest): Implemented jest version settings in config file. (#21522)
  • 1e69b91 fix(linter/no-useless-assignment): improve diagnostic spans (#21581)
  • f272594 fix(linter/plugins): align RuleMeta.replacedBy type with ESLint (#21544)
  • 510e344 fix(minifier): drop this after unconditional super() in derived construct...
  • Additional commits viewable in compare view

Updates oxc_span from 0.122.0 to 0.127.0

Release notes

Sourced from oxc_span's releases.

oxc crates_v0.127.0

πŸ› Bug Fixes

  • 510e344 minifier: Drop this after unconditional super() in derived constructors (#21571) (Dunqing)
  • 67d40f8 parser: Set pure comment index after dedup check to handle lookahead/rewind (#21570) (Dunqing)
  • 9eea064 minifier: Treat this outside constructor as side-effect free (#21568) (Dunqing)
  • 385eb94 minifier: Preserve annotation comments when inlining single-use variables during DCE (#21567) (Dunqing)
  • 48967e8 isolated_declarations: Drop required type check for private parameter properties on private constructors (#21515) (Dunqing)
  • 91e5bde transformer/typescript: Preserve computed-key static block when class has an empty constructor (#21562) (Dunqing)
  • 50e9d26 mangler: Assign correct slot to shadowed function-expression names (#21535) (Dunqing)
  • 065ce47 isolated_declarations: Collect types from private accessors for paired inference (#21516) (Dunqing)
  • 00fc136 codegen: Preserve coverage comments before object properties (#21312) (bab)
  • d676e0c minifier: Mark LHS of ??= as read when converting from == null && (#21546) (Gunnlaugur Thor Briem)

⚑ Performance

  • e45efc5 parser: Reduce try_parse usage in favour of lookahead (#21532) (Boshen)
  • ddb1bf8 parser: Avoid redundant IdentifierReference clone in shorthand property (#21511) (Boshen)
  • be2b392 allocator: Store pointers directly in Arena (#21483) (overlookmotel)

oxc crates_v0.126.0

πŸ’₯ BREAKING CHANGES

  • 24fb7eb allocator: [BREAKING] Rename Box and Vec methods (#21395) (overlookmotel)

πŸš€ Features

  • ce5072d parser: Support turbopack magic comments (#20803) (Kane Wang)
  • f5deb55 napi/transform: Expose optimizeConstEnums and optimizeEnums options (#21388) (Dunqing)
  • 24b03de data_structures: Introduce NonNullConst and NonNullMut pointer types (#21425) (overlookmotel)

πŸ› Bug Fixes

  • d7a359a ecmascript: Treat update expressions as unconditionally side-effectful (#21456) (Dunqing)
  • 56af2f4 transformer/async-to-generator: Correct scope of inferred named FE in async-to-generator (#21458) (Dunqing)
  • b3ed467 minifier: Avoid illegal var; when folding unused arguments copy loop (#21421) (fazba)
  • b0e8f13 minifier: Preserve var inside catch with same-named parameter (#21366) (Dunqing)
  • 4fb73a7 transformer/typescript: Preserve execution order for accessor with useDefineForClassFields: false (#21369) (Dunqing)

⚑ Performance

  • c22cba6 allocator: Simplify pointer calculation when creating Arena chunks (#21475) (overlookmotel)
  • da3cc16 parser: Refactor out LexerContext (#21275) (Ulrich Stark)

πŸ“š Documentation

  • c5b19bb allocator: Reformat comments in Arena (#21448) (overlookmotel)
  • 091e88e lexer: Update doc comment about perf benefit of reading through references (#21423) (overlookmotel)
  • 922cbee allocator: Remove references to "bump" from comments (#21397) (overlookmotel)

... (truncated)

Commits
  • 161d6b5 release(crates): oxc v0.127.0 (#21572)
  • b87a390 refactor(linter/no-useless-assignment): simplify tracking state (#21584)
  • ba5f50f chore(deps): update napi (#21467)
  • 96ede2c fix(linter/no-useless-assignment): preserve conditional self-reads (#21582)
  • fe23965 feat(linter/release): automate oxlint rule version updates (#21392)
  • f4d30d8 chore(deps): update rust crates (#21554)
  • 38d8090 feat(linter/jest): Implemented jest version settings in config file. (#21522)
  • 1e69b91 fix(linter/no-useless-assignment): improve diagnostic spans (#21581)
  • f272594 fix(linter/plugins): align RuleMeta.replacedBy type with ESLint (#21544)
  • 510e344 fix(minifier): drop this after unconditional super() in derived construct...
  • Additional commits viewable in compare view

Updates oxc_syntax from 0.122.0 to 0.127.0

Release notes

Sourced from oxc_syntax's releases.

oxc crates_v0.127.0

πŸ› Bug Fixes

  • 510e344 minifier: Drop this after unconditional super() in derived constructors (#21571) (Dunqing)
  • 67d40f8 parser: Set pure comment index after dedup check to handle lookahead/rewind (#21570) (Dunqing)
  • 9eea064 minifier: Treat this outside constructor as side-effect free (#21568) (Dunqing)
  • 385eb94 minifier: Preserve annotation comments when inlining single-use variables during DCE (#21567) (Dunqing)
  • 48967e8 isolated_declarations: Drop required type check for private parameter properties on private constructors (#21515) (Dunqing)
  • 91e5bde transformer/typescript: Preserve computed-key static block when class has an empty constructor (#21562) (Dunqing)
  • 50e9d26 mangler: Assign correct slot to shadowed function-expression names (#21535) (Dunqing)
  • 065ce47 isolated_declarations: Collect types from private accessors for paired inference (#21516) (Dunqing)
  • 00fc136 codegen: Preserve coverage comments before object properties (#21312) (bab)
  • d676e0c minifier: Mark LHS of ??= as read when converting from == null && (#21546) (Gunnlaugur Thor Briem)

⚑ Performance

  • e45efc5 parser: Reduce try_parse usage in favour of lookahead (#21532) (Boshen)
  • ddb1bf8 parser: Avoid redundant IdentifierReference clone in shorthand property (#21511) (Boshen)
  • be2b392 allocator: Store pointers directly in Arena (#21483) (overlookmotel)

oxc crates_v0.126.0

πŸ’₯ BREAKING CHANGES

  • 24fb7eb allocator: [BREAKING] Rename Box and Vec methods (#21395) (overlookmotel)

πŸš€ Features

  • ce5072d parser: Support turbopack magic comments (#20803) (Kane Wang)
  • f5deb55 napi/transform: Expose optimizeConstEnums and optimizeEnums options (#21388) (Dunqing)
  • 24b03de data_structures: Introduce NonNullConst and NonNullMut pointer types (#21425) (overlookmotel)

πŸ› Bug Fixes

  • d7a359a ecmascript: Treat update expressions as unconditionally side-effectful (#21456) (Dunqing)
  • 56af2f4 transformer/async-to-generator: Correct scope of inferred named FE in async-to-generator (#21458) (Dunqing)
  • b3ed467 minifier: Avoid illegal var; when folding unused arguments copy loop (#21421) (fazba)
  • b0e8f13 minifier: Preserve var inside catch with same-named parameter (#21366) (Dunqing)
  • 4fb73a7 transformer/typescript: Preserve execution order for accessor with useDefineForClassFields: false (#21369) (Dunqing)

⚑ Performance

  • c22cba6 allocator: Simplify pointer calculation when creating Arena chunks (#21475) (overlookmotel)
  • da3cc16 parser: Refactor out LexerContext (#21275) (Ulrich Stark)

πŸ“š Documentation

  • c5b19bb allocator: Reformat comments in Arena (#21448) (overlookmotel)
  • 091e88e lexer: Update doc comment about perf benefit of reading through references (#21423) (overlookmotel)Description has been truncated

Bumps the oxc group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [oxc_allocator](https://github.com/oxc-project/oxc) | `0.122.0` | `0.127.0` |
| [oxc_ast](https://github.com/oxc-project/oxc) | `0.122.0` | `0.127.0` |
| [oxc_ast_visit](https://github.com/oxc-project/oxc) | `0.122.0` | `0.127.0` |
| [oxc_parser](https://github.com/oxc-project/oxc) | `0.122.0` | `0.127.0` |
| [oxc_semantic](https://github.com/oxc-project/oxc) | `0.122.0` | `0.127.0` |
| [oxc_codegen](https://github.com/oxc-project/oxc) | `0.122.0` | `0.127.0` |
| [oxc_span](https://github.com/oxc-project/oxc) | `0.122.0` | `0.127.0` |
| [oxc_syntax](https://github.com/oxc-project/oxc) | `0.122.0` | `0.127.0` |


Updates `oxc_allocator` from 0.122.0 to 0.127.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/CHANGELOG.md)
- [Commits](oxc-project/oxc@crates_v0.122.0...crates_v0.127.0)

Updates `oxc_ast` from 0.122.0 to 0.127.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/CHANGELOG.md)
- [Commits](oxc-project/oxc@crates_v0.122.0...crates_v0.127.0)

Updates `oxc_ast_visit` from 0.122.0 to 0.127.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/CHANGELOG.md)
- [Commits](oxc-project/oxc@crates_v0.122.0...crates_v0.127.0)

Updates `oxc_parser` from 0.122.0 to 0.127.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/CHANGELOG.md)
- [Commits](oxc-project/oxc@crates_v0.122.0...crates_v0.127.0)

Updates `oxc_semantic` from 0.122.0 to 0.127.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/CHANGELOG.md)
- [Commits](oxc-project/oxc@crates_v0.122.0...crates_v0.127.0)

Updates `oxc_codegen` from 0.122.0 to 0.127.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/CHANGELOG.md)
- [Commits](oxc-project/oxc@crates_v0.122.0...crates_v0.127.0)

Updates `oxc_span` from 0.122.0 to 0.127.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/CHANGELOG.md)
- [Commits](oxc-project/oxc@crates_v0.122.0...crates_v0.127.0)

Updates `oxc_syntax` from 0.122.0 to 0.127.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/CHANGELOG.md)
- [Commits](oxc-project/oxc@crates_v0.122.0...crates_v0.127.0)

---
updated-dependencies:
- dependency-name: oxc_allocator
  dependency-version: 0.127.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: oxc
- dependency-name: oxc_ast
  dependency-version: 0.127.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: oxc
- dependency-name: oxc_ast_visit
  dependency-version: 0.127.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: oxc
- dependency-name: oxc_parser
  dependency-version: 0.127.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: oxc
- dependency-name: oxc_semantic
  dependency-version: 0.127.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: oxc
- dependency-name: oxc_codegen
  dependency-version: 0.127.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: oxc
- dependency-name: oxc_span
  dependency-version: 0.127.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: oxc
- dependency-name: oxc_syntax
  dependency-version: 0.127.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: oxc
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Apr 25, 2026
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 rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants