This is an automated email from the ASF dual-hosted git repository.
pandalee pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fury-site.git
The following commit(s) were added to refs/heads/main by this push:
new db20cf35 update download page to 0.10.3 (#227)
db20cf35 is described below
commit db20cf35a8f13c3b4662754ee3ec6622061b4cf3
Author: PAN <[email protected]>
AuthorDate: Tue May 27 01:47:29 2025 +0800
update download page to 0.10.3 (#227)
---
blog/2025-05-27-fury_0_10_3_release.md | 34 ++++++++++++++++++++++
blog/authors.yml | 6 ++++
docs/guide/scala_guide.md | 4 +--
docs/start/install.md | 14 ++++-----
.../docusaurus-plugin-content-blog/authors.yml | 6 ++++
.../docusaurus-plugin-content-blog/authors.yml | 6 ++++
.../current/start/install.md | 14 ++++-----
src/pages/download/index.md | 12 ++++----
8 files changed, 74 insertions(+), 22 deletions(-)
diff --git a/blog/2025-05-27-fury_0_10_3_release.md
b/blog/2025-05-27-fury_0_10_3_release.md
new file mode 100644
index 00000000..991e02c8
--- /dev/null
+++ b/blog/2025-05-27-fury_0_10_3_release.md
@@ -0,0 +1,34 @@
+---
+slug: fury_0_10_3_release
+title: Fury v0.10.3 Released
+authors: [pandalee99]
+tags: [fury]
+---
+
+The Apache Fury team is pleased to announce the 0.10.3 release. This is a
minor release that includes [15
PR](https://github.com/apache/fury/compare/v0.10.3...v0.10.3-rc2) from 4
distinct contributors. See the
[Install](https://fury.apache.org/docs/start/install) Page to learn how to get
the libraries for your platform.
+
+## Features
+
+* feat(java): add protobuf serializer for message and byte string by
@chaokunyang in https://github.com/apache/fury/pull/2213
+
+## Bug Fix
+
+* fix(java): mark fury-test-core as test dep in fury extensions by
@chaokunyang in https://github.com/apache/fury/pull/2231
+* fix(java): ensure readVarUint36Small reads full bits regardless of remaining
buffer size by @LouisLou2 in https://github.com/apache/fury/pull/2179
+* fix(java): ensure FuryObjectInputStream.read never returns 0 when length>0
by @X-czh in https://github.com/apache/fury/pull/2205
+* fix(java): Fix empty string processing in MetaStringBytes by @LouisLou2 in
https://github.com/apache/fury/pull/2212
+* fix(java): fix field super class missing in compatible mode by @chaokunyang
in https://github.com/apache/fury/pull/2214
+* fix(python): fix pyfury build using pyproject.toml by @chaokunyang in
https://github.com/apache/fury/pull/2206
+* fix: install bazel by @chaokunyang
+* fix: print python tests exception by @chaokunyang
+* fix: install pyarrow by @chaokunyang
+
+## Chores
+
+* chore: cherry-pick commits for 0.10.3 by @chaokunyang in
https://github.com/apache/fury/pull/2219
+* chore: cherry-pick commits for 0.10.3 by @chaokunyang in
https://github.com/apache/fury/pull/2234
+* chore: Bump version to 0.10.3 by @pandalee99 in
https://github.com/apache/fury/pull/2235
+* chore: fix Releases 0.10 by @pandalee99 in
https://github.com/apache/fury/pull/2236
+* chore(javascript): remove nodejs 12 support by @chaokunyang in
https://github.com/apache/fury/pull/2233
+
+**Full Changelog**:
https://github.com/apache/fury/compare/v0.10.3...v0.10.3-rc2
diff --git a/blog/authors.yml b/blog/authors.yml
index 5bd78cd2..bf4ae431 100644
--- a/blog/authors.yml
+++ b/blog/authors.yml
@@ -15,3 +15,9 @@ liangliangsui:
title: Apache Fury Committer
url: https://github.com/LiangliangSui
image_url: https://github.com/LiangliangSui.png
+
+pandalee99:
+ name: Pan Li
+ title: Apache Fury Committer
+ url: https://github.com/pandalee99
+ image_url: https://github.com/pandalee99.png
diff --git a/docs/guide/scala_guide.md b/docs/guide/scala_guide.md
index df783c9f..31a9d3ec 100644
--- a/docs/guide/scala_guide.md
+++ b/docs/guide/scala_guide.md
@@ -34,13 +34,13 @@ Scala 2 and 3 are both supported.
To add a dependency on Fury scala for scala 2 with sbt, use the following:
```sbt
-libraryDependencies += "org.apache.fury" % "fury-scala_2.13" % "0.10.2"
+libraryDependencies += "org.apache.fury" % "fury-scala_2.13" % "0.10.3"
```
To add a dependency on Fury scala for scala 3 with sbt, use the following:
```sbt
-libraryDependencies += "org.apache.fury" % "fury-scala_3" % "0.10.2"
+libraryDependencies += "org.apache.fury" % "fury-scala_3" % "0.10.3"
```
## Quict Start
diff --git a/docs/start/install.md b/docs/start/install.md
index bc65cbee..9435bdac 100644
--- a/docs/start/install.md
+++ b/docs/start/install.md
@@ -16,13 +16,13 @@ To add a dependency on Fury using Maven, use the following:
<dependency>
<groupId>org.apache.fury</groupId>
<artifactId>fury-core</artifactId>
- <version>0.10.2</version>
+ <version>0.10.3</version>
</dependency>
<!-- row/arrow format support -->
<!-- <dependency>
<groupId>org.apache.fury</groupId>
<artifactId>fury-format</artifactId>
- <version>0.10.2</version>
+ <version>0.10.3</version>
</dependency> -->
```
@@ -34,7 +34,7 @@ To add a dependency on Fury scala for scala 2.13 with maven,
use the following:
<dependency>
<groupId>org.apache.fury</groupId>
<artifactId>fury-scala_2.13</artifactId>
- <version>0.10.2</version>
+ <version>0.10.3</version>
</dependency>
```
@@ -44,20 +44,20 @@ To add a dependency on Fury scala for scala 3 with maven,
use the following:
<dependency>
<groupId>org.apache.fury</groupId>
<artifactId>fury-scala_3</artifactId>
- <version>0.10.2</version>
+ <version>0.10.3</version>
</dependency>
```
To add a dependency on Fury scala for scala 2.13 with sbt, use the following:
```sbt
-libraryDependencies += "org.apache.fury" % "fury-scala_2.13" % "0.10.2"
+libraryDependencies += "org.apache.fury" % "fury-scala_2.13" % "0.10.3"
```
To add a dependency on Fury scala for scala 3 with sbt, use the following:
```sbt
-libraryDependencies += "org.apache.fury" % "fury-scala_3" % "0.10.2"
+libraryDependencies += "org.apache.fury" % "fury-scala_3" % "0.10.3"
```
## Kotlin
@@ -68,6 +68,6 @@ To add a dependency on Fury kotlin with maven, use the
following:
<dependency>
<groupId>org.apache.fury</groupId>
<artifactId>fury-kotlin</artifactId>
- <version>0.10.2</version>
+ <version>0.10.3</version>
</dependency>
```
diff --git a/i18n/en-us/docusaurus-plugin-content-blog/authors.yml
b/i18n/en-us/docusaurus-plugin-content-blog/authors.yml
index 5bd78cd2..bf4ae431 100644
--- a/i18n/en-us/docusaurus-plugin-content-blog/authors.yml
+++ b/i18n/en-us/docusaurus-plugin-content-blog/authors.yml
@@ -15,3 +15,9 @@ liangliangsui:
title: Apache Fury Committer
url: https://github.com/LiangliangSui
image_url: https://github.com/LiangliangSui.png
+
+pandalee99:
+ name: Pan Li
+ title: Apache Fury Committer
+ url: https://github.com/pandalee99
+ image_url: https://github.com/pandalee99.png
diff --git a/i18n/zh-CN/docusaurus-plugin-content-blog/authors.yml
b/i18n/zh-CN/docusaurus-plugin-content-blog/authors.yml
index 5bd78cd2..bf4ae431 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-blog/authors.yml
+++ b/i18n/zh-CN/docusaurus-plugin-content-blog/authors.yml
@@ -15,3 +15,9 @@ liangliangsui:
title: Apache Fury Committer
url: https://github.com/LiangliangSui
image_url: https://github.com/LiangliangSui.png
+
+pandalee99:
+ name: Pan Li
+ title: Apache Fury Committer
+ url: https://github.com/pandalee99
+ image_url: https://github.com/pandalee99.png
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/start/install.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/start/install.md
index c5a76a75..c327cc07 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/start/install.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/start/install.md
@@ -14,13 +14,13 @@ Apache Fury 源码下载请参见 Apache Fury
[download](https://github.com/apac
<dependency>
<groupId>org.apache.fury</groupId>
<artifactId>fury-core</artifactId>
- <version>0.10.2</version>
+ <version>0.10.3</version>
</dependency>
<!-- row/arrow format support -->
<!-- <dependency>
<groupId>org.apache.fury</groupId>
<artifactId>fury-format</artifactId>
- <version>0.10.2</version>
+ <version>0.10.3</version>
</dependency> -->
```
@@ -32,7 +32,7 @@ Apache Fury 源码下载请参见 Apache Fury
[download](https://github.com/apac
<dependency>
<groupId>org.apache.fury</groupId>
<artifactId>fury-scala_2.13</artifactId>
- <version>0.10.2</version>
+ <version>0.10.3</version>
</dependency>
```
@@ -42,20 +42,20 @@ Apache Fury 源码下载请参见 Apache Fury
[download](https://github.com/apac
<dependency>
<groupId>org.apache.fury</groupId>
<artifactId>fury-scala_3</artifactId>
- <version>0.10.2</version>
+ <version>0.10.3</version>
</dependency>
```
要使用 sbt 添加 scala 2.13 的 Fury scala 依赖,请使用以下配置:
```sbt
-libraryDependencies += "org.apache.fury" % "fury-scala_2.13" % "0.10.2"
+libraryDependencies += "org.apache.fury" % "fury-scala_2.13" % "0.10.3"
```
要使用 sbt 添加 scala 3 的 Fury scala 依赖,请使用以下配置:
```sbt
-libraryDependencies += "org.apache.fury" % "fury-scala_3" % "0.10.2"
+libraryDependencies += "org.apache.fury" % "fury-scala_3" % "0.10.3"
```
## Fury Kotlin 安装
@@ -66,6 +66,6 @@ To add a dependency on Fury kotlin with maven, use the
following:
<dependency>
<groupId>org.apache.fury</groupId>
<artifactId>fury-kotlin</artifactId>
- <version>0.10.2</version>
+ <version>0.10.3</version>
</dependency>
```
diff --git a/src/pages/download/index.md b/src/pages/download/index.md
index 53a48e82..70cc91dd 100644
--- a/src/pages/download/index.md
+++ b/src/pages/download/index.md
@@ -9,11 +9,11 @@ For binary install, please see Fury
[install](/docs/start/install/) document.
## The latest release
-The latest source release is 0.10.2:
+The latest source release is 0.10.3:
-| Version | Date | Source | Release Notes |
+| Version | Date | Source | Release Notes |
|---------|------------|--------|---------------|
-| 0.10.2 |2025-05-06 |
[source](https://www.apache.org/dyn/closer.lua/incubator/fury/0.10.2/apache-fury-0.10.2-incubating-src.tar.gz?action=download)
[asc](https://downloads.apache.org/incubator/fury/0.10.2/apache-fury-0.10.2-incubating-src.tar.gz.asc)
[sha512](https://downloads.apache.org/incubator/fury/0.10.2/apache-fury-0.10.2-incubating-src.tar.gz.sha512)
| [release notes](https://github.com/apache/fury/releases/tag/v0.10.2) |
+| 0.10.3 | 2025-05-27 |
[source](https://www.apache.org/dyn/closer.lua/incubator/fury/0.10.3/apache-fury-0.10.3-incubating-src.tar.gz?action=download)
[asc](https://downloads.apache.org/incubator/fury/0.10.3/apache-fury-0.10.3-incubating-src.tar.gz.asc)
[sha512](https://downloads.apache.org/incubator/fury/0.10.3/apache-fury-0.10.3-incubating-src.tar.gz.sha512)
| [release notes](https://github.com/apache/fury/releases/tag/v0.10.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-fury-incubating-0.10.2-src.tar.gz
+sha512sum --check apache-fury-incubating-0.10.3-src.tar.gz
```
It should output something like:
```bash
-apache-fury-incubating-0.10.2-src.tar.gz: OK
+apache-fury-incubating-0.10.3-src.tar.gz: OK
```
### Verifying Signatures
@@ -54,7 +54,7 @@ gpg --import KEYS
Then you can verify signature:
```bash
-gpg --verify apache-fury-incubating-0.10.2-src.tar.gz.asc
apache-fury-incubating-0.10.2-src.tar.gz
+gpg --verify apache-fury-incubating-0.10.3-src.tar.gz.asc
apache-fury-incubating-0.10.3-src.tar.gz
```
If something like the following appears, it means the signature is correct:
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]