From e9442564911c31c7b223ce517c4edea4b262ae26 Mon Sep 17 00:00:00 2001 From: Nico Alba Date: Wed, 1 Jul 2026 21:08:46 +0000 Subject: [PATCH 1/3] fix banners --- unified-doc/docusaurus.config.ts | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/unified-doc/docusaurus.config.ts b/unified-doc/docusaurus.config.ts index edf8da8..08dd7d8 100644 --- a/unified-doc/docusaurus.config.ts +++ b/unified-doc/docusaurus.config.ts @@ -526,11 +526,8 @@ const config: Config = { type: 'warning', links: [ { text: 'release policy', href: 'https://github.com/openziti/ziti/blob/main/RELEASE_POLICY.md' }, + { text: 'Active LTS (2.0.x)', href: '/docs/openziti/2.0/intro' }, ], - versionLink: { - text: 'Active LTS (2.0.x)', - fallbackHref: '/docs/openziti/2.0/intro', - }, }, { pathPrefix: '/docs/openziti/2.0', @@ -544,10 +541,9 @@ const config: Config = { pathPrefix: '/docs/openziti/', message: `You're viewing the latest docs, which may cover features not yet in a stable release. For production, see Active LTS (2.0.x).`, type: 'info', - versionLink: { - text: 'Active LTS (2.0.x)', - fallbackHref: '/docs/openziti/2.0/intro', - }, + links: [ + { text: 'Active LTS (2.0.x)', href: '/docs/openziti/2.0/intro' }, + ], }, ], resourcesPickerSections: [ From 447985f11125443487671d8606e5af3eb67be868 Mon Sep 17 00:00:00 2001 From: Nico Alba Date: Wed, 1 Jul 2026 22:00:48 +0000 Subject: [PATCH 2/3] Point openziti version banners at /active The Active LTS URL moves from /2.0 to /active in the ziti-doc version-fix PR; update the banner path prefixes and links to match. Co-Authored-By: Claude Fable 5 --- unified-doc/docusaurus.config.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/unified-doc/docusaurus.config.ts b/unified-doc/docusaurus.config.ts index 08dd7d8..8d76f27 100644 --- a/unified-doc/docusaurus.config.ts +++ b/unified-doc/docusaurus.config.ts @@ -518,7 +518,7 @@ const config: Config = { }, netfoundry: { // Matched first-to-last by path prefix (see theme DocVersionBanner), so order - // most-specific first: /maint and /2.0 must precede the root catch-all for Latest. + // most-specific first: /maint and /active must precede the root catch-all for Latest. versionBanners: [ { pathPrefix: '/docs/openziti/maint', @@ -526,11 +526,11 @@ const config: Config = { type: 'warning', links: [ { text: 'release policy', href: 'https://github.com/openziti/ziti/blob/main/RELEASE_POLICY.md' }, - { text: 'Active LTS (2.0.x)', href: '/docs/openziti/2.0/intro' }, + { text: 'Active LTS (2.0.x)', href: '/docs/openziti/active/intro' }, ], }, { - pathPrefix: '/docs/openziti/2.0', + pathPrefix: '/docs/openziti/active', message: `This is the Active LTS (2.0.x) release. For the newest features, see Latest.`, type: 'note', links: [ @@ -542,7 +542,7 @@ const config: Config = { message: `You're viewing the latest docs, which may cover features not yet in a stable release. For production, see Active LTS (2.0.x).`, type: 'info', links: [ - { text: 'Active LTS (2.0.x)', href: '/docs/openziti/2.0/intro' }, + { text: 'Active LTS (2.0.x)', href: '/docs/openziti/active/intro' }, ], }, ], From 63d8d6a3495328e9dea30f6ee41189818f33035b Mon Sep 17 00:00:00 2001 From: Nico Alba Date: Wed, 1 Jul 2026 22:32:27 +0000 Subject: [PATCH 3/3] Split the maintenance banner pointers: support vs newest features Match the ziti-doc banner copy: active support points at Active LTS (2.0.x), newest features at Latest. Co-Authored-By: Claude Fable 5 --- unified-doc/docusaurus.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/unified-doc/docusaurus.config.ts b/unified-doc/docusaurus.config.ts index 8d76f27..1eb97e3 100644 --- a/unified-doc/docusaurus.config.ts +++ b/unified-doc/docusaurus.config.ts @@ -522,11 +522,12 @@ const config: Config = { versionBanners: [ { pathPrefix: '/docs/openziti/maint', - message: `Maintenance LTS (1.6.x) — receives security fixes and critical production defect patches only. See the release policy for more information. For new features and active support, see Active LTS (2.0.x).`, + message: `Maintenance LTS (1.6.x) — receives security fixes and critical production defect patches only. See the release policy for more information. For active support, see Active LTS (2.0.x). For the newest features, see Latest.`, type: 'warning', links: [ { text: 'release policy', href: 'https://github.com/openziti/ziti/blob/main/RELEASE_POLICY.md' }, { text: 'Active LTS (2.0.x)', href: '/docs/openziti/active/intro' }, + { text: 'Latest', href: '/docs/openziti/intro' }, ], }, {