From 370d570237641f4d79fd2dfd6d15247f440e352e Mon Sep 17 00:00:00 2001 From: Marco Nenciarini Date: Fri, 17 Jul 2026 11:24:01 +0200 Subject: [PATCH 1/3] fix(docs): fix broken anchor link in concepts.md The heading in misc.md was renamed to "Extra Options for Backup, WAL Archiving, and Restore", which changed its anchor slug, but the link in concepts.md still pointed at the old anchor. Update the link in both the current docs and the affected 0.13.0 versioned snapshot. Signed-off-by: Marco Nenciarini --- web/docs/concepts.md | 2 +- web/versioned_docs/version-0.13.0/concepts.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/docs/concepts.md b/web/docs/concepts.md index 3832df37..388714a6 100644 --- a/web/docs/concepts.md +++ b/web/docs/concepts.md @@ -43,7 +43,7 @@ as **tarballs** in the `base` directory, following the The plugin also offers advanced capabilities, including [backup tagging](misc.md#backup-object-tagging) and -[extra options for backups and WAL archiving](misc.md#extra-options-for-backup-and-wal-archiving). +[extra options for backups and WAL archiving](misc.md#extra-options-for-backup-wal-archiving-and-restore). :::tip For details, refer to the diff --git a/web/versioned_docs/version-0.13.0/concepts.md b/web/versioned_docs/version-0.13.0/concepts.md index 3832df37..388714a6 100644 --- a/web/versioned_docs/version-0.13.0/concepts.md +++ b/web/versioned_docs/version-0.13.0/concepts.md @@ -43,7 +43,7 @@ as **tarballs** in the `base` directory, following the The plugin also offers advanced capabilities, including [backup tagging](misc.md#backup-object-tagging) and -[extra options for backups and WAL archiving](misc.md#extra-options-for-backup-and-wal-archiving). +[extra options for backups and WAL archiving](misc.md#extra-options-for-backup-wal-archiving-and-restore). :::tip For details, refer to the From e9cacecd102b7458a3eec9d78574c85932d6eee9 Mon Sep 17 00:00:00 2001 From: Marco Nenciarini Date: Fri, 17 Jul 2026 11:24:07 +0200 Subject: [PATCH 2/3] fix: migrate onBrokenMarkdownLinks to markdown.hooks The top-level onBrokenMarkdownLinks config option is deprecated in favor of markdown.hooks.onBrokenMarkdownLinks and will be removed in Docusaurus v4. Signed-off-by: Marco Nenciarini --- web/docusaurus.config.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/web/docusaurus.config.ts b/web/docusaurus.config.ts index a319f1b2..d90f8da4 100644 --- a/web/docusaurus.config.ts +++ b/web/docusaurus.config.ts @@ -21,7 +21,12 @@ const config: Config = { deploymentBranch: 'gh-pages', onBrokenLinks: 'throw', - onBrokenMarkdownLinks: 'throw', + + markdown: { + hooks: { + onBrokenMarkdownLinks: 'throw', + }, + }, // Even if you don't use internationalization, you can use this field to set // useful metadata like html lang. For example, if your site is Chinese, you From 9445cb145e42925fa26cf6786fefaa30b38bc892 Mon Sep 17 00:00:00 2001 From: Marco Nenciarini Date: Fri, 17 Jul 2026 11:24:18 +0200 Subject: [PATCH 3/3] fix: bump transitive uuid dependency to patched version Uuid 8.3.2, pulled in transitively via docusaurus/core, docusaurus/preset-classic, and docusaurus-search-local, is affected by a missing buffer bounds check in v3/v5/v6 when a buffer is provided. Force resolution to >=11.1.1. Signed-off-by: Marco Nenciarini --- web/package.json | 3 ++- web/yarn.lock | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/web/package.json b/web/package.json index 2d6031e3..b8f157dd 100644 --- a/web/package.json +++ b/web/package.json @@ -47,6 +47,7 @@ }, "resolutions": { "webpackbar": "^7.0.0", - "serialize-javascript": ">=7.0.5" + "serialize-javascript": ">=7.0.5", + "uuid": ">=11.1.1" } } diff --git a/web/yarn.lock b/web/yarn.lock index c00d6121..5b0c7aa4 100644 --- a/web/yarn.lock +++ b/web/yarn.lock @@ -9215,10 +9215,10 @@ utils-merge@1.0.1: resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== -uuid@^8.3.2: - version "8.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" - integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== +uuid@>=11.1.1, uuid@^8.3.2: + version "14.0.1" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-14.0.1.tgz#8a5975b3e038902bfd169a10b5202f5ec0cf3faf" + integrity sha512-6ZxzVpzDXDa3bJWaHilVayA+BH/1zmxCJoVgvmqJnid/gPoKHxUrS/aC/T6LGQtNHT+XHG9fXPJB4d+IrU30Ew== value-equal@^1.0.1: version "1.0.1"