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

Update dependency wrangler to v3.53.1 #16

Merged
merged 1 commit into from
May 4, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 1, 2024

Mend Renovate

This PR contains the following updates:

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

Release Notes

cloudflare/workers-sdk (wrangler)

v3.53.1

Compare Source

Patch Changes
  • #​5091 6365c90 Thanks @​Cherry! - fix: better handle dashes and other invalid JS identifier characters in wrangler types generation for vars, bindings, etc.

    Previously, with the following in your wrangler.toml, an invalid types file would be generated:

    [vars]
    some-var = "foobar"

    Now, the generated types file will be valid:

    interface Env {
    	"some-var": "foobar";
    }
  • #​5748 27966a4 Thanks @​penalosa! - fix: Load sourcemaps relative to the entry directory, not cwd.

  • #​5746 1dd9f7e Thanks @​petebacondarwin! - fix: suggest trying to update Wrangler if there is a newer one available after an unexpected error

  • #​5226 f63e7a5 Thanks @​DaniFoldi! - fix: remove second Wrangler banner from wrangler dispatch-namespace rename

v3.53.0

Compare Source

Minor Changes
  • #​5604 327a456 Thanks @​dario-piotrowicz! - feat: add support for environments in getPlatformProxy

    allow getPlatformProxy to target environments by allowing users to specify an environment option

    Example usage:

    const { env } = await getPlatformProxy({
    	environment: "production",
    });
Patch Changes

v3.52.0

Compare Source

Minor Changes
  • #​5666 81d9615 Thanks @​CarmenPopoviciu! - fix: Fix Pages config validation around Durable Objects

    Today Pages cannot deploy Durable Objects itself. For this reason it is mandatory that when declaring Durable Objects bindings in the config file, the script_name is specified. We are currently not failing validation if
    script_name is not specified but we should. These changes fix that.

Patch Changes

v3.51.2

Compare Source

Patch Changes

v3.51.0

Compare Source

Minor Changes
  • #​5477 9a46e03 Thanks @​pmiguel! - feature: Changed Queues client to use the new QueueId and ConsumerId-based endpoints.

  • #​5172 fbe1c9c Thanks @​GregBrimble! - feat: Allow marking external modules (with --external) to avoid bundling them when building Pages Functions

    It's useful for Pages Plugins which want to declare a peer dependency.

Patch Changes

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]:

v3.45.0

Compare Source

Minor Changes
  • #​5377 5d68744 Thanks @​CarmenPopoviciu! - feat: Add wrangler.toml support in wrangler pages deploy

    As we are adding wrangler.toml support for Pages, we want to ensure that wrangler pages deploy works with a configuration file.

  • #​5471 489b9c5 Thanks @​zebp! - feature: Add version-id filter for Worker tailing to filter logs by scriptVersion in a gradual deployment

    This allows users to only get logs in a gradual deployment if you are troubleshooting issues
    specific to one deployment. Example:
    npx wrangler tail --version-id 72d3f357-4e52-47c5-8805-90be978c403f

Patch Changes

v3.44.0

Compare Source

Minor Changes
  • #​5461 f69e562 Thanks @​mattdeboard! - feature: Add command for fetching R2 Event Notification configurations for a given bucket

    This allows users to see the entire event notification configuration -- i.e. every rule for every configured queue -- for a single bucket with a single request.

    This change also improves messaging of console output when creating a new bucket notification.

Patch Changes

v3.43.0

Compare Source

Minor Changes
Patch Changes

v3.42.0

Compare Source

Minor Changes
  • #​5371 77152f3 Thanks @​G4brym! - feature: remove requirement for @cloudflare/ai package to use Workers AI

    Previously, to get the correct Workers AI API, you needed to wrap your env.AI binding with new Ai() from @cloudflare/ai. This change moves the contents of @cloudflare/ai into the Workers runtime itself, meaning env.AI is now an instance of Ai, without the need for wrapping.

