wrangler-action/.changeset/weak-lobsters-march.md
James Ross 9aba9c34da
fix: semver comparison (#216)
* fix: semver comparison

chore: bump dependencies

* chore: add changeset

* fix: update snapshot for error test
2023-12-13 09:53:47 +00:00

603 B

wrangler-action
patch

Fixes issues with semver comparison, where version parts were treated lexicographically instead of numerically.

Bulk secret uploading was introduced in wrangler 3.4.0, and this action tries to check if the version used is greater than 3.4.0, and then if so, using the new bulk secret API which is faster. Due to a bug in the semver comparison, 3.19.0 was being considered less than 3.4.0, and then using an older and slower method for uploading secrets.

Now the semver comparison is fixed, the faster bulk method is used for uploading secrets when available.