Skip to content

Version Packages#11836

Merged
emily-shen merged 1 commit intomainfrom
changeset-release/main
Jan 13, 2026
Merged

Version Packages#11836
emily-shen merged 1 commit intomainfrom
changeset-release/main

Conversation

@workers-devprod
Copy link
Copy Markdown
Contributor

@workers-devprod workers-devprod commented Jan 8, 2026

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@cloudflare/unenv-preset@2.9.0

Minor Changes

  • #11841 beb96af Thanks @vicb! - Add support for native node:sqlite module when the enable_nodejs_sqlite_module compatibility flag is enabled. This feature is currently experimental and requires nodejs_compat, experimental, and enable_nodejs_sqlite_module compatibility flags to be set.

  • #11834 5c59217 Thanks @vicb! - Export the list of built-in node modules that are available without the node: prefix.
    Modules that are only available with the node: prefix are not included (i.e. node:sqlite).
    Note that new modules will be added with the node: prefix only and not be added to the list.

Patch Changes

  • #11834 5c59217 Thanks @vicb! - fix handling of Node builtin modules

    The list of builtin modules should not depend on the version of Node.
    Switch to using the lists published by @cloudflare/unenv-preset.

    This fixes an issue with trying to import i.e. node:sqlite with Node < 22.5.0
    which does not implement this module.

@cloudflare/workers-utils@0.7.0

Minor Changes

  • #11755 0f8d69d Thanks @nikitassharma! - Users can now specify constraints.tiers for their container applications. tier is deprecated in favor of tiers.
    If left unset, we will default to tiers: [1, 2].
    Note that constraints is an experimental feature.

wrangler@4.59.0

Minor Changes

  • #11852 ad65efa Thanks @NuroDev! - Add --check flag to wrangler types command

    The new --check flag allows you to verify that your generated types file is up-to-date without regenerating it. This is useful for CI/CD pipelines, pre-commit hooks, or any scenario where you want to ensure types have been committed after configuration changes.

    When types are up-to-date, the command exits with code 0:

    $ wrangler types --check
    ✨ Types at worker-configuration.d.ts are up to date.

    When types are out-of-date, the command exits with code 1:

    $ wrangler types --check
    ✘ [ERROR] Types at worker-configuration.d.ts are out of date. Run `wrangler types` to regenerate.

    You can also use it with a custom output path:

    $ wrangler types ./custom-types.d.ts --check
  • #11529 43d5363 Thanks @matthewdavidrodgers! - Add ability to enable higher asset count limits for Pages deployments

    Wrangler can now read asset count limits from JWT claims during Pages deployments,
    allowing users to be enabled for higher limits (up to 100,000 assets) on a per-account
    basis. The default limit remains at 20,000 assets.

  • #11755 0f8d69d Thanks @nikitassharma! - Users can now specify constraints.tiers for their container applications. tier is deprecated in favor of tiers.
    If left unset, we will default to tiers: [1, 2].
    Note that constraints is an experimental feature.

Patch Changes

  • #11820 b0e54b2 Thanks @MattieTK! - Add AI agent detection to analytics events

    Wrangler now detects when commands are executed by AI coding agents (such as Claude Code, Cursor, GitHub Copilot, etc.) using the am-i-vibing library. This information is included as an agent property in all analytics events, helping Cloudflare understand how developers interact with Wrangler through AI assistants.

    The agent property will contain the agent ID (e.g., "claude-code", "cursor-agent") when detected, or null when running outside an agentic environment.

  • #11494 ed60c4f Thanks @jalmonter! - Fix scheduled trigger warning showing undefined port

    When running wrangler dev with a worker that has cron triggers, the warning message displayed an invalid URL like curl "http://localhost:undefined/cdn-cgi/handler/scheduled" because the port wasn't yet determined when the warning was logged.

    Moved the warning to after the proxy server is fully ready, where the actual public URL and port are known.

  • #11831 faa5753 Thanks @dependabot! - chore: update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20260107.1 1.20260108.0
  • #11844 e574ef3 Thanks @dependabot! - chore: update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20260108.0 1.20260109.0
  • #11872 b6148ed Thanks @dependabot! - chore: update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20260109.0 1.20260111.0
  • #11843 ab3859c Thanks @dario-piotrowicz! - Update the Wrangler autoconfig logic to work with the latest version of Waku

    The latest version of Waku (0.12.5-1.0.0-alpha.1-0) requires a src/waku.server.tsx file instead of a src/server-entry.tsx one, so the Wrangler autoconfig logic (the logic being run as part of wrangler setup and wrangler deploy --x-autoconfig that configures a project to be deployable on Cloudflare) has been updated accordingly.

    Also the way the worker needs to handle static assets has been updated as recommended from the Waku team.

  • #11848 0eb973d Thanks @petebacondarwin! - Fix incorrect warning about multiple environments when using redirected config

    Previously, when using a redirected config (via configPath in another config file) that originated from a config with multiple environments, wrangler would incorrectly warn about missing environment specification. This fix ensures the warning is only shown when the actual config being used has multiple environments defined, not when the original config did.

  • Updated dependencies [ed60c4f, 5c59217, faa5753, e574ef3, b6148ed, beb96af, 5c59217, fc96e5f]:

    • miniflare@4.20260111.0
    • @cloudflare/unenv-preset@2.9.0

create-cloudflare@2.62.2

