serverless-offline 11.4.0 → 11.5.0

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "dedicatedTo": "Blue, a great migrating bird.",
3
3
  "name": "serverless-offline",
4
- "version": "11.4.0",
4
+ "version": "11.5.0",
5
5
  "description": "Emulate AWS λ and API Gateway locally when developing your Serverless project",
6
6
  "license": "MIT",
7
7
  "exports": {
@@ -18,6 +18,7 @@ export const supportedNodejs = new Set([
18
18
  'nodejs12.x',
19
19
  'nodejs14.x',
20
20
  'nodejs16.x',
21
+ 'nodejs18.x',
21
22
  ])
22
23
 
23
24
  // PROVIDED
@@ -49,5 +50,6 @@ export const supportedRuntimes = new Set([
49
50
  export const unsupportedDockerRuntimes = new Set([
50
51
  'nodejs14.x',
51
52
  'nodejs16.x',
53
+ 'nodejs18.x',
52
54
  'python3.9',
53
55
  ])