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 #7019

Merged
merged 1 commit into from
Oct 22, 2024
Merged

Version Packages #7019

merged 1 commit into from
Oct 22, 2024

Conversation

workers-devprod
Copy link
Contributor

@workers-devprod workers-devprod commented Oct 18, 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

wrangler@3.82.0

Minor Changes

Patch Changes

  • #5737 9bf51d6 Thanks @penalosa! - Validate duplicate bindings across all binding types

  • #7010 1f6ff8b Thanks @vicb! - chore: update unenv dependency version

  • #7012 244aa57 Thanks @RamIdeas! - Add support for Workflow bindings (in deployments, not yet in local dev)

    To bind to a workflow, add a workflows section in your wrangler.toml:

    [[workflows]]
    binding = "WORKFLOW"
    name = "my-workflow"
    class_name = "MyDemoWorkflow"

    and export an entrypoint (e.g. MyDemoWorkflow) in your script:

    import { WorkflowEntrypoint } from "cloudflare:workers";
    
    export class MyDemoWorkflow extends WorkflowEntrypoint<Env, Params> {...}
  • #7039 e44f496 Thanks @penalosa! - Only show dev registry connection status in local dev

  • #7037 e1b93dc Thanks @emily-shen! - fix: ask for confirmation before creating a new Worker when uploading secrets

    Previously, wrangler secret put KEY --name non-existent-worker would automatically create a new Worker with the name non-existent-worker. This fix asks for confirmation before doing so (if running in an interactive context). Behaviour in non-interactive/CI contexts should be unchanged.

  • #7015 48152d6 Thanks @RamIdeas! - add wrangler workflows ... commands

  • #7041 045787b Thanks @CarmenPopoviciu! - Show wrangler pages dev --proxy warning

    On Node.js 17+, wrangler will default to fetching only the IPv6 address. With these changes we warn users that the process listening on the port specified via --proxy should be configured for IPv6.

  • #7018 127615a Thanks @emily-shen! - fix: log successful runs of d1 execute in local

  • #6970 a8ca700 Thanks @oliy! - Add HTTP authentication options for Workers Pipelines

  • #7005 6131ef5 Thanks @edmundhung! - fix: prevent users from passing multiple arguments to non array options

  • #7046 f9d5fdb Thanks @oliy! - Minor change to 3rd party API shape for Workers Pipelines

  • #6972 c794935 Thanks @penalosa! - Add (local) indicator to bindings using local data

  • Updated dependencies [809193e]:

    • miniflare@3.20241018.0

create-cloudflare@2.30.1

Patch Changes

  • #7016 381d04f Thanks @dependabot! - chore: update dependencies of "create-cloudflare" package

    The following dependency versions have been updated:

    Dependency From To
    create-vue 3.10.4 3.11.1
  • #7052 7874ed2 Thanks @dependabot! - chore: update dependencies of "create-cloudflare" package

    The following dependency versions have been updated:

    Dependency From To
    create-hono 0.14.1 0.14.2
  • #7034 0e91d42 Thanks @andyjessop! - fix: ensure that user is logged in before trying to choose account during pre-existing Worker C3 flow

miniflare@3.20241018.0

Patch Changes

  • #7035 809193e Thanks @dependabot! - chore: update dependencies of "miniflare" package

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20241011.1 1.20241018.1
    @cloudflare/workers-types ^4.20241011.0 ^4.20241018.0

@cloudflare/pages-shared@0.11.66

Patch Changes

  • Updated dependencies [809193e]:
    • miniflare@3.20241018.0

@cloudflare/vitest-pool-workers@0.5.21

Patch Changes

@cloudflare/quick-edit@0.3.2

Patch Changes

  • #7040 44c954b Thanks @penalosa! - Try and ensure the d.ts types are definitely the ones loaded in quick-edit-extension

@workers-devprod workers-devprod requested review from a team as code owners October 18, 2024 12:37
@workers-devprod workers-devprod added the skip-pr-description-validation Skip validation of the required PR description format label Oct 18, 2024
Copy link
Contributor

github-actions bot commented Oct 18, 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/11462821596/npm-package-wrangler-7019

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

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

Or you can use npx with this latest build directly:

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

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


wrangler@3.82.0 includes the following runtime dependencies:

Package Constraint Resolved
miniflare workspace:* 3.20241018.0
workerd 1.20241018.1 1.20241018.1
workerd --version 1.20241018.1 2024-10-18

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

@workers-devprod workers-devprod force-pushed the changeset-release/main branch 7 times, most recently from 7a265ea to ae6a374 Compare October 21, 2024 12:29
@workers-devprod workers-devprod requested a review from a team as a code owner October 21, 2024 12:29
@workers-devprod workers-devprod force-pushed the changeset-release/main branch 2 times, most recently from edced67 to 9b2458f Compare October 21, 2024 14:15
@penalosa penalosa added the preview:quick-edit Trigger a quick edit preview deploy label Oct 21, 2024
@penalosa penalosa removed the preview:quick-edit Trigger a quick edit preview deploy label Oct 21, 2024
@workers-devprod workers-devprod force-pushed the changeset-release/main branch 12 times, most recently from cac3edf to 93e2de5 Compare October 22, 2024 12:57
@emily-shen emily-shen merged commit 8d03647 into main Oct 22, 2024
39 checks passed
@emily-shen emily-shen deleted the changeset-release/main branch October 22, 2024 20:28
Copy link

@DGKOPS27 DGKOPS27 left a comment

Choose a reason for hiding this comment

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
skip-pr-description-validation Skip validation of the required PR description format
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants