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

chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fory-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 571b854b0 release 0.12.3 (#321)
571b854b0 is described below

commit 571b854b03cd2a3f0311c966bdede1f011207026
Author: Shawn Yang <[email protected]>
AuthorDate: Tue Sep 23 11:15:20 2025 +0800

    release 0.12.3 (#321)
---
 blog/2025-09-23-fory_0_12_3_release.md               | 20 ++++++++++++++++++++
 docs/docs/start/install.md                           | 16 ++++++++--------
 docs/guide/scala_guide.md                            |  2 +-
 .../current/docs/start/install.md                    | 14 +++++++-------
 .../version-0.12/docs/start/install.md               | 14 +++++++-------
 src/pages/download/index.md                          | 10 +++++-----
 versioned_docs/version-0.12/docs/start/install.md    | 16 ++++++++--------
 7 files changed, 56 insertions(+), 36 deletions(-)

diff --git a/blog/2025-09-23-fory_0_12_3_release.md 
b/blog/2025-09-23-fory_0_12_3_release.md
new file mode 100644
index 000000000..f610b4a05
--- /dev/null
+++ b/blog/2025-09-23-fory_0_12_3_release.md
@@ -0,0 +1,20 @@
+---
+slug: fory_0_12_3_release
+title: Fory v0.12.3 Released
+authors: [chaokunyang]
+tags: [fory]
+---
+
+The Apache Fory team is pleased to announce the 0.12.3 release. This is a 
minor release that includes [4 
PR](https://github.com/apache/fory/compare/v0.12.2...v0.12.3). See the 
[Install](https://fury.apache.org/docs/docs/start/install) Page to learn how to 
get the libraries for your platform.
+
+## Features
+
+* feat(java): support concurent map serialization when being updated by 
@chaokunyang  in https://github.com/apache/fory/pull/2617
+* feat(python): support limit pyfory depth by @chaokunyang  in 
https://github.com/apache/fory/pull/2625
+* feat(python): drop-in replacement for pickle serialization by @chaokunyang  
in https://github.com/apache/fory/pull/2629
+
+## Bug Fixes
+
+* fix(java): fix get nested genericType for codegen by @chaokunyang  in 
https://github.com/apache/fory/pull/2632
+
+**Full Changelog**: https://github.com/apache/fory/compare/v0.12.2...v0.12.3
diff --git a/docs/docs/start/install.md b/docs/docs/start/install.md
index 80efb1542..bde750807 100644
--- a/docs/docs/start/install.md
+++ b/docs/docs/start/install.md
@@ -16,13 +16,13 @@ To add a dependency on Apache Fory™ using Maven, use the 
following:
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-core</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency>
 <!-- row/arrow format support -->
 <!-- <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-format</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency> -->
 ```
 
@@ -34,7 +34,7 @@ To add a dependency on Apache Fory™ scala for scala 2.13 with 
maven, use the f
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-scala_2.13</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency>
 ```
 
@@ -44,20 +44,20 @@ To add a dependency on Apache Fory™ scala for scala 3 with 
maven, use the foll
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-scala_3</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency>
 ```
 
 To add a dependency on Apache Fory™ scala for scala 2.13 with sbt, use the 
following:
 
 ```sbt
-libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.12.2"
+libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.12.3"
 ```
 
 To add a dependency on Apache Fory™ scala for scala 3 with sbt, use the 
following:
 
 ```sbt
-libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.12.2"
+libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.12.3"
 ```
 
 ## Kotlin
@@ -68,7 +68,7 @@ To add a dependency on Apache Fory™ kotlin with maven, use 
the following:
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-kotlin</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency>
 ```
 
@@ -76,7 +76,7 @@ To add a dependency on Apache Fory™ kotlin with maven, use 
the following:
 
 ```bash
 python -m pip install --upgrade pip
-pip install pyfory==0.12.2
+pip install pyfory==0.12.3
 ```
 
 ## JavaScript
diff --git a/docs/guide/scala_guide.md b/docs/guide/scala_guide.md
index fe3d0cdd9..11524f519 100644
--- a/docs/guide/scala_guide.md
+++ b/docs/guide/scala_guide.md
@@ -34,7 +34,7 @@ Scala 2 and 3 are both supported.
 To add a dependency on Apache Fory™ scala for with sbt, use the following:
 
 ```sbt
-libraryDependencies += "org.apache.fory" %% "fory-scala" % "0.12.2"
+libraryDependencies += "org.apache.fory" %% "fory-scala" % "0.12.3"
 ```
 
 ## Quick Start
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/docs/start/install.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/docs/start/install.md
index d25992769..071b8001b 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/docs/start/install.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/docs/start/install.md
@@ -14,13 +14,13 @@ Apache Fory™ 源码下载请参见 Apache Fory™ 
[download](https://github.co
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-core</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency>
 <!-- row/arrow format support -->
 <!-- <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-format</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency> -->
 ```
 
@@ -32,7 +32,7 @@ Apache Fory™ 源码下载请参见 Apache Fory™ [download](https://github.co
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-scala_2.13</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency>
 ```
 
@@ -42,20 +42,20 @@ Apache Fory™ 源码下载请参见 Apache Fory™ 
[download](https://github.co
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-scala_3</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency>
 ```
 
 要使用 sbt 添加 scala 2.13 的 Fory scala 依赖,请使用以下配置:
 
 ```sbt
-libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.12.2"
+libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.12.3"
 ```
 
 要使用 sbt 添加 scala 3 的 Fory scala 依赖,请使用以下配置:
 
 ```sbt
-libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.12.2"
+libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.12.3"
 ```
 
 ## Apache Fory™ Kotlin 安装
@@ -66,6 +66,6 @@ To add a dependency on Apache Fory™kotlin with maven, use the 
following:
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-kotlin</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency>
 ```
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.12/docs/start/install.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.12/docs/start/install.md
index 405709353..1bbb71dab 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.12/docs/start/install.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.12/docs/start/install.md
@@ -14,13 +14,13 @@ Apache Fory™ 源码下载请参见 Apache Fory 
[download](https://github.com/a
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-core</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency>
 <!-- row/arrow format support -->
 <!-- <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-format</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency> -->
 ```
 
@@ -32,7 +32,7 @@ Apache Fory™ 源码下载请参见 Apache Fory 
[download](https://github.com/a
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-scala_2.13</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency>
 ```
 
@@ -42,20 +42,20 @@ Apache Fory™ 源码下载请参见 Apache Fory 
[download](https://github.com/a
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-scala_3</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency>
 ```
 
 要使用 sbt 添加 scala 2.13 的 Fory scala 依赖,请使用以下配置:
 
 ```sbt
-libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.12.2"
+libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.12.3"
 ```
 
 要使用 sbt 添加 scala 3 的 Fory scala 依赖,请使用以下配置:
 
 ```sbt
-libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.12.2"
+libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.12.3"
 ```
 
 ## Fory Kotlin 安装
@@ -66,7 +66,7 @@ To add a dependency on Apache Fory™kotlin with maven, use the 
following:
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-kotlin</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency>
 ```
 
diff --git a/src/pages/download/index.md b/src/pages/download/index.md
index cadd34ae6..8c8356651 100644
--- a/src/pages/download/index.md
+++ b/src/pages/download/index.md
@@ -9,11 +9,11 @@ For binary install, please see Apache Fory™ 
[install](/docs/docs/start/install
 
 ## The latest release
 
-The latest source release is 0.12.2:
+The latest source release is 0.12.3:
 
 | Version | Date       | Source                                                
                                                                                
                                                                                
                                                              | Release Notes   
                                                     |
 | ------- | ---------- | 
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 | -------------------------------------------------------------------- |
-| 0.12.2  | 2025-09-01 | 
[source](https://www.apache.org/dyn/closer.lua/fory/0.12.2/apache-fory-0.12.2-src.tar.gz?action=download)
 
[asc](https://downloads.apache.org/fory/0.12.2/apache-fory-0.12.2-src.tar.gz.asc)
 
[sha512](https://downloads.apache.org/fory/0.12.2/apache-fory-0.12.2-src.tar.gz.sha512)
 | [release notes](https://github.com/apache/fory/releases/tag/v0.12.2) |
+| 0.12.3  | 2025-09-01 | 
[source](https://www.apache.org/dyn/closer.lua/fory/0.12.3/apache-fory-0.12.3-src.tar.gz?action=download)
 
[asc](https://downloads.apache.org/fory/0.12.3/apache-fory-0.12.3-src.tar.gz.asc)
 
[sha512](https://downloads.apache.org/fory/0.12.3/apache-fory-0.12.3-src.tar.gz.sha512)
 | [release notes](https://github.com/apache/fory/releases/tag/v0.12.3) |
 
 ## All archived releases
 
@@ -31,13 +31,13 @@ These files are named after the files they relate to but 
have `.sha512/.asc` ext
 To verify the SHA digests, you need the `.tgz` and its associated 
`.tgz.sha512` file. An example command:
 
 ```bash
-sha512sum --check apache-fory-0.12.2-src.tar.gz
+sha512sum --check apache-fory-0.12.3-src.tar.gz
 ```
 
 It should output something like:
 
 ```bash
-apache-fory-0.12.2-src.tar.gz: OK
+apache-fory-0.12.3-src.tar.gz: OK
 ```
 
 ### Verifying Signatures
@@ -54,7 +54,7 @@ gpg --import KEYS
 Then you can verify signature:
 
 ```bash
-gpg --verify apache-fory-0.12.2-src.tar.gz.asc apache-fory-0.12.2-src.tar.gz
+gpg --verify apache-fory-0.12.3-src.tar.gz.asc apache-fory-0.12.3-src.tar.gz
 ```
 
 If something like the following appears, it means the signature is correct:
diff --git a/versioned_docs/version-0.12/docs/start/install.md 
b/versioned_docs/version-0.12/docs/start/install.md
index 36d2e0550..edfd984cc 100644
--- a/versioned_docs/version-0.12/docs/start/install.md
+++ b/versioned_docs/version-0.12/docs/start/install.md
@@ -16,13 +16,13 @@ To add a dependency on Apache Fory™ using Maven, use the 
following:
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-core</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency>
 <!-- row/arrow format support -->
 <!-- <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-format</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency> -->
 ```
 
@@ -34,7 +34,7 @@ To add a dependency on Apache Fory™scala for scala 2.13 with 
maven, use the fo
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-scala_2.13</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency>
 ```
 
@@ -44,20 +44,20 @@ To add a dependency on Apache Fory™scala for scala 3 with 
maven, use the follo
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-scala_3</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency>
 ```
 
 To add a dependency on Apache Fory™scala for scala 2.13 with sbt, use the 
following:
 
 ```sbt
-libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.12.2"
+libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.12.3"
 ```
 
 To add a dependency on Apache Fory™scala for scala 3 with sbt, use the 
following:
 
 ```sbt
-libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.12.2"
+libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.12.3"
 ```
 
 ## Kotlin
@@ -68,7 +68,7 @@ To add a dependency on Apache Fory™kotlin with maven, use the 
following:
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-kotlin</artifactId>
-  <version>0.12.2</version>
+  <version>0.12.3</version>
 </dependency>
 ```
 
@@ -76,7 +76,7 @@ To add a dependency on Apache Fory™kotlin with maven, use the 
following:
 
 ```bash
 python -m pip install --upgrade pip
-pip install pyfory==0.12.2
+pip install pyfory==0.12.3
 ```
 
 ## JavaScript


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to