From 76d590d009a9980578034c731361a5d39a1fdf5b Mon Sep 17 00:00:00 2001 From: Christopher Kolstad Date: Mon, 10 Jan 2022 11:39:55 +0100 Subject: [PATCH 1/5] Upgrade docusaurus to 2.0.0.beta.14 from beta.9 --- website/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/package.json b/website/package.json index dda2976bf03e..80b7d8c58269 100644 --- a/website/package.json +++ b/website/package.json @@ -14,9 +14,9 @@ "write-heading-ids": "docusaurus write-heading-ids" }, "dependencies": { - "@docusaurus/core": "2.0.0-beta.9", - "@docusaurus/plugin-client-redirects": "2.0.0-beta.9", - "@docusaurus/preset-classic": "2.0.0-beta.9", + "@docusaurus/core": "2.0.0-beta.14", + "@docusaurus/plugin-client-redirects": "2.0.0-beta.14", + "@docusaurus/preset-classic": "2.0.0-beta.14", "@docusaurus/remark-plugin-npm2yarn": "2.0.0-beta.14", "@mdx-js/react": "1.6.22", "@svgr/webpack": "6.1.2", From c3c7e1b4bb02dd40eb92e88f83a451f035f13da8 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Tue, 11 Jan 2022 10:35:25 +0100 Subject: [PATCH 2/5] docs: update link to integrations --- website/docusaurus.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index 3ea88305efe3..85df56715e4e 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -31,7 +31,7 @@ module.exports = { activeBaseRegex: '(user_guide|sdks|addons|advanced)', }, { to: 'deploy/getting_started', label: 'Deploy and manage' }, - { to: 'integrations/integrations', label: 'Integrations' }, + { to: 'integrations', label: 'Integrations' }, { to: '/api', label: 'API' }, { href: 'https://www.getunleash.io/plans', From adec5aa25c8270e5a66c019b3b8a1031e73505d9 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Tue, 11 Jan 2022 10:36:23 +0100 Subject: [PATCH 3/5] docs: add redirect from old integrations url --- website/docusaurus.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index 85df56715e4e..4b08c86c2500 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -146,6 +146,10 @@ module.exports = { to: '/advanced/toggle_variants', from: '/toggle_variants', }, + { + to: '/integrations' + from: '/integrations/integrations' + }, ], createRedirects: function(toPath) { if ( From 29ed242df63015401fe36dab1da0d94f44a854bf Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Tue, 11 Jan 2022 10:38:22 +0100 Subject: [PATCH 4/5] docs(fix): add missing commas --- website/docusaurus.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index 4b08c86c2500..05c6d689f0a4 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -147,8 +147,8 @@ module.exports = { from: '/toggle_variants', }, { - to: '/integrations' - from: '/integrations/integrations' + to: '/integrations', + from: '/integrations/integrations', }, ], createRedirects: function(toPath) { From 4917287098edd862fba1e82507038307c8fc5bbd Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Tue, 11 Jan 2022 10:43:34 +0100 Subject: [PATCH 5/5] fix(docs): fix broken links to addons --- website/docs/addons/addons.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/website/docs/addons/addons.md b/website/docs/addons/addons.md index f39079fac61f..7422ea4a7040 100644 --- a/website/docs/addons/addons.md +++ b/website/docs/addons/addons.md @@ -9,10 +9,10 @@ Unleash Addons allows you to extend Unleash with new functionality. Currently, a Currently Unleash support the following Addons out of the box: -- [Webhook](./webhook) - A generic way to post messages from Unleash to third party services. -- [Slack](./slack) - Allows Unleash to post updates to Slack. -- [Microsoft Teams](./teams) - Allows Unleash to post updates to Microsoft Teams. -- [Datadog](./datadog) -allows Unleash to post Updates to Datadog when a feature toggle is updated. +- [Webhook](webhook.md) - A generic way to post messages from Unleash to third party services. +- [Slack](slack.md) - Allows Unleash to post updates to Slack. +- [Microsoft Teams](teams.md) - Allows Unleash to post updates to Microsoft Teams. +- [Datadog](datadog.md) -allows Unleash to post Updates to Datadog when a feature toggle is updated. In future releases we plan to support community built addons.