sst 2.48.0 → 2.48.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -24,6 +24,7 @@ declare const supportedRuntimes: {
24
24
  "python3.10": CDKRuntime;
25
25
  "python3.11": CDKRuntime;
26
26
  "python3.12": CDKRuntime;
27
+ "python3.13": CDKRuntime;
27
28
  "dotnetcore3.1": CDKRuntime;
28
29
  dotnet6: CDKRuntime;
29
30
  dotnet8: CDKRuntime;
@@ -797,7 +798,7 @@ export declare class Function extends CDKFunction implements SSTConstruct {
797
798
  type: "Function";
798
799
  data: {
799
800
  arn: string;
800
- runtime: "container" | "rust" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "java8" | "java11" | "java17" | "java21" | "go1.x" | "go" | undefined;
801
+ runtime: "container" | "rust" | "nodejs16.x" | "nodejs18.x" | "nodejs20.x" | "nodejs22.x" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "python3.11" | "python3.12" | "python3.13" | "dotnetcore3.1" | "dotnet6" | "dotnet8" | "java8" | "java11" | "java17" | "java21" | "go1.x" | "go" | undefined;
801
802
  handler: string | undefined;
802
803
  missingSourcemap: boolean | undefined;
803
804
  localId: string;
@@ -43,6 +43,7 @@ const supportedRuntimes = {
43
43
  "python3.10": CDKRuntime.PYTHON_3_10,
44
44
  "python3.11": CDKRuntime.PYTHON_3_11,
45
45
  "python3.12": CDKRuntime.PYTHON_3_12,
46
+ "python3.13": CDKRuntime.PYTHON_3_13,
46
47
  "dotnetcore3.1": CDKRuntime.DOTNET_CORE_3_1,
47
48
  dotnet6: CDKRuntime.DOTNET_6,
48
49
  dotnet8: CDKRuntime.DOTNET_8,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sideEffects": false,
3
3
  "name": "sst",
4
- "version": "2.48.0",
4
+ "version": "2.48.1",
5
5
  "bin": {
6
6
  "sst": "cli/sst.js"
7
7
  },
package/package.json.bak CHANGED
@@ -5,7 +5,7 @@
5
5
  },
6
6
  "sideEffects": false,
7
7
  "name": "sst",
8
- "version": "2.48.0",
8
+ "version": "2.48.1",
9
9
  "bin": {
10
10
  "sst": "cli/sst.js"
11
11
  },
@@ -15,6 +15,7 @@ const RUNTIME_MAP = {
15
15
  "python3.10": Runtime.PYTHON_3_10,
16
16
  "python3.11": Runtime.PYTHON_3_11,
17
17
  "python3.12": Runtime.PYTHON_3_12,
18
+ "python3.13": Runtime.PYTHON_3_13,
18
19
  };
19
20
  export const usePythonHandler = () => {
20
21
  const processes = new Map();