@adobe/helix-deploy 12.1.0 → 12.1.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [12.1.1](https://github.com/adobe/helix-deploy/compare/v12.1.0...v12.1.1) (2024-09-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Removing awsLayers does not remove layers from a deployed function [#734](https://github.com/adobe/helix-deploy/issues/734) ([#735](https://github.com/adobe/helix-deploy/issues/735)) ([b2bb82b](https://github.com/adobe/helix-deploy/commit/b2bb82bffc5c07abfac2d9db2f3e8d30b219e9cd))
7
+
1
8
  # [12.1.0](https://github.com/adobe/helix-deploy/compare/v12.0.10...v12.1.0) (2024-08-28)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-deploy",
3
- "version": "12.1.0",
3
+ "version": "12.1.1",
4
4
  "description": "Library and Commandline Tools to build and deploy OpenWhisk Actions",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/adobe/helix-deploy#readme",
@@ -251,7 +251,7 @@ export default class AWSDeployer extends BaseDeployer {
251
251
  this._cfg.arch,
252
252
  ],
253
253
  LoggingConfig: this._cfg.logFormat ? { Format: this._cfg.logFormat } : undefined,
254
- Layers: this._cfg.layers,
254
+ Layers: this._cfg.layers || [],
255
255
  TracingConfig: this._cfg.tracingMode ? { Mode: this._cfg.tracingMode } : undefined,
256
256
  };
257
257