Patch Changes

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 3a0d770 to ec123ad Compare April 1, 2024 15:12
@renovate renovate bot changed the title Update dependency wrangler to v3.40.0 Update dependency wrangler to v3.41.0 Apr 1, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from ec123ad to df8c2b0 Compare April 4, 2024 17:26
@renovate renovate bot changed the title Update dependency wrangler to v3.41.0 Update dependency wrangler to v3.42.0 Apr 4, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from df8c2b0 to c7ca496 Compare April 5, 2024 17:33
@renovate renovate bot changed the title Update dependency wrangler to v3.42.0 Update dependency wrangler to v3.43.0 Apr 5, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from c7ca496 to 105bf48 Compare April 5, 2024 22:34
@renovate renovate bot changed the title Update dependency wrangler to v3.43.0 Update dependency wrangler to v3.44.0 Apr 5, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 105bf48 to dcd0aa6 Compare April 6, 2024 22:27
@renovate renovate bot changed the title Update dependency wrangler to v3.44.0 Update dependency wrangler to v3.45.0 Apr 6, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from dcd0aa6 to a4c72c8 Compare April 7, 2024 13:58
@renovate renovate bot changed the title Update dependency wrangler to v3.45.0 Update dependency wrangler to v3.46.0 Apr 7, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from a4c72c8 to 14c5284 Compare April 7, 2024 16:39
@renovate renovate bot changed the title Update dependency wrangler to v3.46.0 Update dependency wrangler to v3.47.0 Apr 7, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 14c5284 to d37af5a Compare April 7, 2024 23:38
@renovate renovate bot changed the title Update dependency wrangler to v3.47.0 Update dependency wrangler to v3.47.1 Apr 7, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch 2 times, most recently from 85c7051 to 333f225 Compare April 8, 2024 19:20
@renovate renovate bot changed the title Update dependency wrangler to v3.47.1 Update dependency wrangler to v3.48.0 Apr 8, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 333f225 to 2dc6488 Compare April 13, 2024 21:33
@renovate renovate bot changed the title Update dependency wrangler to v3.48.0 Update dependency wrangler to v3.49.0 Apr 13, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 2dc6488 to 3718611 Compare April 14, 2024 17:12
@renovate renovate bot changed the title Update dependency wrangler to v3.49.0 Update dependency wrangler to v3.50.0 Apr 14, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch 2 times, most recently from bd3d524 to a886216 Compare April 20, 2024 07:15
@renovate renovate bot changed the title Update dependency wrangler to v3.50.0 Update dependency wrangler to v3.51.0 Apr 20, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from a886216 to b87bfb2 Compare April 21, 2024 19:51
@renovate renovate bot changed the title Update dependency wrangler to v3.51.0 Update dependency wrangler to v3.51.2 Apr 21, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch 2 times, most recently from 1242614 to ad004fd Compare April 22, 2024 03:21
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from ad004fd to 723b50d Compare April 27, 2024 13:39
@renovate renovate bot changed the title Update dependency wrangler to v3.51.2 Update dependency wrangler to v3.52.0 Apr 27, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch 2 times, most recently from 070c75a to db29647 Compare April 30, 2024 22:21
@github-actions github-actions bot requested a deployment to [site] (renovate/wrangler-3.x) April 30, 2024 22:21 Abandoned
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch 2 times, most recently from 7367a62 to 928e778 Compare May 1, 2024 06:52
Copy link

github-actions bot commented May 1, 2024

Run report for d89f56fb

Total time: 45s | Comparison time: 48.3s | Estimated savings: 3.3s (6.9% faster)

Action Time Status Info
🟩 SyncWorkspace 0ms Passed
⬛️ SetupNodeTool(20.12.2) 1.6s Skipped
🟩 InstallNodeDeps(20.12.2) 19.3s Passed
🟩 SyncNodeProject(site) 0.3ms Passed
🟩 RunTask(site:imports) 103.2ms Passed
🟩 RunTask(site:sync) 2.7s Passed
🟩 RunTask(site:format) 8.1s Passed
🟩 RunTask(site:check) 8.1s Passed
🟩 RunTask(site:lint) 85.5ms Passed
🟩 RunTask(site:build) 13.2s Passed
Touched files
apps/site/package.json
pnpm-lock.yaml

@github-actions github-actions bot requested a deployment to [site] (renovate/wrangler-3.x) May 1, 2024 06:53 Abandoned
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 928e778 to e26c473 Compare May 1, 2024 18:21
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from e26c473 to 6132164 Compare May 1, 2024 19:27
@renovate renovate bot changed the title Update dependency wrangler to v3.52.0 Update dependency wrangler to v3.53.0 May 1, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 6132164 to 7bea0d3 Compare May 1, 2024 19:43
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 7bea0d3 to 896f4ea Compare May 2, 2024 22:42
@renovate renovate bot changed the title Update dependency wrangler to v3.53.0 Update dependency wrangler to v3.53.1 May 2, 2024
@renovate renovate bot force-pushed the renovate/wrangler-3.x branch from 896f4ea to 436641a Compare May 3, 2024 01:49
@alexanderniebuhr alexanderniebuhr added this pull request to the merge queue May 4, 2024
Merged via the queue into main with commit d89f56f May 4, 2024
3 checks passed
@alexanderniebuhr alexanderniebuhr deleted the renovate/wrangler-3.x branch May 4, 2024 05:47
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