@adobe/helix-deploy 9.6.0 → 9.6.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
+ ## [9.6.1](https://github.com/adobe/helix-deploy/compare/v9.6.0...v9.6.1) (2024-01-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **fastly:** guard against missing gateway name ([#634](https://github.com/adobe/helix-deploy/issues/634)) ([da6a45c](https://github.com/adobe/helix-deploy/commit/da6a45ca8217454d68664937c28eacd54d1ee033))
7
+
1
8
  # [9.6.0](https://github.com/adobe/helix-deploy/compare/v9.5.1...v9.6.0) (2024-01-08)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-deploy",
3
- "version": "9.6.0",
3
+ "version": "9.6.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",
@@ -75,7 +75,7 @@
75
75
  "@adobe/helix-status": "10.0.11",
76
76
  "@semantic-release/changelog": "6.0.3",
77
77
  "@semantic-release/git": "10.0.1",
78
- "c8": "8.0.1",
78
+ "c8": "9.0.0",
79
79
  "eslint": "8.56.0",
80
80
  "husky": "8.0.3",
81
81
  "lint-staged": "15.2.0",
@@ -137,8 +137,10 @@ service_id = ""
137
137
  max_conn: 200,
138
138
  use_ssl: true,
139
139
  };
140
- this.log.debug(`--: updating gateway backend: ${host}`);
141
- await this._fastly.writeBackend(version, 'gateway', backend);
140
+ if (host) {
141
+ this.log.debug(`--: updating gateway backend: ${host}`);
142
+ await this._fastly.writeBackend(version, 'gateway', backend);
143
+ }
142
144
  }, true);
143
145
 
144
146
  await this._fastly.discard();