Skip to content

Bump the workerd-and-workers-types group across 1 directory with 2 updates - #15633

Merged
NuroDev merged 7 commits into
mainfrom
dependabot/npm_and_yarn/workerd-and-workers-types-00ed58a539
Sep 15, 2026
Merged

NuroDev merged 7 commits into
mainfrom
dependabot/npm_and_yarn/workerd-and-workers-types-00ed58a539

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 14, 2026

Copy link
Copy Markdown
Contributor

Bumps the workerd-and-workers-types group with 2 updates in the / directory: @cloudflare/workers-types and workerd.

Updates @cloudflare/workers-types from 4.20260702.1 to 5.20260915.1

Commits

Updates workerd from 1.20260911.1 to 1.20260915.1

Release notes

Sourced from workerd's releases.

v1.20260915.1

What's Changed

New Contributors

Full Changelog: cloudflare/workerd@v1.20260914.1...v1.20260915.1

v1.20260914.1

Full Changelog: cloudflare/workerd@v1.20260913.1...v1.20260914.1

v1.20260913.1

What's Changed

Full Changelog: cloudflare/workerd@v1.20260912.1...v1.20260913.1

v1.20260912.1

What's Changed

Full Changelog: cloudflare/workerd@v1.20260911.1...v1.20260912.1

