Releases: sst/sst
Releases · sst/sst
v3.16.0
Breaking Changes in sst.cloudflare.Worker
and sst.cloudflare.StaticSite
The Cloudflare provider has been updated from v5 to v6. The major version bump introduces breaking changes.
What Changed
Cloudflare has changed the resource type for Worker Scripts from
cloudflare:index/workerScript:WorkerScript
to
cloudflare:index/workersScript:WorkersScript
.
As a result, all Workers will be recreated. This is typically a seamless process. However, if a Worker has a domain configured, the DNS records associated with the old Worker may block the creation of the new one due to conflict.
The sst.cloudflare.StaticSite
component is also affected when a domain is configured, as it relies on a Worker behind the scenes.
How to Migrate
To resolve this:
- Remove (or comment out) the affected
sst.cloudflare.Worker
and/orsst.cloudflare.StaticSite
components. - Deploy the changes.
- Re-add the components.
- Deploy again.
This will ensure a clean replacement of the affected resources and avoid DNS conflicts.
Changelog
- 281dc94 Cloudflare: update to v6 provider
v3.14.29
v3.14.28
v3.14.27
v3.14.26
Changelog
- d5eec56 Docs: Fix StepFunctions Task class link
- 7dc9da0 Docs: Group task related methods together at the bottom
- c468c2c Docs: Hide TaskBaseArgs interface
- 45b2225 Examples: StepFunction with task token callback
- 4ad9dfc Examples: sync playground
- f96d89f Examples: update websocket example to handle subprotocols
- 3e6d7a5 Fixed typo in all-providers.mdx (#5805)
- f127132 StepFunctions: LambdaInvoke task accepts all function input formats
- e582a14 StepFunctions: support Distributed Map state
- 056c5d9 StepFunctions: support task token callback