@backstage/plugin-techdocs-node 1.4.0-next.2 → 1.4.1-next.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/CHANGELOG.md CHANGED
@@ -1,5 +1,45 @@
1
1
  # @backstage/plugin-techdocs-node
2
2
 
3
+ ## 1.4.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 0b2a30dead: fixing techdocs-cli Docker client creation
8
+
9
+ Docker client does not need to be created when --no-docker
10
+ option is provided.
11
+
12
+ If you had DOCKER_CERT_PATH environment variable defined
13
+ the Docker client was looking for certificates
14
+ and breaking techdocs-cli generate command even with --no-docker
15
+ option.
16
+
17
+ - Updated dependencies
18
+ - @backstage/catalog-model@1.1.2-next.0
19
+ - @backstage/backend-common@0.15.2-next.0
20
+ - @backstage/config@1.0.3-next.0
21
+ - @backstage/errors@1.1.2-next.0
22
+ - @backstage/integration@1.3.2-next.0
23
+ - @backstage/plugin-search-common@1.0.2-next.0
24
+
25
+ ## 1.4.0
26
+
27
+ ### Minor Changes
28
+
29
+ - aa524a5377: Add `projectId` config option to GCP Cloud Storage techdocs publisher. This will allow users to override the project ID, instead of implicitly using the same one as found in a credentials bundle.
30
+
31
+ ### Patch Changes
32
+
33
+ - 33ac0c0546: Fix Techdocs S3 and GCS publisher to include bucketRootPath in requests
34
+ - eadf56bbbf: Bump `git-url-parse` version to `^13.0.0`
35
+ - Updated dependencies
36
+ - @backstage/backend-common@0.15.1
37
+ - @backstage/integration@1.3.1
38
+ - @backstage/catalog-model@1.1.1
39
+ - @backstage/config@1.0.2
40
+ - @backstage/errors@1.1.1
41
+ - @backstage/plugin-search-common@1.0.1
42
+
3
43
  ## 1.4.0-next.2
4
44
 
5
45
  ### Patch Changes
package/dist/index.cjs.js CHANGED
@@ -443,6 +443,11 @@ const _TechdocsGenerator = class {
443
443
  );
444
444
  break;
445
445
  case "docker":
446
+ if (this.containerRunner === void 0) {
447
+ throw new Error(
448
+ "Invalid state: containerRunner cannot be undefined when runIn is 'docker'"
449
+ );
450
+ }
446
451
  await this.containerRunner.runContainer({
447
452
  imageName: (_a = this.options.dockerImage) != null ? _a : _TechdocsGenerator.defaultDockerImage,
448
453
  args: ["build", "-d", "/output"],