Patch Changes

  • #11541 707dee0 Thanks @dependabot! - chore: update dependencies of "create-cloudflare"

    The following dependency versions have been updated:

    Dependency From To
    create-vike 0.0.528 0.0.558
  • #11843 ab3859c Thanks @dario-piotrowicz! - chore: update dependencies of "create-cloudflare"

    The following dependency versions have been updated:

    Dependency From To
    create-waku 0.12.5-0.27.1-0 0.12.5-1.0.0-alpha.1-0
  • #11866 fe3e955 Thanks @dependabot! - chore: update dependencies of "create-cloudflare"

    The following dependency versions have been updated:

    Dependency From To
    create-vue 3.18.3 3.18.5
  • #11541 707dee0 Thanks @dependabot! - Update vike template to add cf-typegen script

miniflare@4.20260111.0

Patch Changes

  • #11494 ed60c4f Thanks @jalmonter! - Fix scheduled trigger warning showing undefined port

    When running wrangler dev with a worker that has cron triggers, the warning message displayed an invalid URL like curl "http://localhost:undefined/cdn-cgi/handler/scheduled" because the port wasn't yet determined when the warning was logged.

    Moved the warning to after the proxy server is fully ready, where the actual public URL and port are known.

  • #11831 faa5753 Thanks @dependabot! - chore: update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20260107.1 1.20260108.0
  • #11844 e574ef3 Thanks @dependabot! - chore: update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20260108.0 1.20260109.0
  • #11872 b6148ed Thanks @dependabot! - chore: update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20260109.0 1.20260111.0
  • #11816 fc96e5f Thanks @dario-piotrowicz! - Bump sharp dependency (from 0.33.5 to 0.34.5)

@cloudflare/pages-shared@0.13.98

Patch Changes

@cloudflare/vite-plugin@1.20.2

Patch Changes

  • #11834 5c59217 Thanks @vicb! - fix handling of Node builtin modules

    The list of builtin modules should not depend on the version of Node.
    Switch to using the lists published by @cloudflare/unenv-preset.

    This fixes an issue with trying to import i.e. node:sqlite with Node < 22.5.0
    which does not implement this module.

  • #11838 88a9e20 Thanks @jamesopstad! - Set build.rolldownOptions.resolve.extensions for compatibility with Vite 8 beta.

  • #11847 46e09a6 Thanks @jamesopstad! - Apply vite-plugin-cloudflare:nodejs-compat-warnings plugin only to relevant environments.

    This is an optimisation so that it doesn't run for the client environment or Worker environments that have the nodejs_compat compatibility flag enabled.

  • Updated dependencies [b0e54b2, ed60c4f, 5c59217, faa5753, e574ef3, b6148ed, beb96af, 5c59217, ab3859c, 0eb973d, ad65efa, fc96e5f, 43d5363, 0f8d69d]:

    • wrangler@4.59.0
    • miniflare@4.20260111.0
    • @cloudflare/unenv-preset@2.9.0

@cloudflare/vitest-pool-workers@0.12.2

Patch Changes

@cloudflare/containers-shared@0.8.0

Minor Changes

  • #11755 0f8d69d Thanks @nikitassharma! - Users can now specify constraints.tiers for their container applications. tier is deprecated in favor of tiers.
    If left unset, we will default to tiers: [1, 2].
    Note that constraints is an experimental feature.

@workers-devprod workers-devprod requested review from a team as code owners January 8, 2026 12:29
@claude
Copy link
Copy Markdown
Contributor

claude bot commented Jan 8, 2026

Claude finished @workers-devprod's task —— View job


Changeset Review

Tasks

  • Read changeset guidelines
  • Review all 8 changeset files
  • Validate version types
  • Check changelog quality
  • Check for markdown header issues
  • Provide final assessment

Result

All changesets look good

Reviewed 8 changesets:

  • Version types: All correct (no forbidden major versions for wrangler)
  • Markdown formatting: No h1/h2/h3 headers that would break changelog formatting
  • Changelog quality: All descriptions are meaningful and follow guidelines

@pkg-pr-new
Copy link
Copy Markdown

pkg-pr-new bot commented Jan 8, 2026

create-cloudflare

npm i https://pkg.pr.new/create-cloudflare@11836

@cloudflare/kv-asset-handler

npm i https://pkg.pr.new/@cloudflare/kv-asset-handler@11836

miniflare

npm i https://pkg.pr.new/miniflare@11836

@cloudflare/pages-shared

npm i https://pkg.pr.new/@cloudflare/pages-shared@11836

@cloudflare/unenv-preset

npm i https://pkg.pr.new/@cloudflare/unenv-preset@11836

@cloudflare/vite-plugin

npm i https://pkg.pr.new/@cloudflare/vite-plugin@11836

@cloudflare/vitest-pool-workers

npm i https://pkg.pr.new/@cloudflare/vitest-pool-workers@11836

@cloudflare/workers-editor-shared

npm i https://pkg.pr.new/@cloudflare/workers-editor-shared@11836

@cloudflare/workers-utils

npm i https://pkg.pr.new/@cloudflare/workers-utils@11836

wrangler

npm i https://pkg.pr.new/wrangler@11836

commit: 0599715

@workers-devprod workers-devprod force-pushed the changeset-release/main branch 24 times, most recently from 183d6cd to b9c06b7 Compare January 12, 2026 19:55
@emily-shen emily-shen merged commit e98c95a into main Jan 13, 2026
47 of 49 checks passed
@emily-shen emily-shen deleted the changeset-release/main branch January 13, 2026 12:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants