From 0e30c231e681bcb82b32c7840600033bf079c52c Mon Sep 17 00:00:00 2001 From: Morgan Bentell Date: Thu, 23 Mar 2023 11:26:52 +0100 Subject: [PATCH 1/4] use spotify/techdocs:v1.2.0 Signed-off-by: Morgan Bentell --- plugins/techdocs-node/src/stages/generate/techdocs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/techdocs-node/src/stages/generate/techdocs.ts b/plugins/techdocs-node/src/stages/generate/techdocs.ts index 2f88e1a8ad..d2ad0021be 100644 --- a/plugins/techdocs-node/src/stages/generate/techdocs.ts +++ b/plugins/techdocs-node/src/stages/generate/techdocs.ts @@ -53,7 +53,7 @@ export class TechdocsGenerator implements GeneratorBase { * The default docker image (and version) used to generate content. Public * and static so that techdocs-node consumers can use the same version. */ - public static readonly defaultDockerImage = 'spotify/techdocs:v1.1.0'; + public static readonly defaultDockerImage = 'spotify/techdocs:v1.2.0'; private readonly logger: Logger; private readonly containerRunner?: ContainerRunner; private readonly options: GeneratorConfig; From a8b9357eb71869b0d31fd6fdffcc6adbb0ae5602 Mon Sep 17 00:00:00 2001 From: Morgan Bentell Date: Thu, 23 Mar 2023 11:29:19 +0100 Subject: [PATCH 2/4] add changeset Signed-off-by: Morgan Bentell --- .changeset/modern-seahorses-marry.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/modern-seahorses-marry.md diff --git a/.changeset/modern-seahorses-marry.md b/.changeset/modern-seahorses-marry.md new file mode 100644 index 0000000000..cf88232933 --- /dev/null +++ b/.changeset/modern-seahorses-marry.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-techdocs-node': patch +--- + +Use the latest version of the spotify/techdocs docker image as default From 1f56250ba950dd58485d07915595e6b19fe97022 Mon Sep 17 00:00:00 2001 From: Morgan Bentell Date: Wed, 5 Apr 2023 15:22:05 +0200 Subject: [PATCH 3/4] change from patch to minor since the API is affected Signed-off-by: Morgan Bentell --- .changeset/modern-seahorses-marry.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.changeset/modern-seahorses-marry.md b/.changeset/modern-seahorses-marry.md index cf88232933..11c24ed6d7 100644 --- a/.changeset/modern-seahorses-marry.md +++ b/.changeset/modern-seahorses-marry.md @@ -1,5 +1,5 @@ --- -'@backstage/plugin-techdocs-node': patch +'@backstage/plugin-techdocs-node': minor --- -Use the latest version of the spotify/techdocs docker image as default +Use the latest version `v.1.2.0` of the spotify/techdocs docker image as default From 010764d37cd5a25a9067096c91304159a13a7a52 Mon Sep 17 00:00:00 2001 From: Morgan Bentell Date: Wed, 5 Apr 2023 15:22:29 +0200 Subject: [PATCH 4/4] update api report Signed-off-by: Morgan Bentell --- plugins/techdocs-node/api-report.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/techdocs-node/api-report.md b/plugins/techdocs-node/api-report.md index a734fd404a..2a2fe12946 100644 --- a/plugins/techdocs-node/api-report.md +++ b/plugins/techdocs-node/api-report.md @@ -243,7 +243,7 @@ export class TechdocsGenerator implements GeneratorBase { config: Config; scmIntegrations: ScmIntegrationRegistry; }); - static readonly defaultDockerImage = 'spotify/techdocs:v1.1.0'; + static readonly defaultDockerImage = 'spotify/techdocs:v1.2.0'; static fromConfig( config: Config, options: GeneratorOptions,