8000 Releases · sst/sst · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Releases: sst/sst

v3.17.3

04 Jun 04:15
Compare
Choose a tag to compare

Changelog

v3.17.2

03 Jun 19:26
Compare
Choose a tag to compare

Changelog

  • 24d4ddc Bump OpenNext to v3.6.4 (#5839)
  • 7873122 Router: optimize routing function
  • bc02c3c fix: normalize path separators in TypeScript reference generation (#5842)

v3.17.0

29 May 18:57
Compare
Choose a tag to compare

Breaking Changes in sst.aws.Service and sst.aws.Task

Previously, when linking components to a Service or Task, SST passed the linking data into the container as Docker build arguments. This can be insecure when the linking data include sensitive values, ie. passwords for Postgres or Redis components, since build arguments can be exposed in build logs.

Starting from v3.17.0, SST now passes linking data using Docker secrets, which are not exposed in logs, providing a more secure mechanism for handling sensitive values.

How to Migrate

This only affects you if your Dockerfile needs access to linked resources during build time.

To migrate your Dockerfile to use Docker secrets:

  1. Remove all ARG SST_RESOURCE_<resource_name> declarations from your Dockerfile.
  2. Update your build command to mount secrets, like so:
    - RUN npm run build
    + RUN --mount=type=secret,id=SST_RESOURCE_<resource_name>,env=SST_RESOURCE_<resource_name>` npm run build
  3. Deploy the changes.

Changelog

  • 4ef5529 Cluster: use docker secrets to pass link values
  • 08e4522 Example: sync playground
  • 3940929 Router: update docs to clarify route path takes prefix
  • 69b6c0c Router: update docs to clarify route path takes prefix

v3.16.7

29 May 16:25
Compare
Choose a tag to compare

Changelog

  • 2158cdd Examples: sync playground
  • 0f174ae StepFunctions: fix ecsRunTask payload format

v3.16.6

29 May 15:22
Compare
Choose a tag to compare

Changelog

  • 211f6fa Realtime: grant iot permissions when l 8000 inked

v3.16.5

28 May 23:11
Compare
Choose a tag to compare

Changelog

  • 210c68a Function: fix addEnvironment not redeployed after refresh

v3.16.4

28 May 17:22
Compare
Choose a tag to compare

Changelog

  • d41e596 Fargate: support environment files

v3.16.3

27 May 21:48
Compare
Choose a tag to compare

Changelog

  • a6df8e0 StepFunctions: fix catch not referencing the head state

v3.16.2

27 May 19:30
Compare
Choose a tag to compare

Changelog

v3.16.1

27 May 19:01
Compare
Choose a tag to compare

Changelog

0