Skip to content

v2.35.0

Compare
Choose a tag to compare
@github-actions github-actions released this 06 Nov 20:19
57ee1f2

📢 Default Function runtime updated to Node.js 18

The default runtime for functions has been updated from nodejs16.x to nodejs18.x in response to AWS Lambda's deprecation announcement for the Node.js 16 runtime. To continue using Node.js 16, specify nodejs16.x as the default runtime.

app.setDefaultFunctionProps({
+ runtime: "nodejs16.x",
});.

Changes

  • #3484 74564805c Thanks @adityavm! - Function: update default runtime to Node.js 18
  • ffa4b0fe9 - AstroSite: support server function sourcemap
  • 7e94c96b0 - Sites: invalidate cache after S3 uploader completes

Update using:

$ npx sst update 2.35.0
$ yarn sst update 2.35.0