Commits
  • e52fd07 Release 2026-09-15
  • f75e6b4 chore: Tidy up Pyodide patches (#7367)
  • aec43b4 Fix memory snapshots with Python 3.14 (#7311)
  • 35125c9 Add vendored packages tests for shapely, pillow and pywavelets
  • 18f1fbe Add a mechanism for Pyodide-version-specific snapshot flags
  • 2a69756 Python snapshot release: make update-released flag only refer to baseline sna...
  • 4cfb37f Fix memory snapshots with Python 3.14
  • d14feab [build] JSG: move TypeWrapper members that ignore the type list to a base
  • 81e7d3e Make PYODIDE_VERSION refer to realPyodideVersion (not 'dev')
  • 4cd51d9 Merge pull request #7335 from cloudflare/jasnell/streams-pin-error-pending-close
  • Additional commits viewable in compare view

@dependabot dependabot Bot added ci:skip-pr-description-validation Skip validation of the required PR description format dependencies Used by dependabot to mark PRs as updates to dependencies. package:miniflare Relating to Miniflare labels Sep 14, 2026
@changeset-bot

changeset-bot Bot commented Sep 14, 2026

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 1ec9002

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 8 packages
Name Type
miniflare Patch
wrangler Patch
@cloudflare/deploy-helpers Patch
@cloudflare/pages-shared Patch
@cloudflare/remote-bindings Patch
@cloudflare/runtime-types Patch
@cloudflare/vite-plugin Patch
@cloudflare/vitest-plugin Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@github-project-automation github-project-automation Bot moved this to Untriaged in workers-sdk Sep 14, 2026
@workers-devprod
workers-devprod requested review from a team and edmundhung and removed request for a team September 14, 2026 06:07
@workers-devprod

workers-devprod commented Sep 14, 2026

Copy link
Copy Markdown
Contributor

Codeowners approval required for this PR:

  • ✅ @cloudflare/wrangler
Show detailed file reviewers

@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.

Note

This report is out of date. Scroll down for Devin Review's latest report on this PR.

🔍 Devin Review: 1 flag

Not posted on this PR by your GitHub settings — view it in Devin Review. (Configure)

Devin Review

@pkg-pr-new

pkg-pr-new Bot commented Sep 14, 2026

Copy link
Copy Markdown
@cloudflare/autoconfig

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

@cloudflare/build-output-utils

npm i https://pkg.pr.new/@cloudflare/build-output-utils@15633

@cloudflare/codemods

npm i https://pkg.pr.new/@cloudflare/codemods@15633

@cloudflare/config

npm i https://pkg.pr.new/@cloudflare/config@15633

@cloudflare/containers-shared

npm i https://pkg.pr.new/@cloudflare/containers-shared@15633

create-cloudflare

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

@cloudflare/deploy-helpers

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

@cloudflare/kv-asset-handler

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

miniflare

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

@cloudflare/pages-functions

npm i https://pkg.pr.new/@cloudflare/pages-functions@15633

@cloudflare/pages-shared

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

@cloudflare/unenv-preset

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

@cloudflare/vite-plugin

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

@cloudflare/vitest-plugin

npm i https://pkg.pr.new/@cloudflare/vitest-plugin@15633

@cloudflare/workers-auth

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

@cloudflare/workers-editor-shared

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

@cloudflare/workers-utils

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

wrangler

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

commit: 1ec9002

@petebacondarwin

Copy link
Copy Markdown
Contributor

This workerd bump has broken the Vite plugin's node-compat test that uses http.createServer() to expose a server on 8080, that is registered in the new per-DO port table in module-runner and not accessible from the stateless runner-worker.
Introduced in cloudflare/workerd#7306.

@petebacondarwin

Copy link
Copy Markdown
Contributor

A workers-sdk-only one-line fix is unsafe. Invoking handlers through runInRunnerObject() fixes this GET, but experiments showed:

The clean fix likely needs a small workerd capability plus workers-sdk plumbing:

  1. Add a host-only workerd option allowing a specifically marked, pinned internal runner actor to use the isolate’s Node port scope.
  2. Plumb it through Miniflare.
  3. Enable it for Vite’s runner DO (packages/vite-plugin-cloudflare/src/miniflare-options.ts:531), and assess Vitest’s equivalent.
  4. Keep normal user DOs—including ordinary ephemeralLocal actors—per-actor scoped.

That preserves the intentional semantics from workerd #7306 while making Vite’s artificial runner transparent to user module initialization.

@petebacondarwin

Copy link
Copy Markdown
Contributor

@NuroDev

NuroDev commented Sep 15, 2026

Copy link
Copy Markdown
Member

@dependabot recreate

…dates

Bumps the workerd-and-workers-types group with 2 updates in the / directory: [@cloudflare/workers-types](https://github.com/cloudflare/workerd) and [workerd](https://github.com/cloudflare/workerd).


Updates `@cloudflare/workers-types` from 4.20260702.1 to 5.20260915.1
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
- [Commits](https://github.com/cloudflare/workerd/commits)

Updates `workerd` from 1.20260911.1 to 1.20260915.1
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
- [Commits](cloudflare/workerd@v1.20260911.1...v1.20260915.1)

---
updated-dependencies:
- dependency-name: "@cloudflare/workers-types"
  dependency-version: 5.20260914.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: workerd-and-workers-types
- dependency-name: workerd
  dependency-version: 1.20260914.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workerd-and-workers-types
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title Bump the workerd-and-workers-types group with 2 updates Bump the workerd-and-workers-types group across 1 directory with 2 updates Sep 15, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/workerd-and-workers-types-00ed58a539 branch from a15a550 to 7df7c31 Compare September 15, 2026 10:07
devin-ai-integration[bot]

This comment was marked as resolved.

The following dependency versions have been updated:

| Dependency                | From          | To            |
| ------------------------- | ------------- | ------------- |
| @cloudflare/workers-types | ^5.20260911.1 | ^5.20260915.1 |
| workerd                   | 1.20260911.1  | 1.20260915.1  |
@NuroDev
NuroDev enabled auto-merge (squash) September 15, 2026 10:40

@workers-devprod workers-devprod 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.

Codeowners reviews satisfied

@github-project-automation github-project-automation Bot moved this from Untriaged to Approved in workers-sdk Sep 15, 2026
@NuroDev

NuroDev commented Sep 15, 2026

Copy link
Copy Markdown
Member

It seems cloudflare/workerd#7053 enabled spec_compliant_dispatch_exceptions, which Wrangler relied on for loader-sw.ts for the old behaviour where EventTarget.dispatchEvent() rethrows listener errors.

Applied eb22e8e to fix this.

@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.

Note

This report is out of date. Scroll down for Devin Review's latest report on this PR.

Devin Review found 4 new potential issues.

Devin Review

Comment thread packages/wrangler/templates/middleware/loader-sw.ts
Comment thread packages/wrangler/templates/middleware/loader-sw.ts
Comment thread .changeset/dependabot-update-15633.md
Comment thread pnpm-workspace.yaml

@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 0 new potential issues.

Devin Review

@NuroDev
NuroDev merged commit 7db596c into main Sep 15, 2026
63 of 64 checks passed
@NuroDev
NuroDev deleted the dependabot/npm_and_yarn/workerd-and-workers-types-00ed58a539 branch September 15, 2026 15:42
@github-project-automation github-project-automation Bot moved this from Approved to Done in workers-sdk Sep 15, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ci:skip-pr-description-validation Skip validation of the required PR description format dependencies Used by dependabot to mark PRs as updates to dependencies. package:miniflare Relating to Miniflare

Projects

Status: Done

Development

Successfully merging this pull request may close these issues.

3 participants