Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 7, 2026

Bumps the minor group with 4 updates in the / directory: oxfmt, oxlint, wrangler and @fastly/compute-js-static-publish.

Updates oxfmt from 0.21.0 to 0.23.0

Changelog

Sourced from oxfmt's changelog.

Changelog

All notable changes to this package will be documented in this file.

The format is based on Keep a Changelog.

[0.22.0] - 2026-01-05

💥 BREAKING CHANGES

  • f7da875 oxlint: [BREAKING] Remove oxc_language_server binary (#17457) (Boshen)

🚀 Features

  • 8fd4ea9 oxfmt: options.embeddedLanguageFormatting is now "auto" by default (#17649) (leaysgur)
Commits
  • f3767ea release(apps): oxlint v1.38.0 && oxfmt v0.23.0 (#17709)
  • 186a347 release(apps): oxlint v1.37.0 && oxfmt v0.22.0 (#17662)
  • 26ed46b feat(formatter): add TailwindCSS support for JS/TS files (#16990)
  • 8fd4ea9 feat(oxfmt): options.embeddedLanguageFormatting is now "auto" by default ...
  • f7da875 feat(oxlint)!: remove oxc_language_server binary (#17457)
  • See full diff in compare view

Updates oxlint from 1.36.0 to 1.38.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 wrangler from 4.56.0 to 4.57.0

Release notes

Sourced from wrangler's releases.

wrangler@4.57.0

Minor Changes

  • #11682 b993d95 Thanks @​ascorbic! - Add wrangler auth token command to retrieve your current authentication credentials.

    You can now retrieve your authentication token for use with other tools and scripts:

    wrangler auth token

    The command returns whichever authentication method is currently configured:

    • OAuth token from wrangler login (automatically refreshed if expired)
    • API token from CLOUDFLARE_API_TOKEN environment variable

    Use --json to get structured output including the token type, which also supports API key/email authentication:

    wrangler auth token --json

    This is similar to gh auth token in the GitHub CLI.

  • #11702 f612b46 Thanks @​gpanders! - Add support for trusted_user_ca_keys in Wrangler

    You can now configure SSH trusted user CA keys for containers. Add the following to your wrangler.toml:

    [[containers.trusted_user_ca_keys]]
    public_key = "ssh-ed25519 AAAAC3..."

    This allows you to specify CA public keys that can be used to verify SSH user certificates.

  • #11437 9e360f6 Thanks @​ichernetsky-cf! - Drop deprecated containers observability.logging field

  • #11616 fc95831 Thanks @​NuroDev! - Add type generation support to wrangler dev

    You can now have your worker configuration types be automatically generated when the local Wrangler development server starts.

    To use it you can either:

    1. Add the --types flag when running wrangler dev.
    2. Update your Wrangler configuration file to add the new dev.generate_types boolean property.
    {
    	"$schema": "node_modules/wrangler/config-schema.json",
    	"name": "example",

... (truncated)

Commits
  • f978609 Version Packages (#11700)
  • b6d8eab Update telemetry docs with change in #11777 (#11811)
  • 2510723 Restrict the wrangler deploy delegation to opennextjs-cloudflare deploy o...
  • 9f6dd71 fix(wrangler): fix r2 data catalog snapshot expiration api call payload (#11764)
  • a7e9f80 feat(unenv-preset): add support for native node:inspector/promises module (#1...
  • 69979a3 [wrangler] Add analytics properties to secret commands (#11777)
  • be5ef57 refactor: consistenly import expect from vitest (#11795)
  • 554a4df chore(deps): bump the workerd-and-workers-types group with 2 updates (#11791)
  • 9e360f6 CC-5749 Drop deprecated containers observability.logging field (#11437)
  • 42b2216 Reduce node_modules size (#11464)
  • Additional commits viewable in compare view

Updates @fastly/compute-js-static-publish from 7.0.3 to 7.0.4

Changelog

Sourced from @​fastly/compute-js-static-publish's changelog.

[7.0.4] - 2026-01-07

Added

  • Publish to GitHub packages as well
  • Use NPM trusted publishing for publishing to npmjs.com
Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​fastly/compute-js-static-publish since your current version.


Updates @cloudflare/unenv-preset from 2.7.13 to 2.8.0

Release notes

Sourced from @​cloudflare/unenv-preset's releases.

@​cloudflare/unenv-preset@​2.8.0

Minor Changes

  • #11733 62fd118 Thanks @​petebacondarwin! - Add support for native node:inspector module when the enable_nodejs_inspector_module compatibility flag is enabled. This feature is currently experimental and requires both the enable_nodejs_inspector_module and experimental compatibility flags to be set.

    To enable the native inspector module, add the following to your wrangler.jsonc:

    {
    	"compatibility_flags": ["experimental", "enable_nodejs_inspector_module"],
    }

    Then you can import and use the inspector module in your Worker:

    import inspector from "node:inspector";
    // Access inspector APIs (note: workerd's implementation is a non-functional stub)
    inspector.url(); // returns undefined
    inspector.close(); // no-op

  • #11744 a7e9f80 Thanks @​petebacondarwin! - Add support for native node:inspector/promises module when the enable_nodejs_inspector_module compatibility flag is enabled. This extends the existing node:inspector support to include the promises-based API.

    To enable the native inspector/promises module, add the following to your wrangler.jsonc:

    {
    	"compatibility_flags": ["experimental", "enable_nodejs_inspector_module"],
    }

    Then you can import and use the inspector/promises module in your Worker:

    import inspector from "node:inspector/promises";
    // Access inspector APIs (note: workerd's implementation is a non-functional stub)
    inspector.url(); // returns undefined
    inspector.close(); // no-op

Changelog

Sourced from @​cloudflare/unenv-preset's changelog.

2.8.0

Minor Changes

  • #11733 62fd118 Thanks @​petebacondarwin! - Add support for native node:inspector module when the enable_nodejs_inspector_module compatibility flag is enabled. This feature is currently experimental and requires both the enable_nodejs_inspector_module and experimental compatibility flags to be set.

    To enable the native inspector module, add the following to your wrangler.jsonc:

    {
    	"compatibility_flags": ["experimental", "enable_nodejs_inspector_module"],
    }

    Then you can import and use the inspector module in your Worker:

    import inspector from "node:inspector";
    // Access inspector APIs (note: workerd's implementation is a non-functional stub)
    inspector.url(); // returns undefined
    inspector.close(); // no-op

  • #11744 a7e9f80 Thanks @​petebacondarwin! - Add support for native node:inspector/promises module when the enable_nodejs_inspector_module compatibility flag is enabled. This extends the existing node:inspector support to include the promises-based API.

    To enable the native inspector/promises module, add the following to your wrangler.jsonc:

    {
    	"compatibility_flags": ["experimental", "enable_nodejs_inspector_module"],
    }

    Then you can import and use the inspector/promises module in your Worker:

    import inspector from "node:inspector/promises";
    // Access inspector APIs (note: workerd's implementation is a non-functional stub)
    inspector.url(); // returns undefined
    inspector.close(); // no-op

Commits
  • f978609 Version Packages (#11700)
  • a7e9f80 feat(unenv-preset): add support for native node:inspector/promises module (#1...
  • 62fd118 feat(unenv-preset): add support for native node:inspector module (#11733)
  • See full diff in compare view

Updates @cloudflare/workerd-darwin-64 from 1.20251217.0 to 1.20260103.0

Release notes

Sourced from @​cloudflare/workerd-darwin-64's releases.

v1.20260103.0

What's Changed

Full Changelog: cloudflare/workerd@v1.20260102.0...v1.20260103.0

v1.20260102.0

What's Changed

Full Changelog: cloudflare/workerd@v1.20260101.0...v1.20260102.0

v1.20260101.0

What's Changed

Full Changelog: cloudflare/workerd@v1.20251231.0...v1.20260101.0

v1.20251231.0

What's Changed

Full Changelog: cloudflare/workerd@v1.20251230.0...v1.20251231.0

v1.20251230.0

What's Changed

... (truncated)

Commits
  • de01549 Release 2026-01-03
  • 789a1ac Revert "update bazel registry to a mirror"
  • da42802 Cleanup resolve/pop order to streams queue read requests
  • 2d031fc port more streams tests from internal repo (#5817)
  • f763d9f Updating queue to use state machine impl
  • 423fe54 Fixup pipe state abort handling
  • dcd0151 Preparing for using state-machine.h in streams impl
  • e68685d Remove errant commented-out line in compression.c++
  • 50b1501 Cleanup some of the new state machine uses in new streams adapters
  • 98e308b Merge pull request #5709 from cloudflare/mar/stw-span-without-request
  • Additional commits viewable in compare view

Updates @cloudflare/workerd-darwin-arm64 from 1.20251217.0 to 1.20260103.0

Release notes

Sourced from @​cloudflare/workerd-darwin-arm64's releases.

v1.20260103.0

What's Changed

Full Changelog: cloudflare/workerd@v1.20260102.0...v1.20260103.0

v1.20260102.0

What's Changed

Full Changelog: cloudflare/workerd@v1.20260101.0...v1.20260102.0

v1.20260101.0

What's Changed

Full Changelog: cloudflare/workerd@v1.20251231.0...v1.20260101.0

v1.20251231.0

What's Changed

Full Changelog: cloudflare/workerd@v1.20251230.0...v1.20251231.0

v1.20251230.0

What's Changed

... (truncated)

Commits
  • de01549 Release 2026-01-03
  • 789a1ac Revert "update bazel registry to a mirror"
  • da42802 Cleanup resolve/pop order to streams queue read requests
  • 2d031fc port more streams tests from internal repo (#5817)
  • f763d9f Updating queue to use state machine impl
  • 423fe54 Fixup pipe state abort handling
  • dcd0151 Preparing for using state-machine.h in streams impl
  • e68685d Remove errant commented-out line in compression.c++
  • 50b1501 Cleanup some of the new state machine uses in new streams adapters
  • 98e308b Merge pull request #5709 from cloudflare/mar/stw-span-without-request
  • Additional commits viewable in compare view

Updates @cloudflare/workerd-linux-64 from 1.20251217.0 to 1.20260103.0

Release notes

Sourced from @​cloudflare/workerd-linux-64's releases.

v1.20260103.0

What's Changed

Full Changelog: cloudflare/workerd@v1.20260102.0...v1.20260103.0

v1.20260102.0

What's Changed

Full Changelog: cloudflare/workerd@v1.20260101.0...v1.20260102.0

v1.20260101.0

What's Changed

Full Changelog: cloudflare/workerd@v1.20251231.0...v1.20260101.0

v1.20251231.0

What's Changed

Full Changelog: cloudflare/workerd@v1.20251230.0...v1.20251231.0

v1.20251230.0

What's Changed

... (truncated)

Commits
  • de01549 Release 2026-01-03
  • 789a1ac Revert "update bazel registry to a mirror"
  • da42802 Cleanup resolve/pop order to streams queue read requests
  • 2d031fc port more streams tests from internal repo (#5817)
  • f763d9f Updating queue to use state machine impl
  • 423fe54 Fixup pipe state abort handling
  • dcd0151 Preparing for using state-machine.h in streams impl
  • e68685d Remove errant commented-out line in compression.c++
  • 50b1501 Cleanup some of the new state machine uses in new streams adapters
  • 98e308b Merge pull request #5709 from cloudflare/mar/stw-span-without-request
  • Additional commits viewable in compare view

Updates @cloudflare/workerd-linux-arm64 from 1.20251217.0 to 1.20260103.0

Release notes

Sourced from @​cloudflare/workerd-linux-arm64's releases.

v1.20260103.0

What's Changed

Full Changelog: cloudflare/workerd@v1.20260102.0...v1.20260103.0

v1.20260102.0

What's Changed

Full Changelog: cloudflare/workerd@v1.20260101.0...v1.20260102.0

v1.20260101.0

What's Changed

Full Changelog: cloudflare/workerd@v1.20251231.0...v1.20260101.0

v1.20251231.0

What's Changed

Full Changelog: cloudflare/workerd@v1.20251230.0...v1.20251231.0

v1.20251230.0

What's Changed

... (truncated)

Commits
  • de01549 Release 2026-01-03
  • 789a1ac Revert "update bazel registry to a mirror"
  • da42802 Cleanup resolve/pop order to streams queue read requests
  • 2d031fc port more streams tests from internal repo (#5817)
  • f763d9f Updating queue to use state machine impl
  • 423fe54 Fixup pipe state abort handling
  • dcd0151 Preparing for using state-machine.h in streams impl
  • e68685d Remove errant commented-out line in compression.c++
  • 50b1501 Cleanup some of the new state machine uses in new streams adapters
  • 98e308b Merge pull request #5709 from cloudflare/mar/stw-span-without-request
  • Additional commits viewable in compare view

Updates @cloudflare/workerd-windows-64 from 1.20251217.0 to 1.20260103.0

Release notes

Sourced from @​cloudflare/workerd-windows-64's releases.

v1.20260103.0

What's Changed

Full Changelog: cloudflare/workerd@v1.20260102.0...v1.20260103.0

v1.20260102.0

What's Changed

Full Changelog: cloudflare/workerd@v1.20260101.0...v1.20260102.0

v1.20260101.0

What's Changed

Bumps the minor group with 4 updates in the / directory: [oxfmt](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxfmt), [oxlint](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxlint), [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) and [@fastly/compute-js-static-publish](https://github.com/fastly/compute-js-static-publish).


Updates `oxfmt` from 0.21.0 to 0.23.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.23.0/npm/oxfmt)

Updates `oxlint` from 1.36.0 to 1.38.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.38.0/npm/oxlint)

Updates `wrangler` from 4.56.0 to 4.57.0
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.57.0/packages/wrangler)

Updates `@fastly/compute-js-static-publish` from 7.0.3 to 7.0.4
- [Changelog](https://github.com/fastly/compute-js-static-publish/blob/main/CHANGELOG.md)
- [Commits](fastly/compute-js-static-publish@v7.0.3...v7.0.4)

Updates `@cloudflare/unenv-preset` from 2.7.13 to 2.8.0
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Changelog](https://github.com/cloudflare/workers-sdk/blob/main/packages/unenv-preset/CHANGELOG.md)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/@cloudflare/unenv-preset@2.8.0/packages/unenv-preset)

Updates `@cloudflare/workerd-darwin-64` from 1.20251217.0 to 1.20260103.0
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
- [Commits](cloudflare/workerd@v1.20251217.0...v1.20260103.0)

Updates `@cloudflare/workerd-darwin-arm64` from 1.20251217.0 to 1.20260103.0
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
- [Commits](cloudflare/workerd@v1.20251217.0...v1.20260103.0)

Updates `@cloudflare/workerd-linux-64` from 1.20251217.0 to 1.20260103.0
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
- [Commits](cloudflare/workerd@v1.20251217.0...v1.20260103.0)

Updates `@cloudflare/workerd-linux-arm64` from 1.20251217.0 to 1.20260103.0
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
- [Commits](cloudflare/workerd@v1.20251217.0...v1.20260103.0)

Updates `@cloudflare/workerd-windows-64` from 1.20251217.0 to 1.20260103.0
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
- [Commits](cloudflare/workerd@v1.20251217.0...v1.20260103.0)

Updates `@oxfmt/darwin-arm64` from 0.21.0 to 0.23.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.23.0/npm/oxfmt)

Updates `@oxfmt/darwin-x64` from 0.21.0 to 0.23.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.23.0/npm/oxfmt)

Updates `@oxfmt/linux-arm64-gnu` from 0.21.0 to 0.23.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.23.0/npm/oxfmt)

Updates `@oxfmt/linux-arm64-musl` from 0.21.0 to 0.23.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.23.0/npm/oxfmt)

Updates `@oxfmt/linux-x64-gnu` from 0.21.0 to 0.23.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.23.0/npm/oxfmt)

Updates `@oxfmt/linux-x64-musl` from 0.21.0 to 0.23.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.23.0/npm/oxfmt)

Updates `@oxfmt/win32-arm64` from 0.21.0 to 0.23.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.23.0/npm/oxfmt)

Updates `@oxfmt/win32-x64` from 0.21.0 to 0.23.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.23.0/npm/oxfmt)

Updates `@oxlint/darwin-arm64` from 1.36.0 to 1.38.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/apps_v1.38.0/npm/oxlint)

Updates `@oxlint/darwin-x64` from 1.36.0 to 1.38.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/apps_v1.38.0/npm/oxlint)

Updates `@oxlint/linux-arm64-gnu` from 1.36.0 to 1.38.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/apps_v1.38.0/npm/oxlint)

Updates `@oxlint/linux-arm64-musl` from 1.36.0 to 1.38.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/apps_v1.38.0/npm/oxlint)

Updates `@oxlint/linux-x64-gnu` from 1.36.0 to 1.38.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/apps_v1.38.0/npm/oxlint)

Updates `@oxlint/linux-x64-musl` from 1.36.0 to 1.38.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/apps_v1.38.0/npm/oxlint)

Updates `@oxlint/win32-arm64` from 1.36.0 to 1.38.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/apps_v1.38.0/npm/oxlint)

Updates `@oxlint/win32-x64` from 1.36.0 to 1.38.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/apps_v1.38.0/npm/oxlint)

Updates `@sindresorhus/is` from 7.1.1 to 7.2.0
- [Release notes](https://github.com/sindresorhus/is/releases)
- [Commits](sindresorhus/is@v7.1.1...v7.2.0)

Updates `@speed-highlight/core` from 1.2.12 to 1.2.14
- [Release notes](https://github.com/speed-highlight/core/releases)
- [Commits](speed-highlight/core@v1.2.12...v1.2.14)

Updates `miniflare` from 4.20251217.0 to 4.20260103.0
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Changelog](https://github.com/cloudflare/workers-sdk/blob/main/packages/miniflare/CHANGELOG.md)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/miniflare@4.20260103.0/packages/miniflare)

Updates `workerd` from 1.20251217.0 to 1.20260103.0
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
- [Commits](cloudflare/workerd@v1.20251217.0...v1.20260103.0)

Updates `zod` from 3.22.3 to 3.25.76
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v3.22.3...v3.25.76)

---
updated-dependencies:
- dependency-name: oxfmt
  dependency-version: 0.23.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: oxlint
  dependency-version: 1.38.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: wrangler
  dependency-version: 4.57.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@fastly/compute-js-static-publish"
  dependency-version: 7.0.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@cloudflare/unenv-preset"
  dependency-version: 2.8.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@cloudflare/workerd-darwin-64"
  dependency-version: 1.20260103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@cloudflare/workerd-darwin-arm64"
  dependency-version: 1.20260103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@cloudflare/workerd-linux-64"
  dependency-version: 1.20260103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@cloudflare/workerd-linux-arm64"
  dependency-version: 1.20260103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@cloudflare/workerd-windows-64"
  dependency-version: 1.20260103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@oxfmt/darwin-arm64"
  dependency-version: 0.23.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@oxfmt/darwin-x64"
  dependency-version: 0.23.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@oxfmt/linux-arm64-gnu"
  dependency-version: 0.23.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@oxfmt/linux-arm64-musl"
  dependency-version: 0.23.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@oxfmt/linux-x64-gnu"
  dependency-version: 0.23.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@oxfmt/linux-x64-musl"
  dependency-version: 0.23.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@oxfmt/win32-arm64"
  dependency-version: 0.23.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@oxfmt/win32-x64"
  dependency-version: 0.23.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@oxlint/darwin-arm64"
  dependency-version: 1.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@oxlint/darwin-x64"
  dependency-version: 1.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@oxlint/linux-arm64-gnu"
  dependency-version: 1.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@oxlint/linux-arm64-musl"
  dependency-version: 1.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@oxlint/linux-x64-gnu"
  dependency-version: 1.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@oxlint/linux-x64-musl"
  dependency-version: 1.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@oxlint/win32-arm64"
  dependency-version: 1.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@oxlint/win32-x64"
  dependency-version: 1.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@sindresorhus/is"
  dependency-version: 7.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@speed-highlight/core"
  dependency-version: 1.2.14
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: miniflare
  dependency-version: 4.20260103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: workerd
  dependency-version: 1.20260103.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: zod
  dependency-version: 3.25.76
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
...

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 Jan 7, 2026
@github-actions github-actions bot merged commit d3fe753 into main Jan 7, 2026
1 check passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-2715fcead1 branch January 7, 2026 16:17
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