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

chore(deps): update dependency wrangler to v3.50.0 - autoclosed #23

Merged
merged 1 commit into from
Apr 14, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 4, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
wrangler (source) 3.45.0 -> 3.50.0 age adoption passing confidence

Release Notes

cloudflare/workers-sdk (wrangler)

v3.50.0

Compare Source

Minor Changes
  • #​5587 d95450f Thanks @​CarmenPopoviciu! - fix: pages functions build-env should throw error if invalid Pages config file is found

  • #​5572 65aa21c Thanks @​CarmenPopoviciu! - fix: fix pages function build-env to exit with code rather than throw fatal error

    Currently pages functions build-env throws a fatal error if a config file does not exit, or if it is invalid. This causes issues for the CI system. We should instead exit with a specific code, if any of those situations arises.

  • #​5291 ce00a44 Thanks @​pmiguel! - feature: Added bespoke OAuth scope for Queues management.

Patch Changes

v3.49.0

Compare Source

Minor Changes
Patch Changes

v3.48.0

Compare Source

Minor Changes
  • #​5429 c5561b7 Thanks @​ocsfrank! - R2 will introduce storage classes soon. Wrangler allows you to interact with storage classes once it is
    enabled on your account.

    Wrangler supports an -s flag that allows the user to specify a storage class when creating a bucket,
    changing the default storage class of a bucket, and uploading an object.

    wrangler r2 bucket create ia-bucket -s InfrequentAccess
    wrangler r2 bucket update storage-class my-bucket -s InfrequentAccess
    wrangler r2 object put bucket/ia-object -s InfrequentAccess --file foo
Patch Changes

v3.47.1

Compare Source

Patch Changes

v3.47.0

Compare Source

Minor Changes
  • #​5506 7734f80 Thanks @​penalosa! - feat: Add interactive prompt to wrangler pages download config if an existing wrangler.toml file exists

v3.46.0

Compare Source

Minor Changes
  • #​5282 b7ddde1 Thanks @​maxwellpeterson! - feature: Add source map support for Workers

    Adds the source_maps boolean config option. When enabled, source maps included in the build output are uploaded alongside the built code modules. Uploaded source maps can then be used to remap stack traces emitted by the Workers runtime.

  • #​5215 cd03d1d Thanks @​GregBrimble! - feature: support named entrypoints in service bindings

    This change allows service bindings to bind to a named export of another Worker. As an example, consider the following Worker named bound:

    import { WorkerEntrypoint } from "cloudflare:workers";
    
    export class EntrypointA extends WorkerEntrypoint {
    	fetch(request) {
    		return new Response("Hello from entrypoint A!");
    	}
    }
    
    export const entrypointB: ExportedHandler = {
    	fetch(request, env, ctx) {
    		return new Response("Hello from entrypoint B!");
    	}
    };
    
    export default <ExportedHandler>{
    	fetch(request, env, ctx) {
    		return new Response("Hello from the default entrypoint!");
    	}
    };

    Up until now, you could only bind to the default entrypoint. With this change, you can bind to EntrypointA or entrypointB too using the new entrypoint option:

    [[services]]
    binding = "SERVICE"
    service = "bound"
    entrypoint = "EntrypointA"

    To bind to named entrypoints with wrangler pages dev, use the # character:

    $ wrangler pages dev --service=SERVICE=bound#EntrypointA
Patch Changes
  • #​5215 cd03d1d Thanks @​GregBrimble! - fix: ensure request url and cf properties preserved across service bindings

    Previously, Wrangler could rewrite url and cf properties when sending requests via service bindings or Durable Object stubs. To match production behaviour, this change ensures these properties are preserved.

  • Updated dependencies [cd03d1d, 6c3be5b, cd03d1d, cd03d1d]:


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from e578448 to 383c7e7 Compare April 4, 2024 16:42
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.46.0 chore(deps): update dependency wrangler to v3.47.0 Apr 4, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.47.0 chore(deps): update dependency wrangler to v3.47.0 - autoclosed Apr 4, 2024
@renovate renovate bot closed this Apr 4, 2024
@renovate renovate bot deleted the renovate/wrangler-3.x branch April 4, 2024 19:23
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.47.0 - autoclosed chore(deps): update dependency wrangler to v3.47.0 Apr 4, 2024
@renovate renovate bot restored the renovate/wrangler-3.x branch April 4, 2024 23:29
@renovate renovate bot reopened this Apr 4, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 383c7e7 to 38b42fe Compare April 4, 2024 23:30
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.47.0 chore(deps): update dependency wrangler to v3.47.1 Apr 4, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 38b42fe to e74a04d Compare April 5, 2024 20:09
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.47.1 chore(deps): update dependency wrangler to v3.48.0 Apr 5, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from e74a04d to 05b4d90 Compare April 10, 2024 21:02
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.48.0 chore(deps): update dependency wrangler to v3.49.0 Apr 10, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 05b4d90 to 88e859d Compare April 11, 2024 18:14
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.49.0 chore(deps): update dependency wrangler to v3.50.0 Apr 11, 2024
@pigri pigri merged commit be56b26 into main Apr 14, 2024
@renovate renovate bot changed the title chore(deps): update dependency wrangler to v3.50.0 chore(deps): update dependency wrangler to v3.50.0 - autoclosed Apr 14, 2024
@renovate renovate bot deleted the renovate/wrangler-3.x branch April 14, 2024 21:18
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.

1 participant