diff --git a/.changeset/techdocs-slow-zebras-camp.md b/.changeset/techdocs-slow-zebras-camp.md new file mode 100644 index 0000000000..267e874284 --- /dev/null +++ b/.changeset/techdocs-slow-zebras-camp.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-techdocs-node': patch +--- + +Bumps the version of the techdocs generator container used. diff --git a/plugins/techdocs-node/report.api.md b/plugins/techdocs-node/report.api.md index c6f626dca8..945f6d8bb3 100644 --- a/plugins/techdocs-node/report.api.md +++ b/plugins/techdocs-node/report.api.md @@ -313,7 +313,7 @@ export class TechdocsGenerator implements GeneratorBase { config: Config; scmIntegrations: ScmIntegrationRegistry; }); - static readonly defaultDockerImage = 'spotify/techdocs:v1.2.4'; + static readonly defaultDockerImage = 'spotify/techdocs:v1.2.6'; static fromConfig( config: Config, options: GeneratorOptions, diff --git a/plugins/techdocs-node/src/stages/generate/techdocs.ts b/plugins/techdocs-node/src/stages/generate/techdocs.ts index 7329878142..1722bda838 100644 --- a/plugins/techdocs-node/src/stages/generate/techdocs.ts +++ b/plugins/techdocs-node/src/stages/generate/techdocs.ts @@ -54,7 +54,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.2.4'; + public static readonly defaultDockerImage = 'spotify/techdocs:v1.2.6'; private readonly logger: LoggerService; private readonly containerRunner?: TechDocsContainerRunner; private readonly options: GeneratorConfig;