Releases: anomalyco/sst
v1.0.0-beta.5
π₯ v1 Beta is here
The problems we are trying to address
There are a couple of common issues we've observed with people using SST:
- How do I know a prop I'm configuring is a CDK prop vs a SST prop?
- And related, do I need to read CDK docs and import CDK dependencies?
- How to configure underlying CDK constructs?
- How to access the CDK constructs created internally inside an SST construct?
- Lack of warnings when specifying invalid construct props
- Having to constantly visit the SST docs
The fix
We restructured the constructs to address these issues. You can read more about the details in the migration guide: https://docs.serverless-stack.com/constructs/v0/migration#goals
Most of the changes are reorganizing and renaming construct properties, attributes, and adding TS Docs. The underlying resources (ie. the CloudFormation template) are mostly not impacted. There should be zero downtime during the upgrade.
Follow the steps in the migration guide to update.
Give it a try and let us know what you think! We are looking to launch v1 by the end of the month.
v0.69.3
π Enhancement
- #1497 sst-env: wait and poll while
sst startis booting up (@alistairstead) - #1570 Cli: support SSO and add the
--profileoption (@RichiCoder1) - #1560 Cli: support absolute paths for the
--outputs-fileoption (@drewfish) - #1573 Cli: add error helper when cdk cli and constructs have different schema verions (@fwang)
- #1545 Console: add tooltips to icons in sidepanel (@Manitej66)
π Bug Fix
- #1566 sst-env: fix cannot find environment when custom stack names are used (@hans-m-song)
- #1571 Fix "Cannot find app handler" when using custom file name in sst.json main entry (@fwang)
- #1559 Cli: handle previous exports not imported for auto export check (@fwang)
π Documentation
- #1542 Update Postgres example using RDS construct (@Manitej66)
Contributors
- Alistair Stead (@alistairstead)
- Drew Folta (@drewfish)
- Hans Song (@hans-m-song)
- Richard Simpson (@RichiCoder1)
Update using:
$ npx sst update 0.69.3
$ yarn sst update 0.69.3v0.69.2
v0.69.1
Changes to StaticSite
We made some changes to how StaticSite, ReactStaticSite, and ViteStaticSite handle orphaned files during the deployment.
Prior to this release, on each deployment, files that were previously deployed but are no longer in the current deployment are NOT removed. This caused an issue where removed files/pages are still accessible after they have been removed from the site. Starting with this release, orphaned files will be removed by default.
You can control this behavior by setting purgeFiles to false.
new StaticSite(this, "Site", {
Β Β path: "path/to/src",
purgeFiles: false,
});This affects the StaticSite, ReactStaticSite, and ViteStaticSite constructs.
π Enhancement
- #1541 StaticSite: support removing old files (@fwang)
- #1533 StaticSite: replace environment in all html files (@fwang)
π Documentation
- #1535 Auth: Fix documentation typo (@philipliberato)
- #1529 Update Datadog example to CDK V2 (@Manitej66)
- #1512 Added Thundra example (@Manitej66)
Contributors
- Philip Liberato (@philipliberato)
Update using:
$ npx sst update 0.69.1
$ yarn sst update 0.69.1v0.69.0
v0.68.1
v0.68.0
π Enhancement
π Bug Fix
- #1498 Console: fix KinesisStream consumers not showing in functions tab (@Manitej66)
π Documentation
- #1476 Add example for Angular (@Manitej66)
Update using:
$ npx sst update 0.68.0
$ yarn sst update 0.68.0v0.67.2
π Enhancement
- #1483 Better packaging for @serverless-stack/node (@thdxr)
- #1459 Console: copy signed url of object instead of s3 url (@Manitej66)
π Bug Fix
π Documentation
- #1460 Console: fix dynamoDB copy (@Manitej66)
v0.67.0
π SST Console / API
This update features a new API Explorer that lets you to make HTTP requests to your sst.Api and sst.ApiGatewayV1Api. Easily set headers, query params and body to make a request against any of your routes and view the function logs as well as the response.

π Enhancement
- #1451 Explorer: API (@thdxr)
- #1454 fixed showing the loading sign while creating new folder (@Manitej66)
- #1444 Clean up dependencies (@thdxr)
π Documentation
- #1442 Fix lambda transpiling issue in mongodb example (@Manitej66)
Update using:
$ npx sst update 0.67.0
$ yarn sst update 0.67.0