Skip to content

Version Packages#14628

Merged
penalosa merged 1 commit into
mainfrom
changeset-release/main
Jul 9, 2026
Merged

Version Packages#14628
penalosa merged 1 commit into
mainfrom
changeset-release/main

Conversation

@workers-devprod

@workers-devprod workers-devprod commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

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/deploy-helpers@0.4.0

Minor Changes

  • #14591 0283a1f Thanks @dario-piotrowicz! - Export collectPackageDependencies for npm dependency metadata collection

    The package dependency discovery logic (collecting installed npm package names and versions from a project's package.json) is now owned by deploy-helpers and called internally during deploy and version uploads, rather than being pre-computed in wrangler and passed through as a prop.

Patch Changes

  • Updated dependencies [0283a1f, 1b965c5]:
    • @cloudflare/workers-utils@0.26.0
    • miniflare@4.20260708.1
    • @cloudflare/cli-shared-helpers@0.1.13

miniflare@4.20260708.1

Minor Changes

  • #14535 1b965c5 Thanks @Naapperas! - Support dynamic retry delays for Workflow steps in local dev

    A step's retries.delay can now be a function that computes the delay per failed attempt, in addition to a static duration. The function receives { ctx, error } and returns a delay (a number of milliseconds or a duration string like "30 seconds"), and its result is fed into the configured backoff.

    await step.do(
      "call flaky API",
      {
        retries: {
          limit: 5,
          backoff: "constant",
          delay: ({ ctx }) => ctx.attempt * 1000,
        },
      },
      async () => {
        /* ... */
      }
    );

    The function is invoked once per failed attempt with a 5 second timeout. If it throws, times out, or returns an invalid value, the step fails without further retries.

@cloudflare/vite-plugin@1.44.0

Minor Changes

  • #14535 1b965c5 Thanks @Naapperas! - Support dynamic retry delays for Workflow steps in local dev

    A step's retries.delay can now be a function that computes the delay per failed attempt, in addition to a static duration. The function receives { ctx, error } and returns a delay (a number of milliseconds or a duration string like "30 seconds"), and its result is fed into the configured backoff.

    await step.do(
      "call flaky API",
      {
        retries: {
          limit: 5,
          backoff: "constant",
          delay: ({ ctx }) => ctx.attempt * 1000,
        },
      },
      async () => {
        /* ... */
      }
    );

    The function is invoked once per failed attempt with a 5 second timeout. If it throws, times out, or returns an invalid value, the step fails without further retries.

Patch Changes

@cloudflare/workers-utils@0.26.0

Minor Changes

  • #14591 0283a1f Thanks @dario-piotrowicz! - Export getInstalledPackageVersion, getPackagePath, and isPackageInstalled utilities

    Package resolution helpers that were previously internal to @cloudflare/autoconfig are now exported from @cloudflare/workers-utils so they can be shared across packages without pulling in the full autoconfig dependency.

    getPackagePath now also consistently returns a directory path. Previously the fallback resolution strategy could return a file path (the package entry point) instead of its containing directory.

wrangler@4.110.0

Minor Changes

  • #14591 0283a1f Thanks @dario-piotrowicz! - Send npm package dependency metadata with worker uploads

    Wrangler now collects npm package dependency information from the project's package.json at deploy and version upload time, and includes it in the upload metadata sent to the Cloudflare API. This enables dependency analytics and future features like vulnerability alerting.

    The collected data includes the package name, the version constraint from package.json, and the exact installed version from node_modules. Both dependencies and devDependencies are included, while workspace packages, local packages, and unresolvable packages are excluded. The list is capped at 200 entries per upload.

    To opt out, set dependencies_instrumentation.enabled to false in your Wrangler configuration file:

    {
      "dependencies_instrumentation": {
        "enabled": false
      }
    }
  • #14535 1b965c5 Thanks @Naapperas! - Support dynamic retry delays for Workflow steps in local dev

    A step's retries.delay can now be a function that computes the delay per failed attempt, in addition to a static duration. The function receives { ctx, error } and returns a delay (a number of milliseconds or a duration string like "30 seconds"), and its result is fed into the configured backoff.

    await step.do(
      "call flaky API",
      {
        retries: {
          limit: 5,
          backoff: "constant",
          delay: ({ ctx }) => ctx.attempt * 1000,
        },
      },
      async () => {
        /* ... */
      }
    );

    The function is invoked once per failed attempt with a 5 second timeout. If it throws, times out, or returns an invalid value, the step fails without further retries.

Patch Changes

  • #14589 7b28392 Thanks @jamesopstad! - Fix runtime type caching when wrangler dev auto-regenerates types

    When dev.generate_types (or wrangler dev --types) regenerated an out-of-date worker-configuration.d.ts, the written file omitted the // Begin runtime types marker (and the /* eslint-disable */ header) that wrangler types writes. As a result, later runs could not detect the cached runtime types and always regenerated them. The auto-regenerated file now matches wrangler types output, restoring the cache.

  • Updated dependencies [1b965c5]:

    • miniflare@4.20260708.1

@cloudflare/autoconfig@0.1.4

Patch Changes

  • Updated dependencies [0283a1f]:
    • @cloudflare/workers-utils@0.26.0
    • @cloudflare/cli-shared-helpers@0.1.13

@cloudflare/cli-shared-helpers@0.1.13

Patch Changes

  • Updated dependencies [0283a1f]:
    • @cloudflare/workers-utils@0.26.0

@cloudflare/pages-shared@0.13.156

Patch Changes

  • Updated dependencies [1b965c5]:
    • miniflare@4.20260708.1

@cloudflare/vitest-pool-workers@0.18.4

Patch Changes

  • #14535 1b965c5 Thanks @Naapperas! - Support dynamic retry delays for Workflow steps in local dev

    A step's retries.delay can now be a function that computes the delay per failed attempt, in addition to a static duration. The function receives { ctx, error } and returns a delay (a number of milliseconds or a duration string like "30 seconds"), and its result is fed into the configured backoff.

    await step.do(
      "call flaky API",
      {
        retries: {
          limit: 5,
          backoff: "constant",
          delay: ({ ctx }) => ctx.attempt * 1000,
        },
      },
      async () => {
        /* ... */
      }
    );

    The function is invoked once per failed attempt with a 5 second timeout. If it throws, times out, or returns an invalid value, the step fails without further retries.

  • Updated dependencies [0283a1f, 7b28392, 1b965c5]:

    • wrangler@4.110.0
    • miniflare@4.20260708.1

@cloudflare/workers-auth@0.4.2

Patch Changes

  • Updated dependencies [0283a1f]:
    • @cloudflare/workers-utils@0.26.0

@cloudflare/runtime-types@0.0.1

Patch Changes

  • Updated dependencies [1b965c5]:
    • miniflare@4.20260709.0

@github-actions

github-actions Bot commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

✅ All changesets look good

@devin-ai-integration devin-ai-integration Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✅ Devin Review: No Issues Found

Devin Review analyzed this PR and found no potential bugs to report.

View in Devin Review to see 1 additional finding.

Open in Devin Review

@pkg-pr-new

pkg-pr-new Bot commented Jul 9, 2026

Copy link
Copy Markdown
@cloudflare/autoconfig

npm i https://pkg.pr.new/@cloudflare/autoconfig@14628

create-cloudflare

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

@cloudflare/deploy-helpers

npm i https://pkg.pr.new/@cloudflare/deploy-helpers@14628

@cloudflare/kv-asset-handler

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

miniflare

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

@cloudflare/pages-shared

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

@cloudflare/unenv-preset

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

@cloudflare/vite-plugin

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

@cloudflare/vitest-pool-workers

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

@cloudflare/workers-auth

npm i https://pkg.pr.new/@cloudflare/workers-auth@14628

@cloudflare/workers-editor-shared

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

@cloudflare/workers-utils

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

wrangler

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

commit: 1be2d78

@workers-devprod workers-devprod force-pushed the changeset-release/main branch from 6da59ed to ee21c3e Compare July 9, 2026 16:14

@devin-ai-integration devin-ai-integration Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Devin Review found 1 new potential issue.

View 1 additional finding in Devin Review.

Open in Devin Review

Comment thread packages/vite-plugin-cloudflare/package.json
@workers-devprod workers-devprod force-pushed the changeset-release/main branch from ee21c3e to 1be2d78 Compare July 9, 2026 16:29

@devin-ai-integration devin-ai-integration Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Devin Review found 1 new potential issue.

View 1 additional finding in Devin Review.

Open in Devin Review

Comment thread packages/runtime-types/CHANGELOG.md
@penalosa penalosa merged commit eced610 into main Jul 9, 2026
94 of 97 checks passed
@penalosa penalosa deleted the changeset-release/main branch July 9, 2026 18:20
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.

2 participants