Skip to content

Releases: cloudflare/wrangler-action

v3.12.1

06 Nov 15:27
05f17c4
Compare
Choose a tag to compare

Patch Changes

v3.12.0

04 Nov 15:32
e998fe3
Compare
Choose a tag to compare

Minor Changes

  • #312 122ee5cf5b66847e0b6cfa67ecd9e03e38a67a42 Thanks @Maximo-Guk! - This reapplies 303 add parity with pages-action for pages deploy outputs. Thanks @courtney-sims! - Support pages-deployment-id, pages-environment, pages-deployment-alias-url and deployment-url outputs for Pages deploys when wrangler version is >=3.81.0. deployment-alias-url was also deprecated in favour of pages-deployment-alias.

v3.11.0

24 Oct 14:56
b2a0191
Compare
Choose a tag to compare

Minor Changes

v3.10.0

23 Oct 20:56
39c2b5a
Compare
Choose a tag to compare

Minor Changes

v3.9.0

08 Oct 16:04
9681c29
Compare
Choose a tag to compare

Minor Changes

Patch Changes

v3.8.0

02 Oct 14:52
168bc28
Compare
Choose a tag to compare

Minor Changes

v3.7.0

02 Jul 13:31
f84a562
Compare
Choose a tag to compare

Minor Changes

v3.6.1

24 May 15:18
a08dc76
Compare
Choose a tag to compare

Patch Changes

v3.6.0

23 May 14:58
6524035
Compare
Choose a tag to compare

Minor Changes

v3.5.0

01 May 09:03
a84dcc6
Compare
Choose a tag to compare

Minor Changes

  • #255 31a6263ef3ec73ff2d03cb4c0260379f96f7598c Thanks @matthewdavidrodgers! - Stop racing secret uploads

    For up to date versions of wrangler, secrets are uploaded via the 'secret:bulk' command, which batches updates in a single API call.

    For versions of wrangler without that capability, the action falls back to the single 'secret put' command for each secret. It races all these with a Promise.all()

    Unfortunately, the single secret API cannot handle concurrency - at best, these calls have to wait on one another, holding requests open all the while. Often it times out and errors.

    This fixes the legacy secret upload errors by making these calls serially instead of concurrently.