This is an automated email from the ASF dual-hosted git repository.
leonard pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fluss.git
The following commit(s) were added to refs/heads/main by this push:
new 543c703fb [FLUSS-1961][docs] Upgrade Docusaurus to 3.9.2 (#1962)
543c703fb is described below
commit 543c703fb44cae8714ddb5c57fab911cf5f8eaee
Author: Rion Williams <[email protected]>
AuthorDate: Mon Dec 1 20:04:43 2025 -0600
[FLUSS-1961][docs] Upgrade Docusaurus to 3.9.2 (#1962)
This closes #1962.
---
.github/workflows/docs-check.yaml | 2 +-
website/docusaurus.config.ts | 7 +++++--
website/package.json | 14 +++++++-------
3 files changed, 13 insertions(+), 10 deletions(-)
diff --git a/.github/workflows/docs-check.yaml
b/.github/workflows/docs-check.yaml
index 0572b84a2..7e42cdccc 100644
--- a/.github/workflows/docs-check.yaml
+++ b/.github/workflows/docs-check.yaml
@@ -44,7 +44,7 @@ jobs:
run: ./build_versioned_docs.sh
- uses: actions/setup-node@v4
with:
- node-version: 18
+ node-version: 20
- name: Install dependencies
run: npm install
- name: Test build website
diff --git a/website/docusaurus.config.ts b/website/docusaurus.config.ts
index 0965ee014..2edc586f4 100644
--- a/website/docusaurus.config.ts
+++ b/website/docusaurus.config.ts
@@ -41,7 +41,6 @@ const config: Config = {
trailingSlash: true,
onBrokenLinks: 'throw',
- onBrokenMarkdownLinks: 'warn',
// 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
@@ -51,7 +50,11 @@ const config: Config = {
locales: ['en'],
},
-
+ markdown: {
+ hooks: {
+ onBrokenMarkdownLinks: 'warn'
+ }
+ },
presets: [
[
diff --git a/website/package.json b/website/package.json
index 5c9ff5bba..344480e0a 100644
--- a/website/package.json
+++ b/website/package.json
@@ -15,9 +15,9 @@
"typecheck": "tsc"
},
"dependencies": {
- "@docusaurus/core": "^3.8.0",
- "@docusaurus/plugin-pwa": "^3.8.0",
- "@docusaurus/preset-classic": "^3.8.0",
+ "@docusaurus/core": "^3.9.2",
+ "@docusaurus/plugin-pwa": "^3.9.2",
+ "@docusaurus/preset-classic": "^3.9.2",
"@mdx-js/react": "^3.0.0",
"algoliasearch": "^5.10.2",
"clsx": "^2.0.0",
@@ -28,9 +28,9 @@
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
- "@docusaurus/module-type-aliases": "^3.8.0",
- "@docusaurus/tsconfig": "^3.8.0",
- "@docusaurus/types": "^3.8.0",
+ "@docusaurus/module-type-aliases": "^3.9.2",
+ "@docusaurus/tsconfig": "^3.9.2",
+ "@docusaurus/types": "^3.9.2",
"typescript": "~5.5.2"
},
"browserslist": {
@@ -46,6 +46,6 @@
]
},
"engines": {
- "node": ">=18.0"
+ "node": ">=20.0"
}
}