-
Notifications
You must be signed in to change notification settings - Fork 837
Comparing changes
Open a pull request
base repository: cloudflare/workers-sdk
base: wrangler@4.6.0
head repository: cloudflare/workers-sdk
compare: wrangler@4.7.0
Commits on Mar 31, 2025
-
[vite-plugin] add validation for
configPath
s (#8572)* [vite-plugin] add validation for `configPath`s * Apply suggestions from code review Co-authored-by: James Opstad <13586373+jamesopstad@users.noreply.github.com> * remove extra describe block * rename `configPath` to `entryWorkerConfigPath` * add `allowedWranglerConfigExtensions` const * add missing arguments * update tests --------- Co-authored-by: James Opstad <13586373+jamesopstad@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for e6fea13 - Browse repository at this point
Copy the full SHA e6fea13View commit details -
Configuration menu - View commit details
-
Copy full SHA for 23885f6 - Browse repository at this point
Copy the full SHA 23885f6View commit details -
[C3] Bump create-solid from 0.6.1 to 0.6.2 in /packages/create-cloudf…
…lare/src/frameworks (#8734) * [C3] Bump create-solid in /packages/create-cloudflare/src/frameworks Bumps [create-solid](https://github.com/solidjs-community/solid-cli) from 0.6.1 to 0.6.2. - [Commits](https://github.com/solidjs-community/solid-cli/commits) --- updated-dependencies: - dependency-name: create-solid dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * chore: update dependencies of "create-cloudflare" package The following dependency versions have been updated: | Dependency | From | To | | ------------ | ----- | ----- | | create-solid | 0.6.1 | 0.6.2 | --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Wrangler automated PR updater <wrangler@cloudflare.com>
Configuration menu - View commit details
-
Copy full SHA for e4e7296 - Browse repository at this point
Copy the full SHA e4e7296View commit details -
[C3] Bump @angular/create from 19.1.6 to 19.2.5 in /packages/create-c…
…loudflare/src/frameworks (#8731) * [C3] Bump @angular/create in /packages/create-cloudflare/src/frameworks Bumps [@angular/create](https://github.com/angular/angular-cli) from 19.1.6 to 19.2.5. - [Release notes](https://github.com/angular/angular-cli/releases) - [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md) - [Commits](angular/angular-cli@19.1.6...19.2.5) --- updated-dependencies: - dependency-name: "@angular/create" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * chore: update dependencies of "create-cloudflare" package The following dependency versions have been updated: | Dependency | From | To | | --------------- | ------ | ------ | | @angular/create | 19.1.6 | 19.2.5 | --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Wrangler automated PR updater <wrangler@cloudflare.com>
Configuration menu - View commit details
-
Copy full SHA for 5eb6e1b - Browse repository at this point
Copy the full SHA 5eb6e1bView commit details -
[C3] Bump create-react-router from 7.4.0 to 7.4.1 in /packages/create…
…-cloudflare/src/frameworks (#8732) * [C3] Bump create-react-router Bumps [create-react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/create-react-router) from 7.4.0 to 7.4.1. - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/main/packages/create-react-router/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/create-react-router@7.4.1/packages/create-react-router) --- updated-dependencies: - dependency-name: create-react-router dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * chore: update dependencies of "create-cloudflare" package The following dependency versions have been updated: | Dependency | From | To | | ------------------- | ----- | ----- | | create-react-router | 7.4.0 | 7.4.1 | --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Wrangler automated PR updater <wrangler@cloudflare.com>
Configuration menu - View commit details
-
Copy full SHA for 5fc7fe6 - Browse repository at this point
Copy the full SHA 5fc7fe6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8df60b5 - Browse repository at this point
Copy the full SHA 8df60b5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6e8e747 - Browse repository at this point
Copy the full SHA 6e8e747View commit details -
stop getPlatformProxy crashing with internal DOs (#8697)
* pass name to getplatformproxy * fixup * remove out of date warning * stop gpp crashing with internal DOs * changeset * fix e2e * pr feedback * elaborate on error message * move to a docs link * fix failing test * copy improvement * update docs link * update link --------- Co-authored-by: Carmen Popoviciu <cpopoviciu@cloudflare.com>
Configuration menu - View commit details
-
Copy full SHA for ec1f813 - Browse repository at this point
Copy the full SHA ec1f813View commit details -
Ensure that Node.js polyfills are pre-optimized before the first requ…
…est (#8688) * Ensure that Node.js polyfills are pre-optimized before the first request Previously, these polyfills were only optimized on demand when Vite became aware of them. This was either because Vite was able to find an import to a polyfill when statically analysing the import tree of the entry-point, or when a polyfilled module was dynamically imported as part of a executing code to handle a request. In the second case, the optimizing of the dynamically imported dependency causes a reload of the Vite server, which can break applications that are holding state in modules during the request. This is the case of most React type frameworks, in particular React Router. Now, we pre-optimize all the possible Node.js polyfills when the server starts before the first request is handled. * fixup! Ensure that Node.js polyfills are pre-optimized before the first request * add test * simplify the nodejs warnings plugin * fixup! Ensure that Node.js polyfills are pre-optimized before the first request * fixup! simplify the nodejs warnings plugin * add debugging to e2e tests * fixup! Ensure that Node.js polyfills are pre-optimized before the first request * Initialize nodeJsCompatWarnings in configResolved hook * Fix wrangler-configs-validation e2e tests --------- Co-authored-by: James Opstad <13586373+jamesopstad@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 28522ae - Browse repository at this point
Copy the full SHA 28522aeView commit details
Commits on Apr 1, 2025
-
[vite-plugin] improve inspector port handling (#8680)
* [vite-plugin] fix: make sure that the plugin keeps looking for available inspector ports by default * [vite-plugin] fix: make sure that users can use inspector port `0` to use a random port * Update packages/vite-plugin-cloudflare/README.md Co-authored-by: James Opstad <13586373+jamesopstad@users.noreply.github.com> * move `resolvedInspectorPort` inside `cloudflare` function * resolve inspector port in configure server * remove global `resolvedInspectorPort` variable * Revert "remove global `resolvedInspectorPort` variable" This reverts commit 8382228. * remove global `resolvedInspectorPort` variable (and resolve inspector port id in debug middleware) * improve code and warn when 9229 is not available * remove unused imports * remove useless line of code * Update packages/vite-plugin-cloudflare/src/index.ts Co-authored-by: James Opstad <13586373+jamesopstad@users.noreply.github.com> --------- Co-authored-by: James Opstad <13586373+jamesopstad@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 8dcc50f - Browse repository at this point
Copy the full SHA 8dcc50fView commit details -
Add sslmode field to hyperdrive command (#8727)
* SQC-480 update -uuid to -id per api changes * SQC-480 implement sslmode field for hyperdrive --------- Co-authored-by: Adrian Gracia <agracia@cloudflare.com>
Configuration menu - View commit details
-
Copy full SHA for 3993374 - Browse repository at this point
Copy the full SHA 3993374View commit details -
Configuration menu - View commit details
-
Copy full SHA for 654e1b9 - Browse repository at this point
Copy the full SHA 654e1b9View commit details -
[vite-plugin]: fix applications not being able to import assets from …
…dependencies (#8672) * [vite-plugin]: fix applications not being able to import assets from dependencies * remove runtime checking in favour of config validation * update lock file * add missing optional chaining * add e2e to make sure validation takes place * add TODO * Apply suggestions from code review Co-authored-by: James Opstad <13586373+jamesopstad@users.noreply.github.com> * update inline snapshots * problematic -> disallowed * fix typo in filename * update changeset --------- Co-authored-by: James Opstad <13586373+jamesopstad@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for d533f5e - Browse repository at this point
Copy the full SHA d533f5eView commit details -
fix: remove stray main field in Hono Pages template (#8738)
* remove stray main field * test with preview script instead of dev
Configuration menu - View commit details
-
Copy full SHA for da1ec13 - Browse repository at this point
Copy the full SHA da1ec13View commit details -
graduate next + assets template (#8741)
* graduate next * changeset * fixups * fix test
Configuration menu - View commit details
-
Copy full SHA for 56637e3 - Browse repository at this point
Copy the full SHA 56637e3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 624882e - Browse repository at this point
Copy the full SHA 624882eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 448e3ad - Browse repository at this point
Copy the full SHA 448e3adView commit details
Commits on Apr 2, 2025
-
improve turbo settings and vite e2e test config (#8754)
* improve turbo settings and vite e2e test config * skip the vite warnings playground when in build mode * Run Wrangler test:e2e in non-interactive mode * fixup! improve turbo settings and vite e2e test config
Configuration menu - View commit details
-
Copy full SHA for 0dae4ac - Browse repository at this point
Copy the full SHA 0dae4acView commit details -
fix next.js on workers C3 e2e test
Next was asking interactively whether to use turbopack, which causes the test to hang
Configuration menu - View commit details
-
Copy full SHA for 6e7f5f6 - Browse repository at this point
Copy the full SHA 6e7f5f6View commit details -
skip next.js C3 e2e tests on pnpm
The CI jobs are consistently timing out
Configuration menu - View commit details
-
Copy full SHA for 1ce9403 - Browse repository at this point
Copy the full SHA 1ce9403View commit details -
* Version Packages * fix typing problem in c3 tests --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Peter Bacon Darwin <pbacondarwin@cloudflare.com>
Configuration menu - View commit details
-
Copy full SHA for 8b510e8 - Browse repository at this point
Copy the full SHA 8b510e8View commit details
There are no files selected for viewing