Conversation
77cb121 to
2c42913
Compare
75a71c5 to
bc058e4
Compare
|
@petebacondarwin - can we make sure this 3.1.2 release definitely includes the latest workerd - https://github.com/cloudflare/workerd/releases/tag/v1.20230628.0` - |
We will need to bump the workerd dependency in miniflare at https://github.com/cloudflare/miniflare/blob/tre/packages/miniflare/package.json#L42, do a release of miniflare and then bump the dependency in wrangler on miniflare. cc @mrbbot |
c0eae86 to
11f7e0e
Compare
mrbbot
left a comment
There was a problem hiding this comment.
This PR contains a bump to a beta Miniflare release and shouldn't be merged in its current state. npx wrangler@beta can be used to try out the changes. (Please feel free to dismiss this review once a full version of Miniflare has been released and merged into this repo.)
18b6d15 to
212afc0
Compare
|
A wrangler prerelease is available for testing. You can install this latest build in your project with: npm install --save-dev https://prerelease-registry.devprod.cloudflare.dev/workers-sdk/runs/5477147254/npm-package-wrangler-3503You can reference the automatically updated head of this PR with: npm install --save-dev https://prerelease-registry.devprod.cloudflare.dev/workers-sdk/prs/3503/npm-package-wrangler-3503Or you can use npx https://prerelease-registry.devprod.cloudflare.dev/workers-sdk/runs/5477147254/npm-package-wrangler-3503 dev path/to/script.jsAdditional artifacts:npm install https://prerelease-registry.devprod.cloudflare.dev/workers-sdk/runs/5477147254/npm-package-cloudflare-pages-shared-3503Note that these links will no longer work once the GitHub Actions artifact expires. |
Codecov Report
@@ Coverage Diff @@
## main #3503 +/- ##
==========================================
+ Coverage 75.08% 75.12% +0.03%
==========================================
Files 190 190
Lines 11110 11110
Branches 2919 2919
==========================================
+ Hits 8342 8346 +4
+ Misses 2768 2764 -4 |
e91b0e2 to
d17ef78
Compare
d17ef78 to
dba5687
Compare

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
create-cloudflare@2.0.11
Patch Changes
#3465
528cc0fcThanks @jculvey! - Improvements to the project name selection prompt.#3500
c43fc4e8Thanks @jculvey! - Fix the output of the --version flag#3343
cc9ced83Thanks @petebacondarwin! - fix: use a valid compatibility date for worker templatesPreviously, we changed wrangler.toml to use the current date for the
compatibility_date setting in wrangler.toml when generating workers.
But this is almost always going to be too recent and results in a warning.
Now we look up the most recent compatibility date via npm on the workerd
package and use that instead.
Fixes 🐛 BUG: [c3] new projects are almost always scaffolded with incorrect compatibility dates, resulting in noisy warnings #2385
#3516
941764d0Thanks @petebacondarwin! - fix: ensure the Angular fetch handler returns a "real" promise to CloudflareAngular employs the Zone.js library to patch potentially async operations so that
it can trigger change detection reliably. But in order to do this, it swaps out
the native
Promisewith aZoneAwarePromiseclass.The Cloudflare runtime (i.e. workerd) does runtime checks on the value returned
from the
fetch()handler, expecting it to be a nativePromiseand fails if not.This fix ensures that the actual object returned from the
fetch()is actually anative
Promise. We don't need to stop Angular usingZoneAwarePromiseselsewhere.#3486
436f752dThanks @Cherry! - fix: use wrangler deploy command for deploying applications instead of the deprecated wrangler publish@cloudflare/pages-shared@0.5.3
Patch Changes
09f317d4Thanks @GregBrimble! - chore: Bump miniflare@3.0.2wrangler@3.1.2
Patch Changes
#3529
bcdc1fe5Thanks @jspspike! - Support https in wrangler dev local mode#3541
09f317d4Thanks @GregBrimble! - chore: Bump miniflare@3.0.2#3497
c5f3bf45Thanks @evanderkoogh! - Refactor dev-only checkedFetch check from a method substitution to a JavaScript Proxy to be able to support Proxied global fetch function.#3403
8d1521e9Thanks @Cherry! - fix: wrangler generate will now work cross-device. This is very common on Windows install that use C:/ for the OS and another drive for user files.wranglerjs-compat-webpack-plugin@0.0.8
Patch Changes
3f61892dThanks @JacobMGEvans! - Upgraded rimraf dependecy. For details see: https://github.com/isaacs/rimraf#major-changes