Skip to content

Bump wrangler from 4.98.0 to 4.99.0#515

Merged
github-actions[bot] merged 1 commit into
Currentfrom
dependabot/npm_and_yarn/wrangler-4.99.0
Jun 9, 2026
Merged

Bump wrangler from 4.98.0 to 4.99.0#515
github-actions[bot] merged 1 commit into
Currentfrom
dependabot/npm_and_yarn/wrangler-4.99.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 9, 2026

Copy link
Copy Markdown
Contributor

Bumps wrangler from 4.98.0 to 4.99.0.

Release notes

Sourced from wrangler's releases.

wrangler@4.99.0

Minor Changes

  • #14169 0706fbf Thanks @​edmundhung! - Introduce createTestHarness() for integration testing Workers

    It runs Workers in a local preview environment using production build output and works with both Wrangler projects and Workers built by the Cloudflare Vite plugin.

    Use it from any Node.js test runner to send requests to individual Workers, trigger scheduled events, reset the server between tests, and mock outbound requests with libraries that intercept globalThis.fetch(), such as MSW.

    You can also capture structured logs from your Workers with getLogs(), or dump out a diagnostic timeline with debug() when tests fail:

    import { createTestHarness } from "wrangler";
    const server = createTestHarness({
    workers: [
    { configPath: "./dist/web_worker/wrangler.json" },
    { configPath: "./dist/api_worker/wrangler.json" },
    ],
    });
    await server.listen();
    await server.fetch("http://example.com");
    const apiWorker = server.getWorker("api-worker");
    await apiWorker.fetch("http://example.com/users/123");
    await apiWorker.scheduled({ cron: "0 0 * * *" });
    server.getLogs();
    if (testFailed) {
    server.debug();
    }
    await server.reset();
    await server.close();

  • #14174 8cf8c61 Thanks @​oliy! - Surface pipeline status and failure reasons in wrangler pipelines list and wrangler pipelines get

    wrangler pipelines list now includes a Status column, and when any pipelines are in a failed state it prints a summary of each failing pipeline along with the reason reported by the API.

    wrangler pipelines get now shows the pipeline Status in the general details and, for failed pipelines, highlights the failure with the reason returned by the server so it is clear why a pipeline is not running.

  • #14211 a61ac29 Thanks @​james-elicx! - Add --version-tag support to wrangler versions deploy to deploy a version by its tag

    You can now roll out or roll back a version by the tag it was uploaded with (e.g. a commit SHA passed to --tag at upload time) instead of first looking up its Version ID:

    wrangler versions deploy --version-tag <sha>@100%

... (truncated)

Commits
  • 8a4bfe5 Version Packages (#14179)
  • f8d7700 feat(wrangler): capture runtime logs and print debug timelines with `createTe...
  • 4bb572f Bump the workerd-and-workers-types group with 2 updates (#14231)
  • dcd116a feat(wrangler): improve createTestHarness() configuration setup (#14227)
  • 75e652a Revert "Make Ctrl+C triggered during the skills-install prompt dismiss it per...
  • e13b8c0 [C3] Bump @​angular/create from 21.2.13 to 22.0.0 in /packages/create-cloudfla...
  • a61ac29 [wrangler] Add --version-tag support to versions deploy (#14211)
  • 24497d0 Bump the workerd-and-workers-types group with 2 updates (#14217)
  • 0706fbf feat(wrangler): createTestHarness API (#14169)
  • 8923f97 Preserve all deployment-affecting CLI flags in the interactive deploy config ...
  • Additional commits viewable in compare view

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) from 4.98.0 to 4.99.0.
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.99.0/packages/wrangler)

---
updated-dependencies:
- dependency-name: wrangler
  dependency-version: 4.99.0
  dependency-type: direct:development
  update-type: version-update:semver-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 Jun 9, 2026
@github-actions github-actions Bot merged commit df197a2 into Current Jun 9, 2026
9 of 11 checks passed
@github-actions github-actions Bot requested a review from NikolaRHristov June 9, 2026 15:23
@github-actions github-actions Bot deleted the dependabot/npm_and_yarn/wrangler-4.99.0 branch June 9, 2026 15:23
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

Development

Successfully merging this pull request may close these issues.

1 participant