This is an automated email from the ASF dual-hosted git repository.
kassiez pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push:
new cf99d7d39bd Update 2.1.10 release (#2395)
cf99d7d39bd is described below
commit cf99d7d39bda68ad27741990c37fc08d8713f745
Author: KassieZ <[email protected]>
AuthorDate: Mon May 19 15:25:12 2025 +0800
Update 2.1.10 release (#2395)
## Versions
- [ ] dev
- [ ] 3.0
- [ ] 2.1
- [ ] 2.0
## Languages
- [ ] Chinese
- [ ] English
## Docs Checklist
- [ ] Checked by AI
- [ ] Test Cases Built
---
blog/release-note-2.1.10.md | 151 +++++++++++++++++++++
blog/release-note-3.0.5.md | 2 -
docs/releasenotes/all-release.md | 6 +-
docs/releasenotes/v2.1/release-2.1.10.md | 136 +++++++++++++++++++
.../current/releasenotes/all-release.md | 4 +-
.../current/releasenotes/v2.1/release-2.1.10.md | 142 +++++++++++++++++++
.../version-2.0/releasenotes/all-release.md | 4 +-
.../releasenotes/v2.1/release-2.1.10.md | 142 +++++++++++++++++++
.../version-2.1/releasenotes/all-release.md | 5 +-
.../releasenotes/v2.1/release-2.1.10.md | 142 +++++++++++++++++++
.../version-3.0/releasenotes/all-release.md | 4 +-
.../releasenotes/v2.1/release-2.1.10.md | 142 +++++++++++++++++++
sidebars.json | 1 +
src/constant/download.data.ts | 70 +++++++---
src/constant/newsletter.data.ts | 7 +-
static/images/2.1.10.jpg | Bin 0 -> 411494 bytes
.../version-2.0/releasenotes/all-release.md | 4 +-
.../releasenotes/v2.1/release-2.1.10.md | 136 +++++++++++++++++++
.../version-2.1/releasenotes/all-release.md | 4 +-
.../releasenotes/v2.1/release-2.1.10.md | 136 +++++++++++++++++++
.../version-3.0/releasenotes/all-release.md | 4 +-
.../releasenotes/v2.1/release-2.1.10.md | 136 +++++++++++++++++++
versioned_sidebars/version-2.0-sidebars.json | 1 +
versioned_sidebars/version-2.1-sidebars.json | 3 +-
versioned_sidebars/version-3.0-sidebars.json | 3 +-
25 files changed, 1351 insertions(+), 34 deletions(-)
diff --git a/blog/release-note-2.1.10.md b/blog/release-note-2.1.10.md
new file mode 100644
index 00000000000..68b7b762499
--- /dev/null
+++ b/blog/release-note-2.1.10.md
@@ -0,0 +1,151 @@
+---
+{
+ 'title': 'Apache Doris 2.1.10 released',
+ 'summary': 'This version introduces continuous upgrades and enhancements
in Query Execution Engine and Lakehouse. It also resolves critical bugs to
improve stability and performance.',
+ 'description': 'This version introduces continuous upgrades and
enhancements in Query Execution Engine and Lakehouse. It also resolves critical
bugs to improve stability and performance.',
+ 'date': '2025-05-17',
+ 'author': 'Apache Doris',
+ 'tags': ['Release Notes'],
+ 'picked': "true",
+ 'order': "1",
+ "image": '/images/2.1.10.jpg'
+}
+---
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+ http://www.apache.org/licenses/LICENSE-2.0
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+
+Dear Community, **Apache Doris version 2.1.10 is now available**. This version
introduces continuous upgrades and enhancements in Query Execution Engine and
Lakehouse. It also resolves critical bugs to improve stability and performance.
+
+
+- [Quick Download](https://doris.apache.org/download)
+
+- [GitHub Release](https://github.com/apache/doris/releases/tag/2.1.10-rc01)
+
+
+
+## Behavior Changes
+
+- DELETE no longer incorrectly requires the SELECT_PRIV permission on the
target table. [ #49794](https://github.com/apache/doris/pull/49794)
+- Insert Overwrite no longer restricts concurrent operations on the same table
to 1. [ #48673](https://github.com/apache/doris/pull/48673)
+- Merge on write unique tables prohibit the use of time-series compaction. [
#49905](https://github.com/apache/doris/pull/49905)
+- Building indexes on VARIANT type columns is prohibited. [
#49159](https://github.com/apache/doris/pull/49159)
+
+## New Features
+
+### Query Execution Engine
+
+- Added support for more GEO type computation functions: `ST_CONTAINS`,
`ST_INTERSECTS`, `ST_TOUCHES`, `GeometryFromText`, `ST_Intersects`,
`ST_Disjoint`, `ST_Touches`. [
#49665](https://github.com/apache/doris/pull/49665) [
#48695](https://github.com/apache/doris/pull/48695)
+- Added support for the `years_of_week` function. [
#48870](https://github.com/apache/doris/pull/48870)
+
+### Lakehouse
+
+- Hive Catalog now supports catalog-level partition cache control. [
#50724](https://github.com/apache/doris/pull/50724)
+ - For more details, refer to the[
](https://doris.apache.org/docs/dev/lakehouse/meta-cache)[documentation](https://doris.apache.org/docs/dev/lakehouse/meta-cache#disable-hive-catalog-metadata-cache).
+
+## Improvements
+
+### Lakehouse
+
+- Upgraded the Paimon dependency version to 1.0.1.
+- Upgraded the Iceberg dependency version to 1.6.1.
+- Included the memory overhead of Parquet Footer in the Memory Tracker to
avoid potential OOM issues. [
#49037](https://github.com/apache/doris/pull/49037)
+- Optimized the predicate pushdown logic for JDBC Catalog, supporting pushdown
of AND/OR connected predicates. [
#50542](https://github.com/apache/doris/pull/50542)
+- Precompiled versions now include the Jindofs extension package by default to
support Alibaba Cloud oss-hdfs access.
+
+### Semi-Structured Data Management
+
+- ANY function now supports JSON type. [
#50311](https://github.com/apache/doris/pull/50311)
+- JSON_REPLACE, JSON_INSERT, JSON_SET, JSON_ARRAY functions now support JSON
data type and complex data types. [
#50308](https://github.com/apache/doris/pull/50308)
+
+### Query Optimizer
+
+- When the number of options in an IN expression exceeds
`Config.max_distribution_pruner_recursion_depth`, bucket pruning is not
performed to improve planning speed. [
#49387](https://github.com/apache/doris/pull/49387)
+
+### Storage Management
+
+- Reduced logging and improved some log messages. [
#47647](https://github.com/apache/doris/pull/47647) [
#48523](https://github.com/apache/doris/pull/48523)
+
+### Other
+
+- Avoided the thrift rpc END_OF_FILE exception. [
#49649](https://github.com/apache/doris/pull/49649)
+
+## Bug Fixes
+
+### Lakehouse
+
+- Fixed the issue where newly created tables in Hive were not immediately
visible in Doris. [ #50188](https://github.com/apache/doris/pull/50188)
+- Fixed the error "Storage schema reading not supported" when accessing
certain Text format Hive tables. [
#50038](https://github.com/apache/doris/pull/50038)
+ - Refer to the[ get_schema_from_table
documentation](https://doris.apache.org/docs/dev/lakehouse/catalogs/hive-catalog?_highlight=get_schema_from_table#syntax)
for details.
+- Fixed concurrency issues with metadata submission when writing to
Hive/Iceberg tables. [ #49842](https://github.com/apache/doris/pull/49842)
+- Fixed the issue where writing to Hive tables stored on oss-hdfs failed. [
#49754](https://github.com/apache/doris/pull/49754)
+- Fixed the issue where accessing Hive tables with partition key values
containing commas failed. [ #49382](https://github.com/apache/doris/pull/49382)
+- Fixed the issue where Split allocation for Paimon tables was uneven in
certain cases. [ #50083](https://github.com/apache/doris/pull/50083)
+- Fixed the issue where Delete files were not correctly handled when reading
Paimon tables stored on oss. [
#49645](https://github.com/apache/doris/pull/49645)
+- Fixed the issue where reading high-precision Timestamp columns in MaxCompute
Catalog failed. [ #49600](https://github.com/apache/doris/pull/49600)
+- Fixed the potential resource leakage when deleting a Catalog in certain
cases. [ #49621](https://github.com/apache/doris/pull/49621)
+- Fixed the issue where reading LZO compressed data failed in certain cases. [
#49538](https://github.com/apache/doris/pull/49538)
+- Fixed the issue where ORC deferred materialization caused errors when
reading complex types. [ #50136](https://github.com/apache/doris/pull/50136)
+- Fixed the issue where reading ORC files generated by pyorc-0.3 version
failed. [ #50358](https://github.com/apache/doris/pull/50358)
+- Fixed the issue where EXPORT operations caused metadata deadlocks. [
#50088](https://github.com/apache/doris/pull/50088)
+
+### Indexing
+
+- Fixed errors in building inverted indexes after multiple add, delete, and
rename column operations. [ #50056](https://github.com/apache/doris/pull/50056)
+- Added validation for unique column IDs in index compaction to avoid
potential data anomalies and system errors. [
#47562](https://github.com/apache/doris/pull/47562)
+
+### Semi-Structured Data Types
+
+- Fixed the issue where converting VARIANT type to JSON type returned NULL in
certain cases. [ #50180](https://github.com/apache/doris/pull/50180)
+- Fixed the crash caused by JSONB CAST in certain cases. [
#49810](https://github.com/apache/doris/pull/49810)
+- Prohibited building indexes on VARIANT type columns. [
#49159](https://github.com/apache/doris/pull/49159)
+- Fixed the precision correctness of decimal type in the named_struct
function. [ #48964](https://github.com/apache/doris/pull/48964)
+
+### Query Optimizer
+
+- Fixed several issues in constant folding.
[#49413](https://github.com/apache/doris/pull/49413)
[#50425](https://github.com/apache/doris/pull/50425)
[#49686](https://github.com/apache/doris/pull/49686)
[#49575](https://github.com/apache/doris/pull/49575)
[#50142](https://github.com/apache/doris/pull/50142)
+- Common subexpression extraction may not work properly on lambda expressions.
[#49166](https://github.com/apache/doris/pull/49166)
+- Fixed the issue where eliminating constants in group by keys might not work
properly. [#49589](https://github.com/apache/doris/pull/49589)
+- Fixed the issue where planning failed in extreme scenarios due to incorrect
statistics inference. [#49415](https://github.com/apache/doris/pull/49415)
+- Fixed the issue where some information_schema tables depending on BE
metadata could not retrieve complete data.
[#50721](https://github.com/apache/doris/pull/50721)
+
+### Query Execution Engine
+
+- Fixed the issue where the explode_json_array_json_outer function was not
found. [#50164](https://github.com/apache/doris/pull/50164)
+- Fixed the issue where substring_index did not support dynamic parameters.
[#50149](https://github.com/apache/doris/pull/50149)
+- Fixed the issue where the st_contains function returned incorrect results in
many cases. [#50115](https://github.com/apache/doris/pull/50115)
+- Fixed the core dump issue that could be caused by the array_range function.
[#49993](https://github.com/apache/doris/pull/49993)
+- Fixed the issue where the date_diff function returned incorrect results.
[#49429](https://github.com/apache/doris/pull/49429)
+- Fixed a series of issues with string functions causing garbled output or
incorrect results in non-ASCII encodings.
[#49231](https://github.com/apache/doris/pull/49231)
[#49846](https://github.com/apache/doris/pull/49846)
[#49127](https://github.com/apache/doris/pull/49127)
[#40710](https://github.com/apache/doris/pull/40710)
+
+### Storage Management
+
+- Fixed the issue where metadata replay for dynamic partition tables failed in
certain cases. [#49569](https://github.com/apache/doris/pull/49569)
+- Fixed the issue where streamload on ARM might lose data due to operation
sequence. [#48948](https://github.com/apache/doris/pull/48948)
+- Fixed the error in full compaction and the potential issue of mow data
duplication. [#49825](https://github.com/apache/doris/pull/49825)
[#48958](https://github.com/apache/doris/pull/48958)
+- Fixed the issue where partition storage policy was not persisted.
[#49721](https://github.com/apache/doris/pull/49721)
+- Fixed the extremely rare issue where imported files did not exist.
[#50343](https://github.com/apache/doris/pull/50343)
+- Fixed the issue where ccr and disk balancing concurrency might cause files
to go missing. [#50663](https://github.com/apache/doris/pull/50663)
+- Fixed the connection reset issue that might occur during backup and restore
of large snapshots. [#49649](https://github.com/apache/doris/pull/49649)
+- Fixed the issue where FE follower lost local backup snapshots.
[#49550](https://github.com/apache/doris/pull/49550)
+
+### Others
+
+- Fixed the issue where audit logs might be lost in certain scenarios.
[#50357](https://github.com/apache/doris/pull/50357)
+- Fixed the issue where the isQuery flag in audit logs might be incorrect.
[#49959](https://github.com/apache/doris/pull/49959)
+- Fixed the issue where some query sqlHash values in audit logs were
incorrect. [#49984](https://github.com/apache/doris/pull/49984)
\ No newline at end of file
diff --git a/blog/release-note-3.0.5.md b/blog/release-note-3.0.5.md
index 0a752244a87..5fcf1d02a70 100644
--- a/blog/release-note-3.0.5.md
+++ b/blog/release-note-3.0.5.md
@@ -6,8 +6,6 @@
'date': '2025-04-28',
'author': 'Apache Doris',
'tags': ['Release Notes'],
- 'picked': "true",
- 'order': "1",
"image": '/images/3.0.5.jpeg'
}
---
diff --git a/docs/releasenotes/all-release.md b/docs/releasenotes/all-release.md
index 7f0d919f34e..dcb281ab0b2 100644
--- a/docs/releasenotes/all-release.md
+++ b/docs/releasenotes/all-release.md
@@ -32,13 +32,15 @@ This document presents a summary of Apache Doris versions
released within one ye
<br />
-🎉 Version 2.1.9 released now. Check out the 🔗[Release
Notes](../releasenotes/v2.1/release-2.1.9) here. The 2.1 version delivers
exceptional performance with 100% higher out-of-the-box queries proven by
TPC-DS 1TB tests, enhanced data lake analytics that are 4-6 times speedier than
Trino and Spark, solid support for semi-structured data analysis with new
Variant types and suite of analytical functions, asynchronous materialized
views for query acceleration, optimized real-time writing at [...]
+🎉 Version 2.1.10 released now. Check out the 🔗[Release
Notes](../releasenotes/v2.1/release-2.1.10) here. The 2.1 version delivers
exceptional performance with 100% higher out-of-the-box queries proven by
TPC-DS 1TB tests, enhanced data lake analytics that are 4-6 times speedier than
Trino and Spark, solid support for semi-structured data analysis with new
Variant types and suite of analytical functions, asynchronous materialized
views for query acceleration, optimized real-time writing a [...]
:::
<br />
+- [2025-05-17, Apache Doris 2.1.10 is
released](../releasenotes/v2.1/release-2.1.10.md)
+
- [2025-04-28, Apache Doris 3.0.5 is
released](../releasenotes/v3.0/release-3.0.5.md)
- [2025-04-02, Apache Doris 2.1.9 is
released](../releasenotes/v2.1/release-2.1.9.md)
@@ -67,7 +69,7 @@ This document presents a summary of Apache Doris versions
released within one ye
- [2024-06-26, Apache Doris 2.1.4 is
released](../releasenotes/v2.1/release-2.1.4.md)
-- [2024-06-05, Apache DOris 2.0.11 is
released](../releasenotes/v2.0/release-2.0.11.md)
+- [2024-06-05, Apache Doris 2.0.11 is
released](../releasenotes/v2.0/release-2.0.11.md)
- [2024-05-21, Apache Doris 2.1.3 is
released](../releasenotes/v2.1/release-2.1.3.md)
diff --git a/docs/releasenotes/v2.1/release-2.1.10.md
b/docs/releasenotes/v2.1/release-2.1.10.md
new file mode 100644
index 00000000000..796edd546fb
--- /dev/null
+++ b/docs/releasenotes/v2.1/release-2.1.10.md
@@ -0,0 +1,136 @@
+---
+{
+ "title": "Release 2.1.10",
+ "language": "en"
+}
+---
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+## Behavior Changes
+
+- DELETE no longer incorrectly requires the SELECT_PRIV permission on the
target table. [ #49794](https://github.com/apache/doris/pull/49794)
+- Insert Overwrite no longer restricts concurrent operations on the same table
to 1. [ #48673](https://github.com/apache/doris/pull/48673)
+- Merge on write unique tables prohibit the use of time-series compaction. [
#49905](https://github.com/apache/doris/pull/49905)
+- Building indexes on VARIANT type columns is prohibited. [
#49159](https://github.com/apache/doris/pull/49159)
+
+## New Features
+
+### Query Execution Engine
+
+- Added support for more GEO type computation functions: `ST_CONTAINS`,
`ST_INTERSECTS`, `ST_TOUCHES`, `GeometryFromText`, `ST_Intersects`,
`ST_Disjoint`, `ST_Touches`. [
#49665](https://github.com/apache/doris/pull/49665) [
#48695](https://github.com/apache/doris/pull/48695)
+- Added support for the `years_of_week` function. [
#48870](https://github.com/apache/doris/pull/48870)
+
+### Lakehouse
+
+- Hive Catalog now supports catalog-level partition cache control. [
#50724](https://github.com/apache/doris/pull/50724)
+ - For more details, refer to the[
](https://doris.apache.org/docs/dev/lakehouse/meta-cache)[documentation](https://doris.apache.org/docs/dev/lakehouse/meta-cache#disable-hive-catalog-metadata-cache).
+
+## Improvements
+
+### Lakehouse
+
+- Upgraded the Paimon dependency version to 1.0.1.
+- Upgraded the Iceberg dependency version to 1.6.1.
+- Included the memory overhead of Parquet Footer in the Memory Tracker to
avoid potential OOM issues. [
#49037](https://github.com/apache/doris/pull/49037)
+- Optimized the predicate pushdown logic for JDBC Catalog, supporting pushdown
of AND/OR connected predicates. [
#50542](https://github.com/apache/doris/pull/50542)
+- Precompiled versions now include the Jindofs extension package by default to
support Alibaba Cloud oss-hdfs access.
+
+### Semi-Structured Data Management
+
+- ANY function now supports JSON type. [
#50311](https://github.com/apache/doris/pull/50311)
+- JSON_REPLACE, JSON_INSERT, JSON_SET, JSON_ARRAY functions now support JSON
data type and complex data types. [
#50308](https://github.com/apache/doris/pull/50308)
+
+### Query Optimizer
+
+- When the number of options in an IN expression exceeds
`Config.max_distribution_pruner_recursion_depth`, bucket pruning is not
performed to improve planning speed. [
#49387](https://github.com/apache/doris/pull/49387)
+
+### Storage Management
+
+- Reduced logging and improved some log messages. [
#47647](https://github.com/apache/doris/pull/47647) [
#48523](https://github.com/apache/doris/pull/48523)
+
+### Other
+
+- Avoided the thrift rpc END_OF_FILE exception. [
#49649](https://github.com/apache/doris/pull/49649)
+
+## Bug Fixes
+
+### Lakehouse
+
+- Fixed the issue where newly created tables in Hive were not immediately
visible in Doris. [ #50188](https://github.com/apache/doris/pull/50188)
+- Fixed the error "Storage schema reading not supported" when accessing
certain Text format Hive tables. [
#50038](https://github.com/apache/doris/pull/50038)
+ - Refer to the[ get_schema_from_table
documentation](https://doris.apache.org/docs/dev/lakehouse/catalogs/hive-catalog?_highlight=get_schema_from_table#syntax)
for details.
+- Fixed concurrency issues with metadata submission when writing to
Hive/Iceberg tables. [ #49842](https://github.com/apache/doris/pull/49842)
+- Fixed the issue where writing to Hive tables stored on oss-hdfs failed. [
#49754](https://github.com/apache/doris/pull/49754)
+- Fixed the issue where accessing Hive tables with partition key values
containing commas failed. [ #49382](https://github.com/apache/doris/pull/49382)
+- Fixed the issue where Split allocation for Paimon tables was uneven in
certain cases. [ #50083](https://github.com/apache/doris/pull/50083)
+- Fixed the issue where Delete files were not correctly handled when reading
Paimon tables stored on oss. [
#49645](https://github.com/apache/doris/pull/49645)
+- Fixed the issue where reading high-precision Timestamp columns in MaxCompute
Catalog failed. [ #49600](https://github.com/apache/doris/pull/49600)
+- Fixed the potential resource leakage when deleting a Catalog in certain
cases. [ #49621](https://github.com/apache/doris/pull/49621)
+- Fixed the issue where reading LZO compressed data failed in certain cases. [
#49538](https://github.com/apache/doris/pull/49538)
+- Fixed the issue where ORC deferred materialization caused errors when
reading complex types. [ #50136](https://github.com/apache/doris/pull/50136)
+- Fixed the issue where reading ORC files generated by pyorc-0.3 version
failed. [ #50358](https://github.com/apache/doris/pull/50358)
+- Fixed the issue where EXPORT operations caused metadata deadlocks. [
#50088](https://github.com/apache/doris/pull/50088)
+
+### Indexing
+
+- Fixed errors in building inverted indexes after multiple add, delete, and
rename column operations. [ #50056](https://github.com/apache/doris/pull/50056)
+- Added validation for unique column IDs in index compaction to avoid
potential data anomalies and system errors. [
#47562](https://github.com/apache/doris/pull/47562)
+
+### Semi-Structured Data Types
+
+- Fixed the issue where converting VARIANT type to JSON type returned NULL in
certain cases. [ #50180](https://github.com/apache/doris/pull/50180)
+- Fixed the crash caused by JSONB CAST in certain cases. [
#49810](https://github.com/apache/doris/pull/49810)
+- Prohibited building indexes on VARIANT type columns. [
#49159](https://github.com/apache/doris/pull/49159)
+- Fixed the precision correctness of decimal type in the named_struct
function. [ #48964](https://github.com/apache/doris/pull/48964)
+
+### Query Optimizer
+
+- Fixed several issues in constant folding.
[#49413](https://github.com/apache/doris/pull/49413)
[#50425](https://github.com/apache/doris/pull/50425)
[#49686](https://github.com/apache/doris/pull/49686)
[#49575](https://github.com/apache/doris/pull/49575)
[#50142](https://github.com/apache/doris/pull/50142)
+- Common subexpression extraction may not work properly on lambda expressions.
[#49166](https://github.com/apache/doris/pull/49166)
+- Fixed the issue where eliminating constants in group by keys might not work
properly. [#49589](https://github.com/apache/doris/pull/49589)
+- Fixed the issue where planning failed in extreme scenarios due to incorrect
statistics inference. [#49415](https://github.com/apache/doris/pull/49415)
+- Fixed the issue where some information_schema tables depending on BE
metadata could not retrieve complete data.
[#50721](https://github.com/apache/doris/pull/50721)
+
+### Query Execution Engine
+
+- Fixed the issue where the explode_json_array_json_outer function was not
found. [#50164](https://github.com/apache/doris/pull/50164)
+- Fixed the issue where substring_index did not support dynamic parameters.
[#50149](https://github.com/apache/doris/pull/50149)
+- Fixed the issue where the st_contains function returned incorrect results in
many cases. [#50115](https://github.com/apache/doris/pull/50115)
+- Fixed the core dump issue that could be caused by the array_range function.
[#49993](https://github.com/apache/doris/pull/49993)
+- Fixed the issue where the date_diff function returned incorrect results.
[#49429](https://github.com/apache/doris/pull/49429)
+- Fixed a series of issues with string functions causing garbled output or
incorrect results in non-ASCII encodings.
[#49231](https://github.com/apache/doris/pull/49231)
[#49846](https://github.com/apache/doris/pull/49846)
[#49127](https://github.com/apache/doris/pull/49127)
[#40710](https://github.com/apache/doris/pull/40710)
+
+### Storage Management
+
+- Fixed the issue where metadata replay for dynamic partition tables failed in
certain cases. [#49569](https://github.com/apache/doris/pull/49569)
+- Fixed the issue where streamload on ARM might lose data due to operation
sequence. [#48948](https://github.com/apache/doris/pull/48948)
+- Fixed the error in full compaction and the potential issue of mow data
duplication. [#49825](https://github.com/apache/doris/pull/49825)
[#48958](https://github.com/apache/doris/pull/48958)
+- Fixed the issue where partition storage policy was not persisted.
[#49721](https://github.com/apache/doris/pull/49721)
+- Fixed the extremely rare issue where imported files did not exist.
[#50343](https://github.com/apache/doris/pull/50343)
+- Fixed the issue where ccr and disk balancing concurrency might cause files
to go missing. [#50663](https://github.com/apache/doris/pull/50663)
+- Fixed the connection reset issue that might occur during backup and restore
of large snapshots. [#49649](https://github.com/apache/doris/pull/49649)
+- Fixed the issue where FE follower lost local backup snapshots.
[#49550](https://github.com/apache/doris/pull/49550)
+
+### Others
+
+- Fixed the issue where audit logs might be lost in certain scenarios.
[#50357](https://github.com/apache/doris/pull/50357)
+- Fixed the issue where the isQuery flag in audit logs might be incorrect.
[#49959](https://github.com/apache/doris/pull/49959)
+- Fixed the issue where some query sqlHash values in audit logs were
incorrect. [#49984](https://github.com/apache/doris/pull/49984)
\ No newline at end of file
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/releasenotes/all-release.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/releasenotes/all-release.md
index e15801c4c15..6d24c0996d8 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/releasenotes/all-release.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/releasenotes/all-release.md
@@ -34,12 +34,14 @@ under the License.
<br />
-🎉 2.1.9 版本现已于 2025 年 04 月 02
日正式发布,详情可查看[版本发布](../releasenotes/v2.1/release-2.1.9)。子查询性能方面 2.1
版本开箱即用查询的性能提高了 100%;在数据湖分析场景方面,相对于 Trino 和 Spark 分别有 4-6
倍性能提升;在半结构化数据分析场景中提供了强有力的支持,包括新的 Variant 类型和一系列分析函数。此外,2.1
版本起支持异步物化视图以加速查询,优化了大规模实时写入,并通过稳定性和运行时 SQL 资源跟踪改进了工作负载管理。
+🎉 2.1.10 版本现已于 2025 年 05 月 17
日正式发布,详情可查看[版本发布](../releasenotes/v2.1/release-2.1.10)。子查询性能方面 2.1
版本开箱即用查询的性能提高了 100%;在数据湖分析场景方面,相对于 Trino 和 Spark 分别有 4-6
倍性能提升;在半结构化数据分析场景中提供了强有力的支持,包括新的 Variant 类型和一系列分析函数。此外,2.1
版本起支持异步物化视图以加速查询,优化了大规模实时写入,并通过稳定性和运行时 SQL 资源跟踪改进了工作负载管理。
:::
<br />
+- [2025-05-17, Apache Doris 2.1.10
版本发布](../releasenotes/v2.1/release-2.1.10.md)
+
- [2025-04-28, Apache Doris 3.0.5 版本发布](../releasenotes/v3.0/release-3.0.5.md)
- [2025-04-02, Apache Doris 2.1.9 版本发布](../releasenotes/v2.1/release-2.1.9.md)
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/releasenotes/v2.1/release-2.1.10.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/releasenotes/v2.1/release-2.1.10.md
new file mode 100644
index 00000000000..fb6431f760b
--- /dev/null
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/releasenotes/v2.1/release-2.1.10.md
@@ -0,0 +1,142 @@
+---
+{
+ "title": "Release 2.1.10",
+ "language": "zh-CN"
+}
+---
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+亲爱的社区小伙伴们,**Apache Doris 2.1.10 版本已于 2025 年 05 月 17 日正式发布。**
该版本持续在查询执行引擎、湖仓一体等方面进行改进提升与问题修复,进一步加强系统的性能和稳定性,欢迎大家下载体验。
+
+- [立即下载](https://doris.apache.org/download)
+
+- [GitHub 下载](https://github.com/apache/doris/releases/tag/2.1.10-rc01)
+
+## 行为变更
+
+- DELETE 不再错误的需要目标表的 SELECT_PRIV 权限
[#49794](https://github.com/apache/doris/pull/49794)
+- Insert Overwrite 不再限制对同一个表并发只能为 1
[#48673](https://github.com/apache/doris/pull/48673)
+- Merge on write unique 表禁止使用时序 compaction
[#49905](https://github.com/apache/doris/pull/49905)
+- 禁止在 VARIANT 类型上 build
index。[#49159](https://github.com/apache/doris/pull/49159)
+
+## 新功能
+
+### 查询执行引擎
+
+- 支持了更多的 GEO 类型的计算函数`ST_CONTAINS ` , `ST_INTERSECTS`,
`ST_TOUCHES`,`GeometryFromText`,`ST_Intersects`, `ST_Disjoint`,
`ST_Touches`。[#49665](https://github.com/apache/doris/pull/49665)
[#48695](https://github.com/apache/doris/pull/48695)
+- 支持 `years_of_week` 函数。[#48870](https://github.com/apache/doris/pull/48870)
+
+## 湖仓一体
+
+- Hive Catalog 支持 Catalog 级别的分区缓存开关控制
[#50724](https://github.com/apache/doris/pull/50724)
+ -
更多详情,可参考[文档](https://doris.apache.org/zh-CN/docs/dev/lakehouse/meta-cache#关闭-hive-catalog-元数据缓存)
+
+## 改进提升
+
+### 湖仓一体
+
+- Paimon 依赖版本升级到 1.0.1
+- Iceberg 依赖版本升级到 1.6.1
+- 将 Parquet Footer 的内存开销纳入 Memory Tracker 管控,以避免可能的 OOM
问题。[#49037](https://github.com/apache/doris/pull/49037)
+- 优化 JDBC Catalog 的谓词下推逻辑,支持 AND/OR
等连接谓词的下推[#50542](https://github.com/apache/doris/pull/50542)
+- 预编译版本默认携带 Jindofs 扩展包以支持阿里云 OSS-HDFS 访问。
+
+### 半结构化管理
+
+- ANY 函数支持 JSON 类型 [#50311](https://github.com/apache/doris/pull/50311)
+- JSON_REPLACE,JSON_INSERT,JSON_SET,JSON_ARRAY 函数支持 JSON
数据类型和复杂数据类型[#50308](https://github.com/apache/doris/pull/50308)
+
+### 查询优化器
+
+- 当 in 表达式的 options 多于 `Config.max_distribution_pruner_recursion_depth`
时,不执行分桶裁剪,以提升规划速度 [#49387](https://github.com/apache/doris/pull/49387)
+
+### 存储管理
+
+- 减少日志和改进部分日志。[#47647](https://github.com/apache/doris/pull/47647)
[#48523](https://github.com/apache/doris/pull/48523)
+
+### 其他
+
+- 避免 thrift rpc END_OF_FILE 异常
[#49649](https://github.com/apache/doris/pull/49649)
+
+## Bug 修复
+
+### 湖仓一体
+
+- 修复某些情况下,在 Hive 侧新建表,Doris 侧无法立即查看到的问题
[#50188](https://github.com/apache/doris/pull/50188)
+- 修复某些 Text 格式 Hive 表访问报错 "Storage schema reading not supported" 的 问题
[#50038](https://github.com/apache/doris/pull/50038)
+ - 查看[文档 get_schema_from_table
详情](https://doris.apache.org/zh-CN/docs/dev/lakehouse/catalogs/hive-catalog?_highlight=get_schema_from_table#语法)
+- 修复某些情况下,写入 Hive/Iceberg 表时,元数据提交并发问题
[#49842](https://github.com/apache/doris/pull/49842)
+- 修复某些情况下,写入存储在 oss-hdfs 上的 Hive 表失败的问题
[#49754](https://github.com/apache/doris/pull/49754)
+- 修复当 Hive 分区键值有逗号的情况下,访问失败的问题
[#49382](https://github.com/apache/doris/pull/49382)
+- 修复某些情况下,Paimon 表 Split 分配不均匀的问题
[#50083](https://github.com/apache/doris/pull/50083)
+- 修复读取存储在 OSS 上的 Paimon 表时,无法正确处理 Delete 文件的问题
[#49645](https://github.com/apache/doris/pull/49645)
+- 修复 MaxCompute Catalog 中,读取高精度 Timestamp 列时无法访问的问题
[#49600](https://github.com/apache/doris/pull/49600)
+- 修复某些情况下,删除 Catalog 可能导致部分资源泄露的问题
[#49621](https://github.com/apache/doris/pull/49621)
+- 修复某些情况下,读取 LZO 压缩格式的数据失败的问题
[#49538](https://github.com/apache/doris/pull/49538)
+- 修复某些情况下,ORC 延迟物化功能导致复杂类型读取错误的问题
[#50136](https://github.com/apache/doris/pull/50136)
+- 修复某些情况下,读取 pyorc-0.3 版本产生的 ORC 文件报错的问题
[#50358](https://github.com/apache/doris/pull/50358)
+- 修复某些情况下,EXPORT 操作导致元数据死锁的问题
[#50088](https://github.com/apache/doris/pull/50088)
+
+### 索引
+
+- 修复多次添加、删除和重命名列操作后构建倒排索引的错误
[#50056](https://github.com/apache/doris/pull/50056)
+- 在 index compaction 中索引对应的列唯一 ID 的校验,避免潜在的数据异常和系统错误
[#47562](https://github.com/apache/doris/pull/47562)
+
+### 半结构化数据类型
+
+- 修复某些情况下,VARIANT 类型转 JSON 类型返回 NULL 错误的结果
[#50180](https://github.com/apache/doris/pull/50180)
+- 修复某些情况下,JSONB CAST 导致 crash
[#49810](https://github.com/apache/doris/pull/49810)
+- 禁止在 VARIANT 类型上 build index
[#49159](https://github.com/apache/doris/pull/49159)
+- 修复 named_struct 函数 decimal 类型精度正确性
[#48964](https://github.com/apache/doris/pull/48964)
+
+### 查询优化器
+
+- 修复常量折叠中的一些问题 [#49413](https://github.com/apache/doris/pull/49413)
[#50425](https://github.com/apache/doris/pull/50425)
[#49686](https://github.com/apache/doris/pull/49686)
[#49575](https://github.com/apache/doris/pull/49575)
[#50142](https://github.com/apache/doris/pull/50142)
+- 公共表达式提取在 lambda 表达式上可能工作异常
[#49166](https://github.com/apache/doris/pull/49166)
+- 修复消除 group by key 中的常量可能不能正常工作的问题
[#49589](https://github.com/apache/doris/pull/49589)
+- 修复在极端场景下,由于统计信息的推导错误,规划无法正常执行的问题
[#49415](https://github.com/apache/doris/pull/49415)
+- 修复部分依赖 BE 中元数据的 information_schema 表,不能获取完整数据的问题
[#50721](https://github.com/apache/doris/pull/50721)
+
+### 查询执行引擎
+
+- 修复了找不到 explode_json_array_json_outer
函数的问题。[#50164](https://github.com/apache/doris/pull/50164)
+- 修复了 substring_index
不支持动态参数的问题。[#50149](https://github.com/apache/doris/pull/50149)
+- 修复了很多 st_contains
函数计算结果不对的问题。[#50115](https://github.com/apache/doris/pull/50115)
+- 修复了 array_range 函数可能导致的 core
的问题。[#49993](https://github.com/apache/doris/pull/49993)
+- 修复了 date_diff
函数计算结果错误的问题。[#49429](https://github.com/apache/doris/pull/49429)
+- 修复了一系列字符串函数在非 ASCII
编码下的乱码或者结果错误的问题。[#49231](https://github.com/apache/doris/pull/49231)
[#49846](https://github.com/apache/doris/pull/49846)
[#49127](https://github.com/apache/doris/pull/49127)
[#40710](https://github.com/apache/doris/pull/40710)
+
+### 存储管理
+
+- 修复某些情况下,动态分区表(Dynamic Partition
Table)回放元数据失败的问题[#49569](https://github.com/apache/doris/pull/49569)
+- 修复 ARM 下 streamload 可能因为操作序列丢数据的问题
[#48948](https://github.com/apache/doris/pull/48948)
+- 修复 full compaction 报错以及可能导致 mow 数据重复的问题
[#49825](https://github.com/apache/doris/pull/49825)
[#48958](https://github.com/apache/doris/pull/48958)
+- 修复没有持久化分区 Storage Policy 的问题。
[#49721](https://github.com/apache/doris/pull/49721)
+- 修复导入之后文件极小概率不存在的问题。[ #50343](https://github.com/apache/doris/pull/50343)
+- 修复 CCR 和磁盘均衡并发可能导致的文件找不见问题。[#50663
](https://github.com/apache/doris/pull/50663)
+- 修复备份恢复大快照时可能出现的 connection reset
问题。[#49649](https://github.com/apache/doris/pull/49649)
+- 修复 FE Follower
丢失本地备份快照的问题。[#49550](https://github.com/apache/doris/pull/49550)
+
+### Others
+
+- 修复某些场景下,审计日志可能丢失的问题 [#50357](https://github.com/apache/doris/pull/50357)
+- 修复审计日志中 isQuery 标记可能不正确的问题
[#49959](https://github.com/apache/doris/pull/49959)
+- 修复审计日志中部分查询 sqlHash 不正确的问题
[#49984](https://github.com/apache/doris/pull/49984)
\ No newline at end of file
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/releasenotes/all-release.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/releasenotes/all-release.md
index e15801c4c15..6d24c0996d8 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/releasenotes/all-release.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/releasenotes/all-release.md
@@ -34,12 +34,14 @@ under the License.
<br />
-🎉 2.1.9 版本现已于 2025 年 04 月 02
日正式发布,详情可查看[版本发布](../releasenotes/v2.1/release-2.1.9)。子查询性能方面 2.1
版本开箱即用查询的性能提高了 100%;在数据湖分析场景方面,相对于 Trino 和 Spark 分别有 4-6
倍性能提升;在半结构化数据分析场景中提供了强有力的支持,包括新的 Variant 类型和一系列分析函数。此外,2.1
版本起支持异步物化视图以加速查询,优化了大规模实时写入,并通过稳定性和运行时 SQL 资源跟踪改进了工作负载管理。
+🎉 2.1.10 版本现已于 2025 年 05 月 17
日正式发布,详情可查看[版本发布](../releasenotes/v2.1/release-2.1.10)。子查询性能方面 2.1
版本开箱即用查询的性能提高了 100%;在数据湖分析场景方面,相对于 Trino 和 Spark 分别有 4-6
倍性能提升;在半结构化数据分析场景中提供了强有力的支持,包括新的 Variant 类型和一系列分析函数。此外,2.1
版本起支持异步物化视图以加速查询,优化了大规模实时写入,并通过稳定性和运行时 SQL 资源跟踪改进了工作负载管理。
:::
<br />
+- [2025-05-17, Apache Doris 2.1.10
版本发布](../releasenotes/v2.1/release-2.1.10.md)
+
- [2025-04-28, Apache Doris 3.0.5 版本发布](../releasenotes/v3.0/release-3.0.5.md)
- [2025-04-02, Apache Doris 2.1.9 版本发布](../releasenotes/v2.1/release-2.1.9.md)
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/releasenotes/v2.1/release-2.1.10.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/releasenotes/v2.1/release-2.1.10.md
new file mode 100644
index 00000000000..fb6431f760b
--- /dev/null
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/releasenotes/v2.1/release-2.1.10.md
@@ -0,0 +1,142 @@
+---
+{
+ "title": "Release 2.1.10",
+ "language": "zh-CN"
+}
+---
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+亲爱的社区小伙伴们,**Apache Doris 2.1.10 版本已于 2025 年 05 月 17 日正式发布。**
该版本持续在查询执行引擎、湖仓一体等方面进行改进提升与问题修复,进一步加强系统的性能和稳定性,欢迎大家下载体验。
+
+- [立即下载](https://doris.apache.org/download)
+
+- [GitHub 下载](https://github.com/apache/doris/releases/tag/2.1.10-rc01)
+
+## 行为变更
+
+- DELETE 不再错误的需要目标表的 SELECT_PRIV 权限
[#49794](https://github.com/apache/doris/pull/49794)
+- Insert Overwrite 不再限制对同一个表并发只能为 1
[#48673](https://github.com/apache/doris/pull/48673)
+- Merge on write unique 表禁止使用时序 compaction
[#49905](https://github.com/apache/doris/pull/49905)
+- 禁止在 VARIANT 类型上 build
index。[#49159](https://github.com/apache/doris/pull/49159)
+
+## 新功能
+
+### 查询执行引擎
+
+- 支持了更多的 GEO 类型的计算函数`ST_CONTAINS ` , `ST_INTERSECTS`,
`ST_TOUCHES`,`GeometryFromText`,`ST_Intersects`, `ST_Disjoint`,
`ST_Touches`。[#49665](https://github.com/apache/doris/pull/49665)
[#48695](https://github.com/apache/doris/pull/48695)
+- 支持 `years_of_week` 函数。[#48870](https://github.com/apache/doris/pull/48870)
+
+## 湖仓一体
+
+- Hive Catalog 支持 Catalog 级别的分区缓存开关控制
[#50724](https://github.com/apache/doris/pull/50724)
+ -
更多详情,可参考[文档](https://doris.apache.org/zh-CN/docs/dev/lakehouse/meta-cache#关闭-hive-catalog-元数据缓存)
+
+## 改进提升
+
+### 湖仓一体
+
+- Paimon 依赖版本升级到 1.0.1
+- Iceberg 依赖版本升级到 1.6.1
+- 将 Parquet Footer 的内存开销纳入 Memory Tracker 管控,以避免可能的 OOM
问题。[#49037](https://github.com/apache/doris/pull/49037)
+- 优化 JDBC Catalog 的谓词下推逻辑,支持 AND/OR
等连接谓词的下推[#50542](https://github.com/apache/doris/pull/50542)
+- 预编译版本默认携带 Jindofs 扩展包以支持阿里云 OSS-HDFS 访问。
+
+### 半结构化管理
+
+- ANY 函数支持 JSON 类型 [#50311](https://github.com/apache/doris/pull/50311)
+- JSON_REPLACE,JSON_INSERT,JSON_SET,JSON_ARRAY 函数支持 JSON
数据类型和复杂数据类型[#50308](https://github.com/apache/doris/pull/50308)
+
+### 查询优化器
+
+- 当 in 表达式的 options 多于 `Config.max_distribution_pruner_recursion_depth`
时,不执行分桶裁剪,以提升规划速度 [#49387](https://github.com/apache/doris/pull/49387)
+
+### 存储管理
+
+- 减少日志和改进部分日志。[#47647](https://github.com/apache/doris/pull/47647)
[#48523](https://github.com/apache/doris/pull/48523)
+
+### 其他
+
+- 避免 thrift rpc END_OF_FILE 异常
[#49649](https://github.com/apache/doris/pull/49649)
+
+## Bug 修复
+
+### 湖仓一体
+
+- 修复某些情况下,在 Hive 侧新建表,Doris 侧无法立即查看到的问题
[#50188](https://github.com/apache/doris/pull/50188)
+- 修复某些 Text 格式 Hive 表访问报错 "Storage schema reading not supported" 的 问题
[#50038](https://github.com/apache/doris/pull/50038)
+ - 查看[文档 get_schema_from_table
详情](https://doris.apache.org/zh-CN/docs/dev/lakehouse/catalogs/hive-catalog?_highlight=get_schema_from_table#语法)
+- 修复某些情况下,写入 Hive/Iceberg 表时,元数据提交并发问题
[#49842](https://github.com/apache/doris/pull/49842)
+- 修复某些情况下,写入存储在 oss-hdfs 上的 Hive 表失败的问题
[#49754](https://github.com/apache/doris/pull/49754)
+- 修复当 Hive 分区键值有逗号的情况下,访问失败的问题
[#49382](https://github.com/apache/doris/pull/49382)
+- 修复某些情况下,Paimon 表 Split 分配不均匀的问题
[#50083](https://github.com/apache/doris/pull/50083)
+- 修复读取存储在 OSS 上的 Paimon 表时,无法正确处理 Delete 文件的问题
[#49645](https://github.com/apache/doris/pull/49645)
+- 修复 MaxCompute Catalog 中,读取高精度 Timestamp 列时无法访问的问题
[#49600](https://github.com/apache/doris/pull/49600)
+- 修复某些情况下,删除 Catalog 可能导致部分资源泄露的问题
[#49621](https://github.com/apache/doris/pull/49621)
+- 修复某些情况下,读取 LZO 压缩格式的数据失败的问题
[#49538](https://github.com/apache/doris/pull/49538)
+- 修复某些情况下,ORC 延迟物化功能导致复杂类型读取错误的问题
[#50136](https://github.com/apache/doris/pull/50136)
+- 修复某些情况下,读取 pyorc-0.3 版本产生的 ORC 文件报错的问题
[#50358](https://github.com/apache/doris/pull/50358)
+- 修复某些情况下,EXPORT 操作导致元数据死锁的问题
[#50088](https://github.com/apache/doris/pull/50088)
+
+### 索引
+
+- 修复多次添加、删除和重命名列操作后构建倒排索引的错误
[#50056](https://github.com/apache/doris/pull/50056)
+- 在 index compaction 中索引对应的列唯一 ID 的校验,避免潜在的数据异常和系统错误
[#47562](https://github.com/apache/doris/pull/47562)
+
+### 半结构化数据类型
+
+- 修复某些情况下,VARIANT 类型转 JSON 类型返回 NULL 错误的结果
[#50180](https://github.com/apache/doris/pull/50180)
+- 修复某些情况下,JSONB CAST 导致 crash
[#49810](https://github.com/apache/doris/pull/49810)
+- 禁止在 VARIANT 类型上 build index
[#49159](https://github.com/apache/doris/pull/49159)
+- 修复 named_struct 函数 decimal 类型精度正确性
[#48964](https://github.com/apache/doris/pull/48964)
+
+### 查询优化器
+
+- 修复常量折叠中的一些问题 [#49413](https://github.com/apache/doris/pull/49413)
[#50425](https://github.com/apache/doris/pull/50425)
[#49686](https://github.com/apache/doris/pull/49686)
[#49575](https://github.com/apache/doris/pull/49575)
[#50142](https://github.com/apache/doris/pull/50142)
+- 公共表达式提取在 lambda 表达式上可能工作异常
[#49166](https://github.com/apache/doris/pull/49166)
+- 修复消除 group by key 中的常量可能不能正常工作的问题
[#49589](https://github.com/apache/doris/pull/49589)
+- 修复在极端场景下,由于统计信息的推导错误,规划无法正常执行的问题
[#49415](https://github.com/apache/doris/pull/49415)
+- 修复部分依赖 BE 中元数据的 information_schema 表,不能获取完整数据的问题
[#50721](https://github.com/apache/doris/pull/50721)
+
+### 查询执行引擎
+
+- 修复了找不到 explode_json_array_json_outer
函数的问题。[#50164](https://github.com/apache/doris/pull/50164)
+- 修复了 substring_index
不支持动态参数的问题。[#50149](https://github.com/apache/doris/pull/50149)
+- 修复了很多 st_contains
函数计算结果不对的问题。[#50115](https://github.com/apache/doris/pull/50115)
+- 修复了 array_range 函数可能导致的 core
的问题。[#49993](https://github.com/apache/doris/pull/49993)
+- 修复了 date_diff
函数计算结果错误的问题。[#49429](https://github.com/apache/doris/pull/49429)
+- 修复了一系列字符串函数在非 ASCII
编码下的乱码或者结果错误的问题。[#49231](https://github.com/apache/doris/pull/49231)
[#49846](https://github.com/apache/doris/pull/49846)
[#49127](https://github.com/apache/doris/pull/49127)
[#40710](https://github.com/apache/doris/pull/40710)
+
+### 存储管理
+
+- 修复某些情况下,动态分区表(Dynamic Partition
Table)回放元数据失败的问题[#49569](https://github.com/apache/doris/pull/49569)
+- 修复 ARM 下 streamload 可能因为操作序列丢数据的问题
[#48948](https://github.com/apache/doris/pull/48948)
+- 修复 full compaction 报错以及可能导致 mow 数据重复的问题
[#49825](https://github.com/apache/doris/pull/49825)
[#48958](https://github.com/apache/doris/pull/48958)
+- 修复没有持久化分区 Storage Policy 的问题。
[#49721](https://github.com/apache/doris/pull/49721)
+- 修复导入之后文件极小概率不存在的问题。[ #50343](https://github.com/apache/doris/pull/50343)
+- 修复 CCR 和磁盘均衡并发可能导致的文件找不见问题。[#50663
](https://github.com/apache/doris/pull/50663)
+- 修复备份恢复大快照时可能出现的 connection reset
问题。[#49649](https://github.com/apache/doris/pull/49649)
+- 修复 FE Follower
丢失本地备份快照的问题。[#49550](https://github.com/apache/doris/pull/49550)
+
+### Others
+
+- 修复某些场景下,审计日志可能丢失的问题 [#50357](https://github.com/apache/doris/pull/50357)
+- 修复审计日志中 isQuery 标记可能不正确的问题
[#49959](https://github.com/apache/doris/pull/49959)
+- 修复审计日志中部分查询 sqlHash 不正确的问题
[#49984](https://github.com/apache/doris/pull/49984)
\ No newline at end of file
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/releasenotes/all-release.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/releasenotes/all-release.md
index e15801c4c15..0b09ddf3c10 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/releasenotes/all-release.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/releasenotes/all-release.md
@@ -34,12 +34,15 @@ under the License.
<br />
-🎉 2.1.9 版本现已于 2025 年 04 月 02
日正式发布,详情可查看[版本发布](../releasenotes/v2.1/release-2.1.9)。子查询性能方面 2.1
版本开箱即用查询的性能提高了 100%;在数据湖分析场景方面,相对于 Trino 和 Spark 分别有 4-6
倍性能提升;在半结构化数据分析场景中提供了强有力的支持,包括新的 Variant 类型和一系列分析函数。此外,2.1
版本起支持异步物化视图以加速查询,优化了大规模实时写入,并通过稳定性和运行时 SQL 资源跟踪改进了工作负载管理。
+
+🎉 2.1.10 版本现已于 2025 年 05 月 17
日正式发布,详情可查看[版本发布](../releasenotes/v2.1/release-2.1.10)。子查询性能方面 2.1
版本开箱即用查询的性能提高了 100%;在数据湖分析场景方面,相对于 Trino 和 Spark 分别有 4-6
倍性能提升;在半结构化数据分析场景中提供了强有力的支持,包括新的 Variant 类型和一系列分析函数。此外,2.1
版本起支持异步物化视图以加速查询,优化了大规模实时写入,并通过稳定性和运行时 SQL 资源跟踪改进了工作负载管理。
:::
<br />
+- [2025-05-17, Apache Doris 2.1.10
版本发布](../releasenotes/v2.1/release-2.1.10.md)
+
- [2025-04-28, Apache Doris 3.0.5 版本发布](../releasenotes/v3.0/release-3.0.5.md)
- [2025-04-02, Apache Doris 2.1.9 版本发布](../releasenotes/v2.1/release-2.1.9.md)
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/releasenotes/v2.1/release-2.1.10.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/releasenotes/v2.1/release-2.1.10.md
new file mode 100644
index 00000000000..fb6431f760b
--- /dev/null
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/releasenotes/v2.1/release-2.1.10.md
@@ -0,0 +1,142 @@
+---
+{
+ "title": "Release 2.1.10",
+ "language": "zh-CN"
+}
+---
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+亲爱的社区小伙伴们,**Apache Doris 2.1.10 版本已于 2025 年 05 月 17 日正式发布。**
该版本持续在查询执行引擎、湖仓一体等方面进行改进提升与问题修复,进一步加强系统的性能和稳定性,欢迎大家下载体验。
+
+- [立即下载](https://doris.apache.org/download)
+
+- [GitHub 下载](https://github.com/apache/doris/releases/tag/2.1.10-rc01)
+
+## 行为变更
+
+- DELETE 不再错误的需要目标表的 SELECT_PRIV 权限
[#49794](https://github.com/apache/doris/pull/49794)
+- Insert Overwrite 不再限制对同一个表并发只能为 1
[#48673](https://github.com/apache/doris/pull/48673)
+- Merge on write unique 表禁止使用时序 compaction
[#49905](https://github.com/apache/doris/pull/49905)
+- 禁止在 VARIANT 类型上 build
index。[#49159](https://github.com/apache/doris/pull/49159)
+
+## 新功能
+
+### 查询执行引擎
+
+- 支持了更多的 GEO 类型的计算函数`ST_CONTAINS ` , `ST_INTERSECTS`,
`ST_TOUCHES`,`GeometryFromText`,`ST_Intersects`, `ST_Disjoint`,
`ST_Touches`。[#49665](https://github.com/apache/doris/pull/49665)
[#48695](https://github.com/apache/doris/pull/48695)
+- 支持 `years_of_week` 函数。[#48870](https://github.com/apache/doris/pull/48870)
+
+## 湖仓一体
+
+- Hive Catalog 支持 Catalog 级别的分区缓存开关控制
[#50724](https://github.com/apache/doris/pull/50724)
+ -
更多详情,可参考[文档](https://doris.apache.org/zh-CN/docs/dev/lakehouse/meta-cache#关闭-hive-catalog-元数据缓存)
+
+## 改进提升
+
+### 湖仓一体
+
+- Paimon 依赖版本升级到 1.0.1
+- Iceberg 依赖版本升级到 1.6.1
+- 将 Parquet Footer 的内存开销纳入 Memory Tracker 管控,以避免可能的 OOM
问题。[#49037](https://github.com/apache/doris/pull/49037)
+- 优化 JDBC Catalog 的谓词下推逻辑,支持 AND/OR
等连接谓词的下推[#50542](https://github.com/apache/doris/pull/50542)
+- 预编译版本默认携带 Jindofs 扩展包以支持阿里云 OSS-HDFS 访问。
+
+### 半结构化管理
+
+- ANY 函数支持 JSON 类型 [#50311](https://github.com/apache/doris/pull/50311)
+- JSON_REPLACE,JSON_INSERT,JSON_SET,JSON_ARRAY 函数支持 JSON
数据类型和复杂数据类型[#50308](https://github.com/apache/doris/pull/50308)
+
+### 查询优化器
+
+- 当 in 表达式的 options 多于 `Config.max_distribution_pruner_recursion_depth`
时,不执行分桶裁剪,以提升规划速度 [#49387](https://github.com/apache/doris/pull/49387)
+
+### 存储管理
+
+- 减少日志和改进部分日志。[#47647](https://github.com/apache/doris/pull/47647)
[#48523](https://github.com/apache/doris/pull/48523)
+
+### 其他
+
+- 避免 thrift rpc END_OF_FILE 异常
[#49649](https://github.com/apache/doris/pull/49649)
+
+## Bug 修复
+
+### 湖仓一体
+
+- 修复某些情况下,在 Hive 侧新建表,Doris 侧无法立即查看到的问题
[#50188](https://github.com/apache/doris/pull/50188)
+- 修复某些 Text 格式 Hive 表访问报错 "Storage schema reading not supported" 的 问题
[#50038](https://github.com/apache/doris/pull/50038)
+ - 查看[文档 get_schema_from_table
详情](https://doris.apache.org/zh-CN/docs/dev/lakehouse/catalogs/hive-catalog?_highlight=get_schema_from_table#语法)
+- 修复某些情况下,写入 Hive/Iceberg 表时,元数据提交并发问题
[#49842](https://github.com/apache/doris/pull/49842)
+- 修复某些情况下,写入存储在 oss-hdfs 上的 Hive 表失败的问题
[#49754](https://github.com/apache/doris/pull/49754)
+- 修复当 Hive 分区键值有逗号的情况下,访问失败的问题
[#49382](https://github.com/apache/doris/pull/49382)
+- 修复某些情况下,Paimon 表 Split 分配不均匀的问题
[#50083](https://github.com/apache/doris/pull/50083)
+- 修复读取存储在 OSS 上的 Paimon 表时,无法正确处理 Delete 文件的问题
[#49645](https://github.com/apache/doris/pull/49645)
+- 修复 MaxCompute Catalog 中,读取高精度 Timestamp 列时无法访问的问题
[#49600](https://github.com/apache/doris/pull/49600)
+- 修复某些情况下,删除 Catalog 可能导致部分资源泄露的问题
[#49621](https://github.com/apache/doris/pull/49621)
+- 修复某些情况下,读取 LZO 压缩格式的数据失败的问题
[#49538](https://github.com/apache/doris/pull/49538)
+- 修复某些情况下,ORC 延迟物化功能导致复杂类型读取错误的问题
[#50136](https://github.com/apache/doris/pull/50136)
+- 修复某些情况下,读取 pyorc-0.3 版本产生的 ORC 文件报错的问题
[#50358](https://github.com/apache/doris/pull/50358)
+- 修复某些情况下,EXPORT 操作导致元数据死锁的问题
[#50088](https://github.com/apache/doris/pull/50088)
+
+### 索引
+
+- 修复多次添加、删除和重命名列操作后构建倒排索引的错误
[#50056](https://github.com/apache/doris/pull/50056)
+- 在 index compaction 中索引对应的列唯一 ID 的校验,避免潜在的数据异常和系统错误
[#47562](https://github.com/apache/doris/pull/47562)
+
+### 半结构化数据类型
+
+- 修复某些情况下,VARIANT 类型转 JSON 类型返回 NULL 错误的结果
[#50180](https://github.com/apache/doris/pull/50180)
+- 修复某些情况下,JSONB CAST 导致 crash
[#49810](https://github.com/apache/doris/pull/49810)
+- 禁止在 VARIANT 类型上 build index
[#49159](https://github.com/apache/doris/pull/49159)
+- 修复 named_struct 函数 decimal 类型精度正确性
[#48964](https://github.com/apache/doris/pull/48964)
+
+### 查询优化器
+
+- 修复常量折叠中的一些问题 [#49413](https://github.com/apache/doris/pull/49413)
[#50425](https://github.com/apache/doris/pull/50425)
[#49686](https://github.com/apache/doris/pull/49686)
[#49575](https://github.com/apache/doris/pull/49575)
[#50142](https://github.com/apache/doris/pull/50142)
+- 公共表达式提取在 lambda 表达式上可能工作异常
[#49166](https://github.com/apache/doris/pull/49166)
+- 修复消除 group by key 中的常量可能不能正常工作的问题
[#49589](https://github.com/apache/doris/pull/49589)
+- 修复在极端场景下,由于统计信息的推导错误,规划无法正常执行的问题
[#49415](https://github.com/apache/doris/pull/49415)
+- 修复部分依赖 BE 中元数据的 information_schema 表,不能获取完整数据的问题
[#50721](https://github.com/apache/doris/pull/50721)
+
+### 查询执行引擎
+
+- 修复了找不到 explode_json_array_json_outer
函数的问题。[#50164](https://github.com/apache/doris/pull/50164)
+- 修复了 substring_index
不支持动态参数的问题。[#50149](https://github.com/apache/doris/pull/50149)
+- 修复了很多 st_contains
函数计算结果不对的问题。[#50115](https://github.com/apache/doris/pull/50115)
+- 修复了 array_range 函数可能导致的 core
的问题。[#49993](https://github.com/apache/doris/pull/49993)
+- 修复了 date_diff
函数计算结果错误的问题。[#49429](https://github.com/apache/doris/pull/49429)
+- 修复了一系列字符串函数在非 ASCII
编码下的乱码或者结果错误的问题。[#49231](https://github.com/apache/doris/pull/49231)
[#49846](https://github.com/apache/doris/pull/49846)
[#49127](https://github.com/apache/doris/pull/49127)
[#40710](https://github.com/apache/doris/pull/40710)
+
+### 存储管理
+
+- 修复某些情况下,动态分区表(Dynamic Partition
Table)回放元数据失败的问题[#49569](https://github.com/apache/doris/pull/49569)
+- 修复 ARM 下 streamload 可能因为操作序列丢数据的问题
[#48948](https://github.com/apache/doris/pull/48948)
+- 修复 full compaction 报错以及可能导致 mow 数据重复的问题
[#49825](https://github.com/apache/doris/pull/49825)
[#48958](https://github.com/apache/doris/pull/48958)
+- 修复没有持久化分区 Storage Policy 的问题。
[#49721](https://github.com/apache/doris/pull/49721)
+- 修复导入之后文件极小概率不存在的问题。[ #50343](https://github.com/apache/doris/pull/50343)
+- 修复 CCR 和磁盘均衡并发可能导致的文件找不见问题。[#50663
](https://github.com/apache/doris/pull/50663)
+- 修复备份恢复大快照时可能出现的 connection reset
问题。[#49649](https://github.com/apache/doris/pull/49649)
+- 修复 FE Follower
丢失本地备份快照的问题。[#49550](https://github.com/apache/doris/pull/49550)
+
+### Others
+
+- 修复某些场景下,审计日志可能丢失的问题 [#50357](https://github.com/apache/doris/pull/50357)
+- 修复审计日志中 isQuery 标记可能不正确的问题
[#49959](https://github.com/apache/doris/pull/49959)
+- 修复审计日志中部分查询 sqlHash 不正确的问题
[#49984](https://github.com/apache/doris/pull/49984)
\ No newline at end of file
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/releasenotes/all-release.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/releasenotes/all-release.md
index e15801c4c15..6d24c0996d8 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/releasenotes/all-release.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/releasenotes/all-release.md
@@ -34,12 +34,14 @@ under the License.
<br />
-🎉 2.1.9 版本现已于 2025 年 04 月 02
日正式发布,详情可查看[版本发布](../releasenotes/v2.1/release-2.1.9)。子查询性能方面 2.1
版本开箱即用查询的性能提高了 100%;在数据湖分析场景方面,相对于 Trino 和 Spark 分别有 4-6
倍性能提升;在半结构化数据分析场景中提供了强有力的支持,包括新的 Variant 类型和一系列分析函数。此外,2.1
版本起支持异步物化视图以加速查询,优化了大规模实时写入,并通过稳定性和运行时 SQL 资源跟踪改进了工作负载管理。
+🎉 2.1.10 版本现已于 2025 年 05 月 17
日正式发布,详情可查看[版本发布](../releasenotes/v2.1/release-2.1.10)。子查询性能方面 2.1
版本开箱即用查询的性能提高了 100%;在数据湖分析场景方面,相对于 Trino 和 Spark 分别有 4-6
倍性能提升;在半结构化数据分析场景中提供了强有力的支持,包括新的 Variant 类型和一系列分析函数。此外,2.1
版本起支持异步物化视图以加速查询,优化了大规模实时写入,并通过稳定性和运行时 SQL 资源跟踪改进了工作负载管理。
:::
<br />
+- [2025-05-17, Apache Doris 2.1.10
版本发布](../releasenotes/v2.1/release-2.1.10.md)
+
- [2025-04-28, Apache Doris 3.0.5 版本发布](../releasenotes/v3.0/release-3.0.5.md)
- [2025-04-02, Apache Doris 2.1.9 版本发布](../releasenotes/v2.1/release-2.1.9.md)
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/releasenotes/v2.1/release-2.1.10.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/releasenotes/v2.1/release-2.1.10.md
new file mode 100644
index 00000000000..fb6431f760b
--- /dev/null
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/releasenotes/v2.1/release-2.1.10.md
@@ -0,0 +1,142 @@
+---
+{
+ "title": "Release 2.1.10",
+ "language": "zh-CN"
+}
+---
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+亲爱的社区小伙伴们,**Apache Doris 2.1.10 版本已于 2025 年 05 月 17 日正式发布。**
该版本持续在查询执行引擎、湖仓一体等方面进行改进提升与问题修复,进一步加强系统的性能和稳定性,欢迎大家下载体验。
+
+- [立即下载](https://doris.apache.org/download)
+
+- [GitHub 下载](https://github.com/apache/doris/releases/tag/2.1.10-rc01)
+
+## 行为变更
+
+- DELETE 不再错误的需要目标表的 SELECT_PRIV 权限
[#49794](https://github.com/apache/doris/pull/49794)
+- Insert Overwrite 不再限制对同一个表并发只能为 1
[#48673](https://github.com/apache/doris/pull/48673)
+- Merge on write unique 表禁止使用时序 compaction
[#49905](https://github.com/apache/doris/pull/49905)
+- 禁止在 VARIANT 类型上 build
index。[#49159](https://github.com/apache/doris/pull/49159)
+
+## 新功能
+
+### 查询执行引擎
+
+- 支持了更多的 GEO 类型的计算函数`ST_CONTAINS ` , `ST_INTERSECTS`,
`ST_TOUCHES`,`GeometryFromText`,`ST_Intersects`, `ST_Disjoint`,
`ST_Touches`。[#49665](https://github.com/apache/doris/pull/49665)
[#48695](https://github.com/apache/doris/pull/48695)
+- 支持 `years_of_week` 函数。[#48870](https://github.com/apache/doris/pull/48870)
+
+## 湖仓一体
+
+- Hive Catalog 支持 Catalog 级别的分区缓存开关控制
[#50724](https://github.com/apache/doris/pull/50724)
+ -
更多详情,可参考[文档](https://doris.apache.org/zh-CN/docs/dev/lakehouse/meta-cache#关闭-hive-catalog-元数据缓存)
+
+## 改进提升
+
+### 湖仓一体
+
+- Paimon 依赖版本升级到 1.0.1
+- Iceberg 依赖版本升级到 1.6.1
+- 将 Parquet Footer 的内存开销纳入 Memory Tracker 管控,以避免可能的 OOM
问题。[#49037](https://github.com/apache/doris/pull/49037)
+- 优化 JDBC Catalog 的谓词下推逻辑,支持 AND/OR
等连接谓词的下推[#50542](https://github.com/apache/doris/pull/50542)
+- 预编译版本默认携带 Jindofs 扩展包以支持阿里云 OSS-HDFS 访问。
+
+### 半结构化管理
+
+- ANY 函数支持 JSON 类型 [#50311](https://github.com/apache/doris/pull/50311)
+- JSON_REPLACE,JSON_INSERT,JSON_SET,JSON_ARRAY 函数支持 JSON
数据类型和复杂数据类型[#50308](https://github.com/apache/doris/pull/50308)
+
+### 查询优化器
+
+- 当 in 表达式的 options 多于 `Config.max_distribution_pruner_recursion_depth`
时,不执行分桶裁剪,以提升规划速度 [#49387](https://github.com/apache/doris/pull/49387)
+
+### 存储管理
+
+- 减少日志和改进部分日志。[#47647](https://github.com/apache/doris/pull/47647)
[#48523](https://github.com/apache/doris/pull/48523)
+
+### 其他
+
+- 避免 thrift rpc END_OF_FILE 异常
[#49649](https://github.com/apache/doris/pull/49649)
+
+## Bug 修复
+
+### 湖仓一体
+
+- 修复某些情况下,在 Hive 侧新建表,Doris 侧无法立即查看到的问题
[#50188](https://github.com/apache/doris/pull/50188)
+- 修复某些 Text 格式 Hive 表访问报错 "Storage schema reading not supported" 的 问题
[#50038](https://github.com/apache/doris/pull/50038)
+ - 查看[文档 get_schema_from_table
详情](https://doris.apache.org/zh-CN/docs/dev/lakehouse/catalogs/hive-catalog?_highlight=get_schema_from_table#语法)
+- 修复某些情况下,写入 Hive/Iceberg 表时,元数据提交并发问题
[#49842](https://github.com/apache/doris/pull/49842)
+- 修复某些情况下,写入存储在 oss-hdfs 上的 Hive 表失败的问题
[#49754](https://github.com/apache/doris/pull/49754)
+- 修复当 Hive 分区键值有逗号的情况下,访问失败的问题
[#49382](https://github.com/apache/doris/pull/49382)
+- 修复某些情况下,Paimon 表 Split 分配不均匀的问题
[#50083](https://github.com/apache/doris/pull/50083)
+- 修复读取存储在 OSS 上的 Paimon 表时,无法正确处理 Delete 文件的问题
[#49645](https://github.com/apache/doris/pull/49645)
+- 修复 MaxCompute Catalog 中,读取高精度 Timestamp 列时无法访问的问题
[#49600](https://github.com/apache/doris/pull/49600)
+- 修复某些情况下,删除 Catalog 可能导致部分资源泄露的问题
[#49621](https://github.com/apache/doris/pull/49621)
+- 修复某些情况下,读取 LZO 压缩格式的数据失败的问题
[#49538](https://github.com/apache/doris/pull/49538)
+- 修复某些情况下,ORC 延迟物化功能导致复杂类型读取错误的问题
[#50136](https://github.com/apache/doris/pull/50136)
+- 修复某些情况下,读取 pyorc-0.3 版本产生的 ORC 文件报错的问题
[#50358](https://github.com/apache/doris/pull/50358)
+- 修复某些情况下,EXPORT 操作导致元数据死锁的问题
[#50088](https://github.com/apache/doris/pull/50088)
+
+### 索引
+
+- 修复多次添加、删除和重命名列操作后构建倒排索引的错误
[#50056](https://github.com/apache/doris/pull/50056)
+- 在 index compaction 中索引对应的列唯一 ID 的校验,避免潜在的数据异常和系统错误
[#47562](https://github.com/apache/doris/pull/47562)
+
+### 半结构化数据类型
+
+- 修复某些情况下,VARIANT 类型转 JSON 类型返回 NULL 错误的结果
[#50180](https://github.com/apache/doris/pull/50180)
+- 修复某些情况下,JSONB CAST 导致 crash
[#49810](https://github.com/apache/doris/pull/49810)
+- 禁止在 VARIANT 类型上 build index
[#49159](https://github.com/apache/doris/pull/49159)
+- 修复 named_struct 函数 decimal 类型精度正确性
[#48964](https://github.com/apache/doris/pull/48964)
+
+### 查询优化器
+
+- 修复常量折叠中的一些问题 [#49413](https://github.com/apache/doris/pull/49413)
[#50425](https://github.com/apache/doris/pull/50425)
[#49686](https://github.com/apache/doris/pull/49686)
[#49575](https://github.com/apache/doris/pull/49575)
[#50142](https://github.com/apache/doris/pull/50142)
+- 公共表达式提取在 lambda 表达式上可能工作异常
[#49166](https://github.com/apache/doris/pull/49166)
+- 修复消除 group by key 中的常量可能不能正常工作的问题
[#49589](https://github.com/apache/doris/pull/49589)
+- 修复在极端场景下,由于统计信息的推导错误,规划无法正常执行的问题
[#49415](https://github.com/apache/doris/pull/49415)
+- 修复部分依赖 BE 中元数据的 information_schema 表,不能获取完整数据的问题
[#50721](https://github.com/apache/doris/pull/50721)
+
+### 查询执行引擎
+
+- 修复了找不到 explode_json_array_json_outer
函数的问题。[#50164](https://github.com/apache/doris/pull/50164)
+- 修复了 substring_index
不支持动态参数的问题。[#50149](https://github.com/apache/doris/pull/50149)
+- 修复了很多 st_contains
函数计算结果不对的问题。[#50115](https://github.com/apache/doris/pull/50115)
+- 修复了 array_range 函数可能导致的 core
的问题。[#49993](https://github.com/apache/doris/pull/49993)
+- 修复了 date_diff
函数计算结果错误的问题。[#49429](https://github.com/apache/doris/pull/49429)
+- 修复了一系列字符串函数在非 ASCII
编码下的乱码或者结果错误的问题。[#49231](https://github.com/apache/doris/pull/49231)
[#49846](https://github.com/apache/doris/pull/49846)
[#49127](https://github.com/apache/doris/pull/49127)
[#40710](https://github.com/apache/doris/pull/40710)
+
+### 存储管理
+
+- 修复某些情况下,动态分区表(Dynamic Partition
Table)回放元数据失败的问题[#49569](https://github.com/apache/doris/pull/49569)
+- 修复 ARM 下 streamload 可能因为操作序列丢数据的问题
[#48948](https://github.com/apache/doris/pull/48948)
+- 修复 full compaction 报错以及可能导致 mow 数据重复的问题
[#49825](https://github.com/apache/doris/pull/49825)
[#48958](https://github.com/apache/doris/pull/48958)
+- 修复没有持久化分区 Storage Policy 的问题。
[#49721](https://github.com/apache/doris/pull/49721)
+- 修复导入之后文件极小概率不存在的问题。[ #50343](https://github.com/apache/doris/pull/50343)
+- 修复 CCR 和磁盘均衡并发可能导致的文件找不见问题。[#50663
](https://github.com/apache/doris/pull/50663)
+- 修复备份恢复大快照时可能出现的 connection reset
问题。[#49649](https://github.com/apache/doris/pull/49649)
+- 修复 FE Follower
丢失本地备份快照的问题。[#49550](https://github.com/apache/doris/pull/49550)
+
+### Others
+
+- 修复某些场景下,审计日志可能丢失的问题 [#50357](https://github.com/apache/doris/pull/50357)
+- 修复审计日志中 isQuery 标记可能不正确的问题
[#49959](https://github.com/apache/doris/pull/49959)
+- 修复审计日志中部分查询 sqlHash 不正确的问题
[#49984](https://github.com/apache/doris/pull/49984)
\ No newline at end of file
diff --git a/sidebars.json b/sidebars.json
index 670a8d53bc1..029d1c73e7a 100644
--- a/sidebars.json
+++ b/sidebars.json
@@ -2138,6 +2138,7 @@
"type": "category",
"label": "v2.1",
"items": [
+ "releasenotes/v2.1/release-2.1.10",
"releasenotes/v2.1/release-2.1.9",
"releasenotes/v2.1/release-2.1.8",
"releasenotes/v2.1/release-2.1.7",
diff --git a/src/constant/download.data.ts b/src/constant/download.data.ts
index 41cb1e43e34..5fa36538e34 100644
--- a/src/constant/download.data.ts
+++ b/src/constant/download.data.ts
@@ -31,7 +31,7 @@ export enum ToolsEnum {
export const ORIGIN =
'https://apache-doris-releases.oss-accelerate.aliyuncs.com/';
export enum VersionEnum {
Latest = '3.0.5',
- Prev = '2.1.9',
+ Prev = '2.1.10',
Earlier = '2.0.15',
}
export enum DownloadTypeEnum {
@@ -74,36 +74,36 @@ export const DORIS_VERSIONS: Option[] = [
],
},
{
- label: '2.1.9',
- value: '2.1.9',
+ label: '2.1.10',
+ value: '2.1.10',
majorVersion: '2.1',
children: [
{
label: CPUEnum.X64,
value: CPUEnum.X64,
- gz: `${ORIGIN}apache-doris-2.1.9-bin-x64.tar.gz`,
- asc: `${ORIGIN}apache-doris-2.1.9-bin-x64.tar.gz.asc`,
- sha512: `${ORIGIN}apache-doris-2.1.9-bin-x64.tar.gz.sha512`,
- source: 'https://downloads.apache.org/doris/2.1/2.1.9/',
- version: '2.1.9-rc02',
+ gz: `${ORIGIN}apache-doris-2.1.10-bin-x64.tar.gz`,
+ asc: `${ORIGIN}apache-doris-2.1.10-bin-x64.tar.gz.asc`,
+ sha512: `${ORIGIN}apache-doris-2.1.10-bin-x64.tar.gz.sha512`,
+ source: 'https://downloads.apache.org/doris/2.1/2.1.10/',
+ version: '2.1.10-rc01',
},
{
label: CPUEnum.X64NoAvx2,
value: CPUEnum.X64NoAvx2,
- gz: `${ORIGIN}apache-doris-2.1.9-bin-x64-noavx2.tar.gz`,
- asc: `${ORIGIN}apache-doris-2.1.9-bin-x64-noavx2.tar.gz.asc`,
- sha512:
`${ORIGIN}apache-doris-2.1.9-bin-x64-noavx2.tar.gz.sha512`,
- source: 'https://downloads.apache.org/doris/2.1/2.1.9/',
- version: '2.1.9-rc02',
+ gz: `${ORIGIN}apache-doris-2.1.10-bin-x64-noavx2.tar.gz`,
+ asc: `${ORIGIN}apache-doris-2.1.10-bin-x64-noavx2.tar.gz.asc`,
+ sha512:
`${ORIGIN}apache-doris-2.1.10-bin-x64-noavx2.tar.gz.sha512`,
+ source: 'https://downloads.apache.org/doris/2.1/2.1.10/',
+ version: '2.1.10-rc01',
},
{
label: CPUEnum.ARM64,
value: CPUEnum.ARM64,
- gz: `${ORIGIN}apache-doris-2.1.9-bin-arm64.tar.gz`,
- asc: `${ORIGIN}apache-doris-2.1.9-bin-arm64.tar.gz.asc`,
- sha512: `${ORIGIN}apache-doris-2.1.9-bin-arm64.tar.gz.sha512`,
- source: 'https://downloads.apache.org/doris/2.1/2.1.9/',
- version: '2.1.9-rc02',
+ gz: `${ORIGIN}apache-doris-2.1.10-bin-arm64.tar.gz`,
+ asc: `${ORIGIN}apache-doris-2.1.10-bin-arm64.tar.gz.asc`,
+ sha512: `${ORIGIN}apache-doris-2.1.10-bin-arm64.tar.gz.sha512`,
+ source: 'https://downloads.apache.org/doris/2.1/2.1.10/',
+ version: '2.1.10-rc01',
},
],
},
@@ -360,6 +360,40 @@ export const ALL_VERSIONS: AllVersionOption[] = [
label: '2.1',
value: '2.1',
children: [
+ {
+ label: '2.1.10',
+ value: '2.1.10',
+ majorVersion: '2.1',
+ items: [
+ {
+ label: CPUEnum.X64,
+ value: CPUEnum.X64,
+ gz: `${ORIGIN}apache-doris-2.1.10-bin-x64.tar.gz`,
+ asc: `${ORIGIN}apache-doris-2.1.10-bin-x64.tar.gz.asc`,
+ sha512:
`${ORIGIN}apache-doris-2.1.10-bin-x64.tar.gz.sha512`,
+ source:
'https://downloads.apache.org/doris/2.1/2.1.10/',
+ version: '2.1.10-rc01',
+ },
+ {
+ label: CPUEnum.X64NoAvx2,
+ value: CPUEnum.X64NoAvx2,
+ gz:
`${ORIGIN}apache-doris-2.1.10-bin-x64-noavx2.tar.gz`,
+ asc:
`${ORIGIN}apache-doris-2.1.10-bin-x64-noavx2.tar.gz.asc`,
+ sha512:
`${ORIGIN}apache-doris-2.1.10-bin-x64-noavx2.tar.gz.sha512`,
+ source:
'https://downloads.apache.org/doris/2.1/2.1.10/',
+ version: '2.1.10-rc01',
+ },
+ {
+ label: CPUEnum.ARM64,
+ value: CPUEnum.ARM64,
+ gz: `${ORIGIN}apache-doris-2.1.10-bin-arm64.tar.gz`,
+ asc:
`${ORIGIN}apache-doris-2.1.10-bin-arm64.tar.gz.asc`,
+ sha512:
`${ORIGIN}apache-doris-2.1.10-bin-arm64.tar.gz.sha512`,
+ source:
'https://downloads.apache.org/doris/2.1/2.1.10/',
+ version: '2.1.10-rc01',
+ },
+ ],
+ },
{
label: '2.1.9',
value: '2.1.9',
diff --git a/src/constant/newsletter.data.ts b/src/constant/newsletter.data.ts
index 85be2fed3d2..739ca641fc6 100644
--- a/src/constant/newsletter.data.ts
+++ b/src/constant/newsletter.data.ts
@@ -1,9 +1,10 @@
export const NEWSLETTER_DATA = [
{
tags: ['Release Note'],
- title: "Apache Doris 3.0.5 Released",
- content: `This version features improved Lakehouse, Asynchronous
Materialized Views, Semi-structured Data Management and more. `,
- image: '3.0.5.jpeg',
+ title: "Apache Doris 2.1.10 Released",
+ content: `This version introduces continuous upgrades and enhancements
in Query Execution Engine and Lakehouse. It also resolves critical bugs to
improve stability and performance.`,
+ to: '/blog/release-note-2.1.10',
+ image: '2.1.10.jpg',
},
{
tags: ['Best Practice'],
diff --git a/static/images/2.1.10.jpg b/static/images/2.1.10.jpg
new file mode 100644
index 00000000000..033360afb35
Binary files /dev/null and b/static/images/2.1.10.jpg differ
diff --git a/versioned_docs/version-2.0/releasenotes/all-release.md
b/versioned_docs/version-2.0/releasenotes/all-release.md
index 7f0d919f34e..1a24eb6cd78 100644
--- a/versioned_docs/version-2.0/releasenotes/all-release.md
+++ b/versioned_docs/version-2.0/releasenotes/all-release.md
@@ -32,13 +32,15 @@ This document presents a summary of Apache Doris versions
released within one ye
<br />
-🎉 Version 2.1.9 released now. Check out the 🔗[Release
Notes](../releasenotes/v2.1/release-2.1.9) here. The 2.1 version delivers
exceptional performance with 100% higher out-of-the-box queries proven by
TPC-DS 1TB tests, enhanced data lake analytics that are 4-6 times speedier than
Trino and Spark, solid support for semi-structured data analysis with new
Variant types and suite of analytical functions, asynchronous materialized
views for query acceleration, optimized real-time writing at [...]
+🎉 Version 2.1.10 released now. Check out the 🔗[Release
Notes](../releasenotes/v2.1/release-2.1.10) here. The 2.1 version delivers
exceptional performance with 100% higher out-of-the-box queries proven by
TPC-DS 1TB tests, enhanced data lake analytics that are 4-6 times speedier than
Trino and Spark, solid support for semi-structured data analysis with new
Variant types and suite of analytical functions, asynchronous materialized
views for query acceleration, optimized real-time writing a [...]
:::
<br />
+- [2025-05-17, Apache Doris 2.1.10 is
released](../releasenotes/v2.1/release-2.1.10.md)
+
- [2025-04-28, Apache Doris 3.0.5 is
released](../releasenotes/v3.0/release-3.0.5.md)
- [2025-04-02, Apache Doris 2.1.9 is
released](../releasenotes/v2.1/release-2.1.9.md)
diff --git a/versioned_docs/version-2.0/releasenotes/v2.1/release-2.1.10.md
b/versioned_docs/version-2.0/releasenotes/v2.1/release-2.1.10.md
new file mode 100644
index 00000000000..796edd546fb
--- /dev/null
+++ b/versioned_docs/version-2.0/releasenotes/v2.1/release-2.1.10.md
@@ -0,0 +1,136 @@
+---
+{
+ "title": "Release 2.1.10",
+ "language": "en"
+}
+---
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+## Behavior Changes
+
+- DELETE no longer incorrectly requires the SELECT_PRIV permission on the
target table. [ #49794](https://github.com/apache/doris/pull/49794)
+- Insert Overwrite no longer restricts concurrent operations on the same table
to 1. [ #48673](https://github.com/apache/doris/pull/48673)
+- Merge on write unique tables prohibit the use of time-series compaction. [
#49905](https://github.com/apache/doris/pull/49905)
+- Building indexes on VARIANT type columns is prohibited. [
#49159](https://github.com/apache/doris/pull/49159)
+
+## New Features
+
+### Query Execution Engine
+
+- Added support for more GEO type computation functions: `ST_CONTAINS`,
`ST_INTERSECTS`, `ST_TOUCHES`, `GeometryFromText`, `ST_Intersects`,
`ST_Disjoint`, `ST_Touches`. [
#49665](https://github.com/apache/doris/pull/49665) [
#48695](https://github.com/apache/doris/pull/48695)
+- Added support for the `years_of_week` function. [
#48870](https://github.com/apache/doris/pull/48870)
+
+### Lakehouse
+
+- Hive Catalog now supports catalog-level partition cache control. [
#50724](https://github.com/apache/doris/pull/50724)
+ - For more details, refer to the[
](https://doris.apache.org/docs/dev/lakehouse/meta-cache)[documentation](https://doris.apache.org/docs/dev/lakehouse/meta-cache#disable-hive-catalog-metadata-cache).
+
+## Improvements
+
+### Lakehouse
+
+- Upgraded the Paimon dependency version to 1.0.1.
+- Upgraded the Iceberg dependency version to 1.6.1.
+- Included the memory overhead of Parquet Footer in the Memory Tracker to
avoid potential OOM issues. [
#49037](https://github.com/apache/doris/pull/49037)
+- Optimized the predicate pushdown logic for JDBC Catalog, supporting pushdown
of AND/OR connected predicates. [
#50542](https://github.com/apache/doris/pull/50542)
+- Precompiled versions now include the Jindofs extension package by default to
support Alibaba Cloud oss-hdfs access.
+
+### Semi-Structured Data Management
+
+- ANY function now supports JSON type. [
#50311](https://github.com/apache/doris/pull/50311)
+- JSON_REPLACE, JSON_INSERT, JSON_SET, JSON_ARRAY functions now support JSON
data type and complex data types. [
#50308](https://github.com/apache/doris/pull/50308)
+
+### Query Optimizer
+
+- When the number of options in an IN expression exceeds
`Config.max_distribution_pruner_recursion_depth`, bucket pruning is not
performed to improve planning speed. [
#49387](https://github.com/apache/doris/pull/49387)
+
+### Storage Management
+
+- Reduced logging and improved some log messages. [
#47647](https://github.com/apache/doris/pull/47647) [
#48523](https://github.com/apache/doris/pull/48523)
+
+### Other
+
+- Avoided the thrift rpc END_OF_FILE exception. [
#49649](https://github.com/apache/doris/pull/49649)
+
+## Bug Fixes
+
+### Lakehouse
+
+- Fixed the issue where newly created tables in Hive were not immediately
visible in Doris. [ #50188](https://github.com/apache/doris/pull/50188)
+- Fixed the error "Storage schema reading not supported" when accessing
certain Text format Hive tables. [
#50038](https://github.com/apache/doris/pull/50038)
+ - Refer to the[ get_schema_from_table
documentation](https://doris.apache.org/docs/dev/lakehouse/catalogs/hive-catalog?_highlight=get_schema_from_table#syntax)
for details.
+- Fixed concurrency issues with metadata submission when writing to
Hive/Iceberg tables. [ #49842](https://github.com/apache/doris/pull/49842)
+- Fixed the issue where writing to Hive tables stored on oss-hdfs failed. [
#49754](https://github.com/apache/doris/pull/49754)
+- Fixed the issue where accessing Hive tables with partition key values
containing commas failed. [ #49382](https://github.com/apache/doris/pull/49382)
+- Fixed the issue where Split allocation for Paimon tables was uneven in
certain cases. [ #50083](https://github.com/apache/doris/pull/50083)
+- Fixed the issue where Delete files were not correctly handled when reading
Paimon tables stored on oss. [
#49645](https://github.com/apache/doris/pull/49645)
+- Fixed the issue where reading high-precision Timestamp columns in MaxCompute
Catalog failed. [ #49600](https://github.com/apache/doris/pull/49600)
+- Fixed the potential resource leakage when deleting a Catalog in certain
cases. [ #49621](https://github.com/apache/doris/pull/49621)
+- Fixed the issue where reading LZO compressed data failed in certain cases. [
#49538](https://github.com/apache/doris/pull/49538)
+- Fixed the issue where ORC deferred materialization caused errors when
reading complex types. [ #50136](https://github.com/apache/doris/pull/50136)
+- Fixed the issue where reading ORC files generated by pyorc-0.3 version
failed. [ #50358](https://github.com/apache/doris/pull/50358)
+- Fixed the issue where EXPORT operations caused metadata deadlocks. [
#50088](https://github.com/apache/doris/pull/50088)
+
+### Indexing
+
+- Fixed errors in building inverted indexes after multiple add, delete, and
rename column operations. [ #50056](https://github.com/apache/doris/pull/50056)
+- Added validation for unique column IDs in index compaction to avoid
potential data anomalies and system errors. [
#47562](https://github.com/apache/doris/pull/47562)
+
+### Semi-Structured Data Types
+
+- Fixed the issue where converting VARIANT type to JSON type returned NULL in
certain cases. [ #50180](https://github.com/apache/doris/pull/50180)
+- Fixed the crash caused by JSONB CAST in certain cases. [
#49810](https://github.com/apache/doris/pull/49810)
+- Prohibited building indexes on VARIANT type columns. [
#49159](https://github.com/apache/doris/pull/49159)
+- Fixed the precision correctness of decimal type in the named_struct
function. [ #48964](https://github.com/apache/doris/pull/48964)
+
+### Query Optimizer
+
+- Fixed several issues in constant folding.
[#49413](https://github.com/apache/doris/pull/49413)
[#50425](https://github.com/apache/doris/pull/50425)
[#49686](https://github.com/apache/doris/pull/49686)
[#49575](https://github.com/apache/doris/pull/49575)
[#50142](https://github.com/apache/doris/pull/50142)
+- Common subexpression extraction may not work properly on lambda expressions.
[#49166](https://github.com/apache/doris/pull/49166)
+- Fixed the issue where eliminating constants in group by keys might not work
properly. [#49589](https://github.com/apache/doris/pull/49589)
+- Fixed the issue where planning failed in extreme scenarios due to incorrect
statistics inference. [#49415](https://github.com/apache/doris/pull/49415)
+- Fixed the issue where some information_schema tables depending on BE
metadata could not retrieve complete data.
[#50721](https://github.com/apache/doris/pull/50721)
+
+### Query Execution Engine
+
+- Fixed the issue where the explode_json_array_json_outer function was not
found. [#50164](https://github.com/apache/doris/pull/50164)
+- Fixed the issue where substring_index did not support dynamic parameters.
[#50149](https://github.com/apache/doris/pull/50149)
+- Fixed the issue where the st_contains function returned incorrect results in
many cases. [#50115](https://github.com/apache/doris/pull/50115)
+- Fixed the core dump issue that could be caused by the array_range function.
[#49993](https://github.com/apache/doris/pull/49993)
+- Fixed the issue where the date_diff function returned incorrect results.
[#49429](https://github.com/apache/doris/pull/49429)
+- Fixed a series of issues with string functions causing garbled output or
incorrect results in non-ASCII encodings.
[#49231](https://github.com/apache/doris/pull/49231)
[#49846](https://github.com/apache/doris/pull/49846)
[#49127](https://github.com/apache/doris/pull/49127)
[#40710](https://github.com/apache/doris/pull/40710)
+
+### Storage Management
+
+- Fixed the issue where metadata replay for dynamic partition tables failed in
certain cases. [#49569](https://github.com/apache/doris/pull/49569)
+- Fixed the issue where streamload on ARM might lose data due to operation
sequence. [#48948](https://github.com/apache/doris/pull/48948)
+- Fixed the error in full compaction and the potential issue of mow data
duplication. [#49825](https://github.com/apache/doris/pull/49825)
[#48958](https://github.com/apache/doris/pull/48958)
+- Fixed the issue where partition storage policy was not persisted.
[#49721](https://github.com/apache/doris/pull/49721)
+- Fixed the extremely rare issue where imported files did not exist.
[#50343](https://github.com/apache/doris/pull/50343)
+- Fixed the issue where ccr and disk balancing concurrency might cause files
to go missing. [#50663](https://github.com/apache/doris/pull/50663)
+- Fixed the connection reset issue that might occur during backup and restore
of large snapshots. [#49649](https://github.com/apache/doris/pull/49649)
+- Fixed the issue where FE follower lost local backup snapshots.
[#49550](https://github.com/apache/doris/pull/49550)
+
+### Others
+
+- Fixed the issue where audit logs might be lost in certain scenarios.
[#50357](https://github.com/apache/doris/pull/50357)
+- Fixed the issue where the isQuery flag in audit logs might be incorrect.
[#49959](https://github.com/apache/doris/pull/49959)
+- Fixed the issue where some query sqlHash values in audit logs were
incorrect. [#49984](https://github.com/apache/doris/pull/49984)
\ No newline at end of file
diff --git a/versioned_docs/version-2.1/releasenotes/all-release.md
b/versioned_docs/version-2.1/releasenotes/all-release.md
index 7f0d919f34e..1a24eb6cd78 100644
--- a/versioned_docs/version-2.1/releasenotes/all-release.md
+++ b/versioned_docs/version-2.1/releasenotes/all-release.md
@@ -32,13 +32,15 @@ This document presents a summary of Apache Doris versions
released within one ye
<br />
-🎉 Version 2.1.9 released now. Check out the 🔗[Release
Notes](../releasenotes/v2.1/release-2.1.9) here. The 2.1 version delivers
exceptional performance with 100% higher out-of-the-box queries proven by
TPC-DS 1TB tests, enhanced data lake analytics that are 4-6 times speedier than
Trino and Spark, solid support for semi-structured data analysis with new
Variant types and suite of analytical functions, asynchronous materialized
views for query acceleration, optimized real-time writing at [...]
+🎉 Version 2.1.10 released now. Check out the 🔗[Release
Notes](../releasenotes/v2.1/release-2.1.10) here. The 2.1 version delivers
exceptional performance with 100% higher out-of-the-box queries proven by
TPC-DS 1TB tests, enhanced data lake analytics that are 4-6 times speedier than
Trino and Spark, solid support for semi-structured data analysis with new
Variant types and suite of analytical functions, asynchronous materialized
views for query acceleration, optimized real-time writing a [...]
:::
<br />
+- [2025-05-17, Apache Doris 2.1.10 is
released](../releasenotes/v2.1/release-2.1.10.md)
+
- [2025-04-28, Apache Doris 3.0.5 is
released](../releasenotes/v3.0/release-3.0.5.md)
- [2025-04-02, Apache Doris 2.1.9 is
released](../releasenotes/v2.1/release-2.1.9.md)
diff --git a/versioned_docs/version-2.1/releasenotes/v2.1/release-2.1.10.md
b/versioned_docs/version-2.1/releasenotes/v2.1/release-2.1.10.md
new file mode 100644
index 00000000000..796edd546fb
--- /dev/null
+++ b/versioned_docs/version-2.1/releasenotes/v2.1/release-2.1.10.md
@@ -0,0 +1,136 @@
+---
+{
+ "title": "Release 2.1.10",
+ "language": "en"
+}
+---
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+## Behavior Changes
+
+- DELETE no longer incorrectly requires the SELECT_PRIV permission on the
target table. [ #49794](https://github.com/apache/doris/pull/49794)
+- Insert Overwrite no longer restricts concurrent operations on the same table
to 1. [ #48673](https://github.com/apache/doris/pull/48673)
+- Merge on write unique tables prohibit the use of time-series compaction. [
#49905](https://github.com/apache/doris/pull/49905)
+- Building indexes on VARIANT type columns is prohibited. [
#49159](https://github.com/apache/doris/pull/49159)
+
+## New Features
+
+### Query Execution Engine
+
+- Added support for more GEO type computation functions: `ST_CONTAINS`,
`ST_INTERSECTS`, `ST_TOUCHES`, `GeometryFromText`, `ST_Intersects`,
`ST_Disjoint`, `ST_Touches`. [
#49665](https://github.com/apache/doris/pull/49665) [
#48695](https://github.com/apache/doris/pull/48695)
+- Added support for the `years_of_week` function. [
#48870](https://github.com/apache/doris/pull/48870)
+
+### Lakehouse
+
+- Hive Catalog now supports catalog-level partition cache control. [
#50724](https://github.com/apache/doris/pull/50724)
+ - For more details, refer to the[
](https://doris.apache.org/docs/dev/lakehouse/meta-cache)[documentation](https://doris.apache.org/docs/dev/lakehouse/meta-cache#disable-hive-catalog-metadata-cache).
+
+## Improvements
+
+### Lakehouse
+
+- Upgraded the Paimon dependency version to 1.0.1.
+- Upgraded the Iceberg dependency version to 1.6.1.
+- Included the memory overhead of Parquet Footer in the Memory Tracker to
avoid potential OOM issues. [
#49037](https://github.com/apache/doris/pull/49037)
+- Optimized the predicate pushdown logic for JDBC Catalog, supporting pushdown
of AND/OR connected predicates. [
#50542](https://github.com/apache/doris/pull/50542)
+- Precompiled versions now include the Jindofs extension package by default to
support Alibaba Cloud oss-hdfs access.
+
+### Semi-Structured Data Management
+
+- ANY function now supports JSON type. [
#50311](https://github.com/apache/doris/pull/50311)
+- JSON_REPLACE, JSON_INSERT, JSON_SET, JSON_ARRAY functions now support JSON
data type and complex data types. [
#50308](https://github.com/apache/doris/pull/50308)
+
+### Query Optimizer
+
+- When the number of options in an IN expression exceeds
`Config.max_distribution_pruner_recursion_depth`, bucket pruning is not
performed to improve planning speed. [
#49387](https://github.com/apache/doris/pull/49387)
+
+### Storage Management
+
+- Reduced logging and improved some log messages. [
#47647](https://github.com/apache/doris/pull/47647) [
#48523](https://github.com/apache/doris/pull/48523)
+
+### Other
+
+- Avoided the thrift rpc END_OF_FILE exception. [
#49649](https://github.com/apache/doris/pull/49649)
+
+## Bug Fixes
+
+### Lakehouse
+
+- Fixed the issue where newly created tables in Hive were not immediately
visible in Doris. [ #50188](https://github.com/apache/doris/pull/50188)
+- Fixed the error "Storage schema reading not supported" when accessing
certain Text format Hive tables. [
#50038](https://github.com/apache/doris/pull/50038)
+ - Refer to the[ get_schema_from_table
documentation](https://doris.apache.org/docs/dev/lakehouse/catalogs/hive-catalog?_highlight=get_schema_from_table#syntax)
for details.
+- Fixed concurrency issues with metadata submission when writing to
Hive/Iceberg tables. [ #49842](https://github.com/apache/doris/pull/49842)
+- Fixed the issue where writing to Hive tables stored on oss-hdfs failed. [
#49754](https://github.com/apache/doris/pull/49754)
+- Fixed the issue where accessing Hive tables with partition key values
containing commas failed. [ #49382](https://github.com/apache/doris/pull/49382)
+- Fixed the issue where Split allocation for Paimon tables was uneven in
certain cases. [ #50083](https://github.com/apache/doris/pull/50083)
+- Fixed the issue where Delete files were not correctly handled when reading
Paimon tables stored on oss. [
#49645](https://github.com/apache/doris/pull/49645)
+- Fixed the issue where reading high-precision Timestamp columns in MaxCompute
Catalog failed. [ #49600](https://github.com/apache/doris/pull/49600)
+- Fixed the potential resource leakage when deleting a Catalog in certain
cases. [ #49621](https://github.com/apache/doris/pull/49621)
+- Fixed the issue where reading LZO compressed data failed in certain cases. [
#49538](https://github.com/apache/doris/pull/49538)
+- Fixed the issue where ORC deferred materialization caused errors when
reading complex types. [ #50136](https://github.com/apache/doris/pull/50136)
+- Fixed the issue where reading ORC files generated by pyorc-0.3 version
failed. [ #50358](https://github.com/apache/doris/pull/50358)
+- Fixed the issue where EXPORT operations caused metadata deadlocks. [
#50088](https://github.com/apache/doris/pull/50088)
+
+### Indexing
+
+- Fixed errors in building inverted indexes after multiple add, delete, and
rename column operations. [ #50056](https://github.com/apache/doris/pull/50056)
+- Added validation for unique column IDs in index compaction to avoid
potential data anomalies and system errors. [
#47562](https://github.com/apache/doris/pull/47562)
+
+### Semi-Structured Data Types
+
+- Fixed the issue where converting VARIANT type to JSON type returned NULL in
certain cases. [ #50180](https://github.com/apache/doris/pull/50180)
+- Fixed the crash caused by JSONB CAST in certain cases. [
#49810](https://github.com/apache/doris/pull/49810)
+- Prohibited building indexes on VARIANT type columns. [
#49159](https://github.com/apache/doris/pull/49159)
+- Fixed the precision correctness of decimal type in the named_struct
function. [ #48964](https://github.com/apache/doris/pull/48964)
+
+### Query Optimizer
+
+- Fixed several issues in constant folding.
[#49413](https://github.com/apache/doris/pull/49413)
[#50425](https://github.com/apache/doris/pull/50425)
[#49686](https://github.com/apache/doris/pull/49686)
[#49575](https://github.com/apache/doris/pull/49575)
[#50142](https://github.com/apache/doris/pull/50142)
+- Common subexpression extraction may not work properly on lambda expressions.
[#49166](https://github.com/apache/doris/pull/49166)
+- Fixed the issue where eliminating constants in group by keys might not work
properly. [#49589](https://github.com/apache/doris/pull/49589)
+- Fixed the issue where planning failed in extreme scenarios due to incorrect
statistics inference. [#49415](https://github.com/apache/doris/pull/49415)
+- Fixed the issue where some information_schema tables depending on BE
metadata could not retrieve complete data.
[#50721](https://github.com/apache/doris/pull/50721)
+
+### Query Execution Engine
+
+- Fixed the issue where the explode_json_array_json_outer function was not
found. [#50164](https://github.com/apache/doris/pull/50164)
+- Fixed the issue where substring_index did not support dynamic parameters.
[#50149](https://github.com/apache/doris/pull/50149)
+- Fixed the issue where the st_contains function returned incorrect results in
many cases. [#50115](https://github.com/apache/doris/pull/50115)
+- Fixed the core dump issue that could be caused by the array_range function.
[#49993](https://github.com/apache/doris/pull/49993)
+- Fixed the issue where the date_diff function returned incorrect results.
[#49429](https://github.com/apache/doris/pull/49429)
+- Fixed a series of issues with string functions causing garbled output or
incorrect results in non-ASCII encodings.
[#49231](https://github.com/apache/doris/pull/49231)
[#49846](https://github.com/apache/doris/pull/49846)
[#49127](https://github.com/apache/doris/pull/49127)
[#40710](https://github.com/apache/doris/pull/40710)
+
+### Storage Management
+
+- Fixed the issue where metadata replay for dynamic partition tables failed in
certain cases. [#49569](https://github.com/apache/doris/pull/49569)
+- Fixed the issue where streamload on ARM might lose data due to operation
sequence. [#48948](https://github.com/apache/doris/pull/48948)
+- Fixed the error in full compaction and the potential issue of mow data
duplication. [#49825](https://github.com/apache/doris/pull/49825)
[#48958](https://github.com/apache/doris/pull/48958)
+- Fixed the issue where partition storage policy was not persisted.
[#49721](https://github.com/apache/doris/pull/49721)
+- Fixed the extremely rare issue where imported files did not exist.
[#50343](https://github.com/apache/doris/pull/50343)
+- Fixed the issue where ccr and disk balancing concurrency might cause files
to go missing. [#50663](https://github.com/apache/doris/pull/50663)
+- Fixed the connection reset issue that might occur during backup and restore
of large snapshots. [#49649](https://github.com/apache/doris/pull/49649)
+- Fixed the issue where FE follower lost local backup snapshots.
[#49550](https://github.com/apache/doris/pull/49550)
+
+### Others
+
+- Fixed the issue where audit logs might be lost in certain scenarios.
[#50357](https://github.com/apache/doris/pull/50357)
+- Fixed the issue where the isQuery flag in audit logs might be incorrect.
[#49959](https://github.com/apache/doris/pull/49959)
+- Fixed the issue where some query sqlHash values in audit logs were
incorrect. [#49984](https://github.com/apache/doris/pull/49984)
\ No newline at end of file
diff --git a/versioned_docs/version-3.0/releasenotes/all-release.md
b/versioned_docs/version-3.0/releasenotes/all-release.md
index 7f0d919f34e..1a24eb6cd78 100644
--- a/versioned_docs/version-3.0/releasenotes/all-release.md
+++ b/versioned_docs/version-3.0/releasenotes/all-release.md
@@ -32,13 +32,15 @@ This document presents a summary of Apache Doris versions
released within one ye
<br />
-🎉 Version 2.1.9 released now. Check out the 🔗[Release
Notes](../releasenotes/v2.1/release-2.1.9) here. The 2.1 version delivers
exceptional performance with 100% higher out-of-the-box queries proven by
TPC-DS 1TB tests, enhanced data lake analytics that are 4-6 times speedier than
Trino and Spark, solid support for semi-structured data analysis with new
Variant types and suite of analytical functions, asynchronous materialized
views for query acceleration, optimized real-time writing at [...]
+🎉 Version 2.1.10 released now. Check out the 🔗[Release
Notes](../releasenotes/v2.1/release-2.1.10) here. The 2.1 version delivers
exceptional performance with 100% higher out-of-the-box queries proven by
TPC-DS 1TB tests, enhanced data lake analytics that are 4-6 times speedier than
Trino and Spark, solid support for semi-structured data analysis with new
Variant types and suite of analytical functions, asynchronous materialized
views for query acceleration, optimized real-time writing a [...]
:::
<br />
+- [2025-05-17, Apache Doris 2.1.10 is
released](../releasenotes/v2.1/release-2.1.10.md)
+
- [2025-04-28, Apache Doris 3.0.5 is
released](../releasenotes/v3.0/release-3.0.5.md)
- [2025-04-02, Apache Doris 2.1.9 is
released](../releasenotes/v2.1/release-2.1.9.md)
diff --git a/versioned_docs/version-3.0/releasenotes/v2.1/release-2.1.10.md
b/versioned_docs/version-3.0/releasenotes/v2.1/release-2.1.10.md
new file mode 100644
index 00000000000..796edd546fb
--- /dev/null
+++ b/versioned_docs/version-3.0/releasenotes/v2.1/release-2.1.10.md
@@ -0,0 +1,136 @@
+---
+{
+ "title": "Release 2.1.10",
+ "language": "en"
+}
+---
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+## Behavior Changes
+
+- DELETE no longer incorrectly requires the SELECT_PRIV permission on the
target table. [ #49794](https://github.com/apache/doris/pull/49794)
+- Insert Overwrite no longer restricts concurrent operations on the same table
to 1. [ #48673](https://github.com/apache/doris/pull/48673)
+- Merge on write unique tables prohibit the use of time-series compaction. [
#49905](https://github.com/apache/doris/pull/49905)
+- Building indexes on VARIANT type columns is prohibited. [
#49159](https://github.com/apache/doris/pull/49159)
+
+## New Features
+
+### Query Execution Engine
+
+- Added support for more GEO type computation functions: `ST_CONTAINS`,
`ST_INTERSECTS`, `ST_TOUCHES`, `GeometryFromText`, `ST_Intersects`,
`ST_Disjoint`, `ST_Touches`. [
#49665](https://github.com/apache/doris/pull/49665) [
#48695](https://github.com/apache/doris/pull/48695)
+- Added support for the `years_of_week` function. [
#48870](https://github.com/apache/doris/pull/48870)
+
+### Lakehouse
+
+- Hive Catalog now supports catalog-level partition cache control. [
#50724](https://github.com/apache/doris/pull/50724)
+ - For more details, refer to the[
](https://doris.apache.org/docs/dev/lakehouse/meta-cache)[documentation](https://doris.apache.org/docs/dev/lakehouse/meta-cache#disable-hive-catalog-metadata-cache).
+
+## Improvements
+
+### Lakehouse
+
+- Upgraded the Paimon dependency version to 1.0.1.
+- Upgraded the Iceberg dependency version to 1.6.1.
+- Included the memory overhead of Parquet Footer in the Memory Tracker to
avoid potential OOM issues. [
#49037](https://github.com/apache/doris/pull/49037)
+- Optimized the predicate pushdown logic for JDBC Catalog, supporting pushdown
of AND/OR connected predicates. [
#50542](https://github.com/apache/doris/pull/50542)
+- Precompiled versions now include the Jindofs extension package by default to
support Alibaba Cloud oss-hdfs access.
+
+### Semi-Structured Data Management
+
+- ANY function now supports JSON type. [
#50311](https://github.com/apache/doris/pull/50311)
+- JSON_REPLACE, JSON_INSERT, JSON_SET, JSON_ARRAY functions now support JSON
data type and complex data types. [
#50308](https://github.com/apache/doris/pull/50308)
+
+### Query Optimizer
+
+- When the number of options in an IN expression exceeds
`Config.max_distribution_pruner_recursion_depth`, bucket pruning is not
performed to improve planning speed. [
#49387](https://github.com/apache/doris/pull/49387)
+
+### Storage Management
+
+- Reduced logging and improved some log messages. [
#47647](https://github.com/apache/doris/pull/47647) [
#48523](https://github.com/apache/doris/pull/48523)
+
+### Other
+
+- Avoided the thrift rpc END_OF_FILE exception. [
#49649](https://github.com/apache/doris/pull/49649)
+
+## Bug Fixes
+
+### Lakehouse
+
+- Fixed the issue where newly created tables in Hive were not immediately
visible in Doris. [ #50188](https://github.com/apache/doris/pull/50188)
+- Fixed the error "Storage schema reading not supported" when accessing
certain Text format Hive tables. [
#50038](https://github.com/apache/doris/pull/50038)
+ - Refer to the[ get_schema_from_table
documentation](https://doris.apache.org/docs/dev/lakehouse/catalogs/hive-catalog?_highlight=get_schema_from_table#syntax)
for details.
+- Fixed concurrency issues with metadata submission when writing to
Hive/Iceberg tables. [ #49842](https://github.com/apache/doris/pull/49842)
+- Fixed the issue where writing to Hive tables stored on oss-hdfs failed. [
#49754](https://github.com/apache/doris/pull/49754)
+- Fixed the issue where accessing Hive tables with partition key values
containing commas failed. [ #49382](https://github.com/apache/doris/pull/49382)
+- Fixed the issue where Split allocation for Paimon tables was uneven in
certain cases. [ #50083](https://github.com/apache/doris/pull/50083)
+- Fixed the issue where Delete files were not correctly handled when reading
Paimon tables stored on oss. [
#49645](https://github.com/apache/doris/pull/49645)
+- Fixed the issue where reading high-precision Timestamp columns in MaxCompute
Catalog failed. [ #49600](https://github.com/apache/doris/pull/49600)
+- Fixed the potential resource leakage when deleting a Catalog in certain
cases. [ #49621](https://github.com/apache/doris/pull/49621)
+- Fixed the issue where reading LZO compressed data failed in certain cases. [
#49538](https://github.com/apache/doris/pull/49538)
+- Fixed the issue where ORC deferred materialization caused errors when
reading complex types. [ #50136](https://github.com/apache/doris/pull/50136)
+- Fixed the issue where reading ORC files generated by pyorc-0.3 version
failed. [ #50358](https://github.com/apache/doris/pull/50358)
+- Fixed the issue where EXPORT operations caused metadata deadlocks. [
#50088](https://github.com/apache/doris/pull/50088)
+
+### Indexing
+
+- Fixed errors in building inverted indexes after multiple add, delete, and
rename column operations. [ #50056](https://github.com/apache/doris/pull/50056)
+- Added validation for unique column IDs in index compaction to avoid
potential data anomalies and system errors. [
#47562](https://github.com/apache/doris/pull/47562)
+
+### Semi-Structured Data Types
+
+- Fixed the issue where converting VARIANT type to JSON type returned NULL in
certain cases. [ #50180](https://github.com/apache/doris/pull/50180)
+- Fixed the crash caused by JSONB CAST in certain cases. [
#49810](https://github.com/apache/doris/pull/49810)
+- Prohibited building indexes on VARIANT type columns. [
#49159](https://github.com/apache/doris/pull/49159)
+- Fixed the precision correctness of decimal type in the named_struct
function. [ #48964](https://github.com/apache/doris/pull/48964)
+
+### Query Optimizer
+
+- Fixed several issues in constant folding.
[#49413](https://github.com/apache/doris/pull/49413)
[#50425](https://github.com/apache/doris/pull/50425)
[#49686](https://github.com/apache/doris/pull/49686)
[#49575](https://github.com/apache/doris/pull/49575)
[#50142](https://github.com/apache/doris/pull/50142)
+- Common subexpression extraction may not work properly on lambda expressions.
[#49166](https://github.com/apache/doris/pull/49166)
+- Fixed the issue where eliminating constants in group by keys might not work
properly. [#49589](https://github.com/apache/doris/pull/49589)
+- Fixed the issue where planning failed in extreme scenarios due to incorrect
statistics inference. [#49415](https://github.com/apache/doris/pull/49415)
+- Fixed the issue where some information_schema tables depending on BE
metadata could not retrieve complete data.
[#50721](https://github.com/apache/doris/pull/50721)
+
+### Query Execution Engine
+
+- Fixed the issue where the explode_json_array_json_outer function was not
found. [#50164](https://github.com/apache/doris/pull/50164)
+- Fixed the issue where substring_index did not support dynamic parameters.
[#50149](https://github.com/apache/doris/pull/50149)
+- Fixed the issue where the st_contains function returned incorrect results in
many cases. [#50115](https://github.com/apache/doris/pull/50115)
+- Fixed the core dump issue that could be caused by the array_range function.
[#49993](https://github.com/apache/doris/pull/49993)
+- Fixed the issue where the date_diff function returned incorrect results.
[#49429](https://github.com/apache/doris/pull/49429)
+- Fixed a series of issues with string functions causing garbled output or
incorrect results in non-ASCII encodings.
[#49231](https://github.com/apache/doris/pull/49231)
[#49846](https://github.com/apache/doris/pull/49846)
[#49127](https://github.com/apache/doris/pull/49127)
[#40710](https://github.com/apache/doris/pull/40710)
+
+### Storage Management
+
+- Fixed the issue where metadata replay for dynamic partition tables failed in
certain cases. [#49569](https://github.com/apache/doris/pull/49569)
+- Fixed the issue where streamload on ARM might lose data due to operation
sequence. [#48948](https://github.com/apache/doris/pull/48948)
+- Fixed the error in full compaction and the potential issue of mow data
duplication. [#49825](https://github.com/apache/doris/pull/49825)
[#48958](https://github.com/apache/doris/pull/48958)
+- Fixed the issue where partition storage policy was not persisted.
[#49721](https://github.com/apache/doris/pull/49721)
+- Fixed the extremely rare issue where imported files did not exist.
[#50343](https://github.com/apache/doris/pull/50343)
+- Fixed the issue where ccr and disk balancing concurrency might cause files
to go missing. [#50663](https://github.com/apache/doris/pull/50663)
+- Fixed the connection reset issue that might occur during backup and restore
of large snapshots. [#49649](https://github.com/apache/doris/pull/49649)
+- Fixed the issue where FE follower lost local backup snapshots.
[#49550](https://github.com/apache/doris/pull/49550)
+
+### Others
+
+- Fixed the issue where audit logs might be lost in certain scenarios.
[#50357](https://github.com/apache/doris/pull/50357)
+- Fixed the issue where the isQuery flag in audit logs might be incorrect.
[#49959](https://github.com/apache/doris/pull/49959)
+- Fixed the issue where some query sqlHash values in audit logs were
incorrect. [#49984](https://github.com/apache/doris/pull/49984)
\ No newline at end of file
diff --git a/versioned_sidebars/version-2.0-sidebars.json
b/versioned_sidebars/version-2.0-sidebars.json
index cdd13307d4b..32d37d09587 100644
--- a/versioned_sidebars/version-2.0-sidebars.json
+++ b/versioned_sidebars/version-2.0-sidebars.json
@@ -1489,6 +1489,7 @@
"type": "category",
"label": "v2.1",
"items": [
+ "releasenotes/v2.1/release-2.1.10",
"releasenotes/v2.1/release-2.1.9",
"releasenotes/v2.1/release-2.1.8",
"releasenotes/v2.1/release-2.1.7",
diff --git a/versioned_sidebars/version-2.1-sidebars.json
b/versioned_sidebars/version-2.1-sidebars.json
index 20b5263e48e..174f05e37b7 100644
--- a/versioned_sidebars/version-2.1-sidebars.json
+++ b/versioned_sidebars/version-2.1-sidebars.json
@@ -2085,6 +2085,7 @@
"type": "category",
"label": "v2.1",
"items": [
+ "releasenotes/v2.1/release-2.1.10",
"releasenotes/v2.1/release-2.1.9",
"releasenotes/v2.1/release-2.1.8",
"releasenotes/v2.1/release-2.1.7",
@@ -2149,4 +2150,4 @@
]
}
]
-}
+}
\ No newline at end of file
diff --git a/versioned_sidebars/version-3.0-sidebars.json
b/versioned_sidebars/version-3.0-sidebars.json
index 7c16992048a..8b78be2aad6 100644
--- a/versioned_sidebars/version-3.0-sidebars.json
+++ b/versioned_sidebars/version-3.0-sidebars.json
@@ -2176,6 +2176,7 @@
"type": "category",
"label": "v2.1",
"items": [
+ "releasenotes/v2.1/release-2.1.10",
"releasenotes/v2.1/release-2.1.9",
"releasenotes/v2.1/release-2.1.8",
"releasenotes/v2.1/release-2.1.7",
@@ -2240,4 +2241,4 @@
]
}
]
-}
+}
\ No newline at end of file
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]