Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #5174

Merged
merged 1 commit into from
Mar 7, 2024
Merged

Version Packages #5174

merged 1 commit into from
Mar 7, 2024

Conversation

workers-devprod
Copy link
Contributor

@workers-devprod workers-devprod commented Mar 5, 2024

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

miniflare@3.20240304.0

Minor Changes

wrangler@3.32.0

Minor Changes

Patch Changes

  • #5089 5b85dc9 Thanks @DaniFoldi! - fix: include all currently existing bindings in wrangler types

    Add support for Email Send, Vectorize, Hyperdrive, mTLS, Browser Rendering and Workers AI bindings in wrangler types

    For example, from the following wrangler.toml setup:

    [browser]
    binding = "BROWSER"
    
    [ai]
    binding = "AI"
    
    [[send_email]]
    name = "SEND_EMAIL"
    
    [[vectorize]]
    binding = "VECTORIZE"
    index_name = "VECTORIZE_NAME"
    
    [[hyperdrive]]
    binding = "HYPERDRIVE"
    id = "HYPERDRIVE_ID"
    
    [[mtls_certificates]]
    binding = "MTLS"
    certificate_id = "MTLS_CERTIFICATE_ID"

    Previously, nothing would have been included in the generated Environment.
    Now, the following will be generated:

    interface Env {
    	SEND_EMAIL: SendEmail;
    	VECTORIZE: VectorizeIndex;
    	HYPERDRIVE: Hyperdrive;
    	MTLS: Fetcher;
    	BROWSER: Fetcher;
    	AI: Fetcher;
    }
  • Updated dependencies [11951f3, 11951f3]:

    • miniflare@3.20240304.0

create-cloudflare@2.13.2

Patch Changes

  • #5177 1c6a55d Thanks @dependabot! - chore: Bumped @angular/create from 17.2.2 to 17.2.3

  • #5186 5dfbc2d Thanks @dependabot! - chore: Bumped create-solid from 0.4.10 to 0.5.3

  • #5157 01a53b2 Thanks @jculvey! - fix: Updates the Nuxt template by adding a env.d.ts file which updates the type difinition for H3EventContext to include the cf property from the request and an env type generated from the recently added build-cf-types script.

  • #5188 84eeee5 Thanks @jculvey! - fix: Update SolidStart template to work with create-solid@0.5.3

@cloudflare/pages-shared@0.11.17

Patch Changes

edge-preview-authenticated-proxy@0.1.3

Patch Changes

playground-preview-worker@0.0.2

Patch Changes

@cloudflare/vitest-pool-workers@0.0.7

Patch Changes

workers-playground@0.0.2

Patch Changes

workers.new@0.0.1

Patch Changes

@workers-devprod workers-devprod requested review from a team as code owners March 5, 2024 23:05
Copy link

codecov bot commented Mar 5, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 70.38%. Comparing base (b58ed9f) to head (f8d7f4b).

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main    #5174      +/-   ##
==========================================
+ Coverage   70.35%   70.38%   +0.03%     
==========================================
  Files         298      298              
  Lines       15567    15567              
  Branches     4007     4007              
==========================================
+ Hits        10952    10957       +5     
+ Misses       4615     4610       -5     

see 5 files with indirect coverage changes

Copy link
Contributor

github-actions bot commented Mar 6, 2024

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/8193563577/npm-package-wrangler-5174

You can reference the automatically updated head of this PR with:

npm install --save-dev https://prerelease-registry.devprod.cloudflare.dev/workers-sdk/prs/5174/npm-package-wrangler-5174

Or you can use npx with this latest build directly:

npx https://prerelease-registry.devprod.cloudflare.dev/workers-sdk/runs/8193563577/npm-package-wrangler-5174 dev path/to/script.js
Additional artifacts:
npx https://prerelease-registry.devprod.cloudflare.dev/workers-sdk/runs/8193563577/npm-package-create-cloudflare-5174 --no-auto-update
npm install https://prerelease-registry.devprod.cloudflare.dev/workers-sdk/runs/8193563577/npm-package-cloudflare-kv-asset-handler-5174
npm install https://prerelease-registry.devprod.cloudflare.dev/workers-sdk/runs/8193563577/npm-package-miniflare-5174
npm install https://prerelease-registry.devprod.cloudflare.dev/workers-sdk/runs/8193563577/npm-package-cloudflare-pages-shared-5174
npm install https://prerelease-registry.devprod.cloudflare.dev/workers-sdk/runs/8193563577/npm-package-cloudflare-vitest-pool-workers-5174

Note that these links will no longer work once the GitHub Actions artifact expires.


wrangler@3.32.0 includes the following runtime dependencies:

Package Constraint Resolved
miniflare workspace:* 3.20240304.0
workerd 1.20240304.0 1.20240304.0
workerd --version 1.20240304.0 2024-03-04

Please ensure constraints are pinned, and miniflare/workerd minor versions match.

@workers-devprod workers-devprod force-pushed the changeset-release/main branch 11 times, most recently from a486e6e to 319844e Compare March 7, 2024 17:15
Copy link
Contributor

@penalosa penalosa left a comment

Choose a reason for hiding this comment

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

I added a docs link to the Python workers PR

@workers-devprod workers-devprod force-pushed the changeset-release/main branch from 319844e to 112d67a Compare March 7, 2024 18:03
@workers-devprod workers-devprod force-pushed the changeset-release/main branch from 112d67a to 28b3276 Compare March 7, 2024 18:17
@workers-devprod workers-devprod force-pushed the changeset-release/main branch from 28b3276 to f8d7f4b Compare March 7, 2024 19:12
@lrapoport-cf lrapoport-cf merged commit 96e4e16 into main Mar 7, 2024
28 checks passed
@lrapoport-cf lrapoport-cf deleted the changeset-release/main branch March 7, 2024 19:38
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.

4 participants