workers-sdk icon indicating copy to clipboard operation
workers-sdk copied to clipboard

Version Packages

Open workers-devprod opened this issue 1 year ago • 1 comments

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

[email protected]

Minor Changes

  • #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> {...}
    
  • #7015 48152d6 Thanks @RamIdeas! - add wrangler workflows ... commands

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

Patch Changes

[email protected]

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

[email protected]

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/[email protected]

Patch Changes

@cloudflare/[email protected]

Patch Changes

@cloudflare/[email protected]

Patch Changes

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

workers-devprod avatar Oct 18 '24 12:10 workers-devprod