Skip to content

Commit 30d0f59

Browse files
release-notes-automation[bot]Automated Release Botrmloveland
authored
Release Notes for v25.4-v25.4.0-beta.2 (#20519)
* Update release notes for v25.4-v25.4.0-beta.2 Co-authored-by: Automated Release Bot <releasebot@cockroachlabs.com> Co-authored-by: Rich Loveland <rich@cockroachlabs.com>
1 parent 7d48082 commit 30d0f59

File tree

2 files changed

+93
-0
lines changed

2 files changed

+93
-0
lines changed

src/current/_data/releases.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9561,3 +9561,31 @@
95619561
docker_arm_limited_access: false
95629562
source: true
95639563
previous_release: v25.4.0-alpha.2
9564+
9565+
9566+
- release_name: v25.4.0-beta.2
9567+
major_version: v25.4
9568+
release_date: '2025-10-10'
9569+
release_type: Testing
9570+
go_version: go1.23.12
9571+
sha: c9fbbfff437b9283883a269402038f5952cc4863
9572+
has_sql_only: true
9573+
has_sha256sum: true
9574+
mac:
9575+
mac_arm: true
9576+
mac_arm_experimental: true
9577+
mac_arm_limited_access: false
9578+
windows: true
9579+
linux:
9580+
linux_arm: true
9581+
linux_arm_experimental: false
9582+
linux_arm_limited_access: false
9583+
linux_intel_fips: true
9584+
linux_arm_fips: false
9585+
docker:
9586+
docker_image: cockroachdb/cockroach-unstable
9587+
docker_arm: true
9588+
docker_arm_experimental: false
9589+
docker_arm_limited_access: false
9590+
source: true
9591+
previous_release: v25.4.0-beta.1
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
## v25.4.0-beta.2
2+
3+
Release Date: October 10, 2025
4+
5+
{% include releases/new-release-downloads-docker-image.md release=include.release %}
6+
7+
<h3 id="v25-4-0-beta-2-general-changes">General changes</h3>
8+
9+
- The changefeed bulk
10+
delivery setting was made optional. [#154953][#154953]
11+
12+
<h3 id="v25-4-0-beta-2-sql-language-changes">SQL language changes</h3>
13+
14+
- Added the `SHOW INSPECT ERRORS` command. This command can be used to view issues that are identified by running the `INSPECT` command to validate tables and indexes. [#154337][#154337]
15+
- Added the `sql.catalog.allow_leased_descriptors.enabled` cluster setting, which is false by default. When set to true, queries that access the `pg_catalog` or `information_schema` can use cached leased descriptors to populate the data in those tables, with the tradeoff that some of the data could be stale. [#154491][#154491]
16+
- We now support index acceleration for a subset of jsonb_path_exists filters. Given the `jsonb_path_exists(json_obj, json_path_expression)`, we only support inverted index for json_path_expression that matches one of the following patterns:
17+
- The json_path_expression must NOT be in STRICT mode.
18+
- keychain mode: $.[key|wildcard].[key|wildcard]...
19+
- For this mode, we will generate a prefix span for the inverted expression.
20+
- filter with end value mode, with equality check: $.[key|wildcard]? (@.[key|wildcard].[key|wildcard]... == [string|number|null|boolean])
21+
- For this mode, since the end value is fixed, we will generate a single value span.
22+
- Specifically, we don't support the following edge case:
23+
- $
24+
- $[*]
25+
- $.a.b.c == 12 or $.a.b.c > 12 or $.a.b.c < 12 (operation expression)
26+
- $.a.b ? (@.a > 10) (filter, with inequality check)
27+
- Note that the cases we support is to use `jsonb_path_exists` in filters, as in, when they are used in the WHERE clause. [#154631][#154631]
28+
- The optimizer can now use table statistics that merge the latest full statistic with all newer partial statistics, including those over arbitrary constraints over a single span. [#154755][#154755]
29+
30+
<h3 id="v25-4-0-beta-2-operational-changes">Operational changes</h3>
31+
32+
- Two new changefeed metrics for tracking the max skew between a changefeed's slowest and fastest span/table have been added. The metrics are gauge metrics with the names `changefeed.progress_skew.{span,table}`. [#154166][#154166]
33+
- The metrics `sql.select.started.count`, `sql.insert.started.count`, `sql.update.started.count`, and `sql.delete.started.count` are now emitted with labels under the common metric name `sql.started.count`, using a `query_type` label to distinguish each operation. [#154388][#154388]
34+
- Added the cluster setting `storage.unhealthy_write_duration` (defaults to 20s), which is used to indicate to the allocator that a store's disk is unhealthy. The cluster setting `kv.allocator.disk_unhealthy_io_overload_score` controls the overload score assigned to a store with an unhealthy disk, where a higher score results in preventing lease or replica transfers to the store, or shedding of leases by the store. The default value of that setting is 0, so the allocator behavior is unaffected. [#154459][#154459]
35+
- Added cluster setting `sql.schema.approx_max_object_count` (default: 20,000) to prevent creation of new schema objects when the limit is exceeded. The check uses cached table statistics for performance and is approximate - it may not be immediately accurate until table statistics are updated by the background statistics refreshing job. Clusters that have been running stably with a larger object count should raise the limit or disable the limit by setting the value to 0. In future releases, the default value for this setting will be raised as more CockroachDB features support larger object counts. [#154576][#154576]
36+
37+
<h3 id="v25-4-0-beta-2-bug-fixes">Bug fixes</h3>
38+
39+
- Vector index backfill will now properly track job progress in SHOW JOBS output. [#154261][#154261]
40+
- A bug has been fixed that caused panics when executing `COPY` into a table with hidden columns and expression indexes. The panic only occurred when the `expect_and_ignore_not_visible_columns_in_copy` setting was enabled. This bug has been present since `expect_and_ignore_not_visible_columns_in_copy` was introduced in v22.1.0. [#154289][#154289]
41+
- **Idle latency** on the **Transaction Details** page in the DB Console is now reported more accurately. Previously, transactions that used prepared statements (e.g., with placeholders) overcounted idle time, while those that included observer statements (common in the SQL CLI) undercounted it. [#154385][#154385]
42+
- Fixed a bug where `RESTORE` of a database with a `SECONDARY REGION` did not apply the lease preferences for that region. [#154659][#154659]
43+
- A bug where a changefeed could perform many unnecessary job progress saves during an initial scan has been fixed. [#154709][#154709]
44+
- A bug where a changefeed targeting only a subset of a table's column families could become stuck has been fixed. [#154915][#154915]
45+
46+
<h3 id="v25-4-0-beta-2-performance-improvements">Performance improvements</h3>
47+
48+
- The cost of generic query plans is now calculated based on worst-case selectivities for placeholder equalities (e.g., x = $1). This reduces the chance of suboptimal generic query plans being chosen when `plan_cache_mode=auto`. [#154899][#154899]
49+
50+
[#154337]: https://github.com/cockroachdb/cockroach/pull/154337
51+
[#154491]: https://github.com/cockroachdb/cockroach/pull/154491
52+
[#154388]: https://github.com/cockroachdb/cockroach/pull/154388
53+
[#154459]: https://github.com/cockroachdb/cockroach/pull/154459
54+
[#154385]: https://github.com/cockroachdb/cockroach/pull/154385
55+
[#154755]: https://github.com/cockroachdb/cockroach/pull/154755
56+
[#154576]: https://github.com/cockroachdb/cockroach/pull/154576
57+
[#154915]: https://github.com/cockroachdb/cockroach/pull/154915
58+
[#154631]: https://github.com/cockroachdb/cockroach/pull/154631
59+
[#154261]: https://github.com/cockroachdb/cockroach/pull/154261
60+
[#154659]: https://github.com/cockroachdb/cockroach/pull/154659
61+
[#154953]: https://github.com/cockroachdb/cockroach/pull/154953
62+
[#154166]: https://github.com/cockroachdb/cockroach/pull/154166
63+
[#154289]: https://github.com/cockroachdb/cockroach/pull/154289
64+
[#154709]: https://github.com/cockroachdb/cockroach/pull/154709
65+
[#154899]: https://github.com/cockroachdb/cockroach/pull/154899

0 commit comments

Comments
 (0)