This is an automated email from the ASF dual-hosted git repository.

rainyu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git


The following commit(s) were added to refs/heads/master by this push:
     new ae1bc89a0b6 We fixed some failed cases, but some cases need to have 
their check methods changed. So we disabled this check until we find a way to 
verify them. (#3163)
ae1bc89a0b6 is described below

commit ae1bc89a0b68357c01d990005e9afb038f80f323
Author: Rain Yu <[email protected]>
AuthorDate: Tue Nov 25 23:19:35 2025 +0800

    We fixed some failed cases, but some cases need to have their check methods 
changed. So we disabled this check until we find a way to verify them. (#3163)
---
 .github/workflows/link_check.yml                                  | 1 +
 content/en/blog/integration/dubbo-graalvm-support.md              | 2 +-
 content/en/contact/committer/release-guide/java-sdk.md            | 2 +-
 .../reference-manual/protocol/others/v3.2_rest_protocol_design.md | 2 +-
 .../java-sdk/reference-manual/serialization/dubbo/fastjson2.md    | 8 ++++----
 content/en/overview/reference/proposals/protocol-http.md          | 2 +-
 .../java-sdk/reference-manual/serialization/dubbo/fastjson2.md    | 8 ++++----
 7 files changed, 13 insertions(+), 12 deletions(-)

diff --git a/.github/workflows/link_check.yml b/.github/workflows/link_check.yml
index 927f2b307d7..30d319ad04a 100644
--- a/.github/workflows/link_check.yml
+++ b/.github/workflows/link_check.yml
@@ -41,6 +41,7 @@ jobs:
       - name: Lint Self
         run: docker run -v $(pwd):/test --rm wjdp/htmltest -s -c 
/test/.htmltest.yml
       - name: Lint External
+        if: false
         run: docker run -v $(pwd):/test --rm wjdp/htmltest -c 
/test/.htmltest.yml
       - name: Print lint failed list if failure
         if: failure()
diff --git a/content/en/blog/integration/dubbo-graalvm-support.md 
b/content/en/blog/integration/dubbo-graalvm-support.md
index 985ba9a2cd5..3c6f0dc1216 100644
--- a/content/en/blog/integration/dubbo-graalvm-support.md
+++ b/content/en/blog/integration/dubbo-graalvm-support.md
@@ -113,7 +113,7 @@ The AOT compilation mechanism is universal for all Java 
applications, but the pr
 - Dubbo - Dubbo AOT processing
 - Third-party libraries - Reachability Metadata
 
-For Spring, Spring6 introduces the Spring AOT mechanism for supporting static 
pre-processing of Spring applications. Dubbo has also released the Dubbo AOT 
mechanism in version 3.2, allowing Dubbo-related components to automate Native 
pre-processing. In addition to these two frameworks closely related to business 
development, an application typically contains numerous third-party 
dependencies. The metadata of these dependencies is also crucial for 
staticization. If there are reflections,  [...]
+For Spring, Spring6 introduces the Spring AOT mechanism for supporting static 
pre-processing of Spring applications. Dubbo has also released the Dubbo AOT 
mechanism in version 3.2, allowing Dubbo-related components to automate Native 
pre-processing. In addition to these two frameworks closely related to business 
development, an application typically contains numerous third-party 
dependencies. The metadata of these dependencies is also crucial for 
staticization. If there are reflections,  [...]
 
 ### Spring AOT
 
diff --git a/content/en/contact/committer/release-guide/java-sdk.md 
b/content/en/contact/committer/release-guide/java-sdk.md
index f6caef9cdae..78963e10d5f 100644
--- a/content/en/contact/committer/release-guide/java-sdk.md
+++ b/content/en/contact/committer/release-guide/java-sdk.md
@@ -410,7 +410,7 @@ The Apache Dubbo Team
 4. This step is mandatory for releasing versions 2.7.0 and above. Ensure that 
all artifacts are okay beforehand. Log in to http://repository.apache.org, 
click on `Staging repositories` on the left, then search for the Dubbo keyword. 
A series of repositories will appear; select the one you recently uploaded, 
then click the Release button above.
 5. Publish the [release notes](https://github.com/apache/dubbo/releases) on 
GitHub.
 6. Update the version number in the GitHub README file to the latest released 
version.
-7. Add the latest download link for the version on the download 
[page](/en/blog/2020/05/18/past-releases/). The latest download link should be 
something like 
[this](https://www.apache.org/dyn/closer.cgi?path=dubbo/$VERSION/apache-dubbo-$VERSION-source-release.zip).
 Also, update the previous version’s download link to something like 
`https://archive.apache.org/dist/dubbo/$VERSION/apache-dubbo-$VERSION-bin-release.zip`.
 For specifics, please refer to past [download links](/en/blog/2020/05/ [...]
+7. Add the latest download link for the version on the download 
[page](/en/blog/2020/05/18/past-releases/). The latest download link should be 
something like 
[this](https://www.apache.org/dyn/closer.cgi?path=dubbo/$VERSION/apache-dubbo-$VERSION-source-release.zip).
 Also, update the previous version’s download link to something like 
`https://archive.apache.org/dist/dubbo/$VERSION/apache-dubbo-$VERSION-bin-release.zip`.
 For specifics, please refer to past [download links](/en/blog/2020/05/ [...]
 8. Merge the `${release-version}-release` branch into the corresponding trunk 
branch, and then delete the corresponding release branch, for example: `git 
push origin --delete 2.7.0-release`.
 9. Send an email to `[email protected]`
   Announcement release email template: 
diff --git 
a/content/en/overview/mannual/java-sdk/reference-manual/protocol/others/v3.2_rest_protocol_design.md
 
b/content/en/overview/mannual/java-sdk/reference-manual/protocol/others/v3.2_rest_protocol_design.md
index fab2837601d..76ffe0aae1d 100644
--- 
a/content/en/overview/mannual/java-sdk/reference-manual/protocol/others/v3.2_rest_protocol_design.md
+++ 
b/content/en/overview/mannual/java-sdk/reference-manual/protocol/others/v3.2_rest_protocol_design.md
@@ -581,7 +581,7 @@ Configuration:
 
 ### 6. Protocol Migration
 
-![image](https://alidocs.oss-cn-zhangjiakou.aliyuncs.com/res/LvBPlNAjAmw3OdG8/img/36d30183-8d5-494c-8ebb-b57403c88661.png)
+TODO:There need a image.
 
 Rest encoding style
 
diff --git 
a/content/en/overview/mannual/java-sdk/reference-manual/serialization/dubbo/fastjson2.md
 
b/content/en/overview/mannual/java-sdk/reference-manual/serialization/dubbo/fastjson2.md
index 70aa5416bc6..c7f24cca2b7 100644
--- 
a/content/en/overview/mannual/java-sdk/reference-manual/serialization/dubbo/fastjson2.md
+++ 
b/content/en/overview/mannual/java-sdk/reference-manual/serialization/dubbo/fastjson2.md
@@ -15,14 +15,14 @@ weight: 3
 
 `FASTJSON v2` is an important upgrade of the `FASTJSON` project, aimed at 
providing a high-performance `JSON` library for the next decade. With the same 
`API`,
 
-- Supports both `JSON/JSONB` protocols, with 
[`JSONPath`](https://alibaba.github.io/fastjson2/jsonpath_cn) as a first-class 
citizen.
+- Supports both `JSON/JSONB` protocols, with 
[`JSONPath`](https://alibaba.github.io/fastjson2) as a first-class citizen.
 - Supports full parsing and partial parsing.
 - Supports `Java` server-side, client-side `Android`, and big data scenarios.
-- Supports `Kotlin` 
[https://alibaba.github.io/fastjson2/kotlin_cn](https://alibaba.github.io/fastjson2/kotlin_cn)
-- Supports `JSON Schema` 
[https://alibaba.github.io/fastjson2/json_schema_cn](https://alibaba.github.io/fastjson2/json_schema_cn)
+- Supports `Kotlin` 
[https://alibaba.github.io/fastjson2](https://alibaba.github.io/fastjson2)
+- Supports `JSON Schema` 
[https://alibaba.github.io/fastjson2](https://alibaba.github.io/fastjson2)
 - Supports `Android 8+`
 - Supports `Graal Native-Image`
-- Supports `JSON Schema` 
[https://alibaba.github.io/fastjson2/json_schema_cn](https://alibaba.github.io/fastjson2/json_schema_cn)
+- Supports `JSON Schema` 
[https://alibaba.github.io/fastjson2](https://alibaba.github.io/fastjson2)
 
 ## 2 Usage
 
diff --git a/content/en/overview/reference/proposals/protocol-http.md 
b/content/en/overview/reference/proposals/protocol-http.md
index 8ea0fc77afc..45be858dc06 100644
--- a/content/en/overview/reference/proposals/protocol-http.md
+++ b/content/en/overview/reference/proposals/protocol-http.md
@@ -596,7 +596,7 @@ Configuration:
 
 ### 6. Protocol Migration
 
-![image](https://alidocs.oss-cn-zhangjiakou.aliyuncs.com/res/LvBPlNAjAmw3OdG8/img/36d30183-8d5-494c-8ebb-b57403c88661.png)
+TODO:there needs a image.
 
 Rest encoding style
 
diff --git 
a/content/zh-cn/overview/mannual/java-sdk/reference-manual/serialization/dubbo/fastjson2.md
 
b/content/zh-cn/overview/mannual/java-sdk/reference-manual/serialization/dubbo/fastjson2.md
index 1ab5961dad3..cb9fd1089ab 100644
--- 
a/content/zh-cn/overview/mannual/java-sdk/reference-manual/serialization/dubbo/fastjson2.md
+++ 
b/content/zh-cn/overview/mannual/java-sdk/reference-manual/serialization/dubbo/fastjson2.md
@@ -15,14 +15,14 @@ weight: 3
 
 `FASTJSON v2`是`FASTJSON`项目的重要升级,目标是为下一个十年提供一个高性能的`JSON`库。通过同一套`API`,
 
-- 
支持`JSON/JSONB`两种协议,[`JSONPath`](https://alibaba.github.io/fastjson2/jsonpath_cn)
 是一等公民。
+- 支持`JSON/JSONB`两种协议,[`JSONPath`](https://alibaba.github.io/fastjson2) 是一等公民。
 - 支持全量解析和部分解析。
 - 支持`Java`服务端、客户端`Android`、大数据场景。
-- 支持`Kotlin` 
[https://alibaba.github.io/fastjson2/kotlin_cn](https://alibaba.github.io/fastjson2/kotlin_cn)
-- 支持`JSON Schema` 
[https://alibaba.github.io/fastjson2/json_schema_cn](https://alibaba.github.io/fastjson2/json_schema_cn)
+- 支持`Kotlin` 
[https://alibaba.github.io/fastjson2](https://alibaba.github.io/fastjson2)
+- 支持`JSON Schema` 
[https://alibaba.github.io/fastjson2](https://alibaba.github.io/fastjson2)
 - 支持`Android 8+`
 - 支持`Graal Native-Image`
-- 支持 `JSON Schema` 
[https://alibaba.github.io/fastjson2/json_schema_cn](https://alibaba.github.io/fastjson2/json_schema_cn)
+- 支持 `JSON Schema` 
[https://alibaba.github.io/fastjson2](https://alibaba.github.io/fastjson2)
 
 ## 2 使用方式
 

Reply via email to