Skip to content

Commit db793ad

Browse files
release-notes-automation[bot]Automated Release Botflorence-crl
authored
Release Notes for v25.2-v25.2.0-beta.2 (#19531)
* Update release notes for v25.2-v25.2.0-beta.2 * Update versions.csv * In ui-overview.md, removed link to v25.2 cluster setting. --------- Co-authored-by: Automated Release Bot <[email protected]> Co-authored-by: Florence Morris <[email protected]> Co-authored-by: Florence Morris <[email protected]>
1 parent 566d393 commit db793ad

File tree

4 files changed

+73
-2
lines changed

4 files changed

+73
-2
lines changed

src/current/_data/releases.yml

+28
Original file line numberDiff line numberDiff line change
@@ -8785,3 +8785,31 @@
87858785
docker_arm_limited_access: false
87868786
source: true
87878787
previous_release: v25.2.0-alpha.3
8788+
8789+
8790+
- release_name: v25.2.0-beta.2
8791+
major_version: v25.2
8792+
release_date: '2025-04-23'
8793+
release_type: Testing
8794+
go_version: go1.23.7
8795+
sha: fb81a5da71d404ce672fbaf3bea2b25b5d44fc80
8796+
has_sql_only: true
8797+
has_sha256sum: true
8798+
mac:
8799+
mac_arm: true
8800+
mac_arm_experimental: true
8801+
mac_arm_limited_access: false
8802+
windows: true
8803+
linux:
8804+
linux_arm: true
8805+
linux_arm_experimental: false
8806+
linux_arm_limited_access: false
8807+
linux_intel_fips: true
8808+
linux_arm_fips: false
8809+
docker:
8810+
docker_image: cockroachdb/cockroach-unstable
8811+
docker_arm: true
8812+
docker_arm_experimental: false
8813+
docker_arm_limited_access: false
8814+
source: true
8815+
previous_release: v25.2.0-beta.1

src/current/_data/versions.csv

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ v24.1,2024-05-20,2025-05-20,2025-11-20,24.1.5,24.1.6,2024-10-21,2025-10-21,2026-
1717
v24.2,2024-08-12,2025-02-12,N/A,N/A,N/A,N/A,N/A,N/A,v24.1,release-24.2,2028-08-12
1818
v24.3,2024-11-18,2025-11-18,2026-05-18,N/A,N/A,N/A,N/A,N/A,v24.2,release-24.3,N/A
1919
v25.1,2025-02-18,2026-08-18,N/A,N/A,N/A,N/A,N/A,N/A,v24.3,release-25.1,N/A
20-
v25.2,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,v25.1,master,N/A
20+
v25.2,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,v25.1,release-25.1,N/A
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
## v25.2.0-beta.2
2+
3+
Release Date: April 23, 2025
4+
5+
{% include releases/new-release-downloads-docker-image.md release=include.release %}
6+
7+
<h3 id="v25-2-0-beta-2-sql-language-changes">SQL language changes</h3>
8+
9+
- Added the `jsonb_path_match` function, which returns the result of a predicate query.
10+
[#144271][#144271]
11+
- The `.type()` method is now supported in JSONPath queries. For example, `SELECT jsonb_path_query('[1, 2, 3]', '$.type()');`.
12+
[#144405][#144405]
13+
- Removed the `ST_3DLength` function.
14+
[#144549][#144549]
15+
- Added the `jsonb_path_query_first` function, which returns the first result from `jsonb_path_query`.
16+
[#144271][#144271]
17+
- Parenthesized expressions are now supported in JSONPath queries. For example, `SELECT jsonb_path_query('{"a": {"b": true}}', '($.a).b');`
18+
[#144298][#144298]
19+
- The `.size()` method is now supported in JSONPath expressions. For example, `SELECT jsonb_path_query('[1, 2, 3]', '$.size()');`.
20+
[#144405][#144405]
21+
- Added the `jsonb_path_query_array` function, which returns the result of `jsonb_path_query` wrapped in a JSON array.
22+
[#144271][#144271]
23+
24+
<h3 id="v25-2-0-beta-2-operational-changes">Operational changes</h3>
25+
26+
- Logical data replication (LDR) now supports partial indexes by default.
27+
[#144513][#144513]
28+
29+
<h3 id="v25-2-0-beta-2-miscellaneous">Miscellaneous</h3>
30+
31+
- Fixed a rare corruption bug that could affect `IMPORT`, physical cluster replication (PCR), `CREATE TABLE AS` (CTAS), and materialized view refreshes.
32+
[#144663][#144663]
33+
- Vector indexes created in v25.2.0-beta.1 are not compatible with later releases. Drop and re-create these indexes before using them with later releases.
34+
[#144581][#144581]
35+
36+
37+
[#144581]: https://github.com/cockroachdb/cockroach/pull/144581
38+
[#144271]: https://github.com/cockroachdb/cockroach/pull/144271
39+
[#144405]: https://github.com/cockroachdb/cockroach/pull/144405
40+
[#144549]: https://github.com/cockroachdb/cockroach/pull/144549
41+
[#144298]: https://github.com/cockroachdb/cockroach/pull/144298
42+
[#144513]: https://github.com/cockroachdb/cockroach/pull/144513
43+
[#144663]: https://github.com/cockroachdb/cockroach/pull/144663

src/current/v25.2/ui-overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ DB Console area | System-level privilege | Privileged information
131131

132132
## DB Console timezone configuration
133133

134-
To view timestamps in your preferred timezone in the DB Console, use the [`ui.default_timezone` cluster setting]({% link {{ page.version.version }}/cluster-settings.md %}#setting-ui-default-timezone). This setting supports all valid timezone identifiers, such as `America/New_York` and `Asia/Tokyo`.
134+
To view timestamps in your preferred timezone in the DB Console, use the `ui.default_timezone` cluster setting. This setting supports all valid timezone identifiers, such as `America/New_York` and `Asia/Tokyo`.
135135

136136
{% include_cached copy-clipboard.html %}
137137
~~~sql

0 commit comments

Comments
 (0)