Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions src/current/_data/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9880,3 +9880,38 @@
cloud_only_message: >
This version is currently available only for
CockroachDB Cloud clusters on the Advanced plan.


- release_name: v25.3.5
major_version: v25.3
release_date: '2025-11-14'
release_type: Production
go_version: go1.25.3
sha: adc4b2ff64df47187d363c76db80a5ed4200aa35
has_sql_only: true
has_sha256sum: true
mac:
mac_arm: true
mac_arm_experimental: true
mac_arm_limited_access: false
windows: true
linux:
linux_arm: true
linux_arm_experimental: false
linux_arm_limited_access: false
linux_intel_fips: true
linux_arm_fips: false
docker:
docker_image: cockroachdb/cockroach
docker_arm: true
docker_arm_experimental: false
docker_arm_limited_access: false
source: true
previous_release: v25.3.4
cloud_only: true
cloud_only_message_short: 'Available only for select CockroachDB Cloud clusters'
cloud_only_message: >
This version is currently available only for select
CockroachDB Cloud clusters. To request to upgrade
a CockroachDB self-hosted cluster to this version,
[contact support](https://support.cockroachlabs.com/hc/requests/new).
2 changes: 1 addition & 1 deletion src/current/_data/versions.csv
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ v24.3,2024-11-18,2025-11-18,2026-05-18,24.3.11,24.3.12,2025-05-05,2026-05-05,202
v25.1,2025-02-18,2025-08-18,N/A,N/A,N/A,N/A,N/A,N/A,v24.3,release-25.1,2029-02-18
v25.2,2025-05-09,2026-05-12,2026-11-12,N/A,N/A,N/A,N/A,N/A,v25.1,release-25.2,2029-05-09
v25.3,2025-08-04,2026-02-04,N/A,N/A,N/A,N/A,N/A,N/A,v25.2,release-25.3,2029-08-04
v25.4,2025-11-03,2026-11-03,2027-05-03,N/A,N/A,N/A,N/A,N/A,v25.3,release-25.4,2029-11-03
v25.4,2025-11-03,2026-11-03,2027-05-03,N/A,N/A,N/A,N/A,N/A,v25.3,release-25.4,2029-11-03
39 changes: 39 additions & 0 deletions src/current/_includes/releases/v25.3/v25.3.5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
## v25.3.5

Release Date: November 14, 2025

{% include releases/new-release-downloads-docker-image.md release=include.release %}

<h3 id="v25-3-5-sql-language-changes">SQL language changes</h3>

- Added sql.statements.bytes_read.count metric that
counts the number of bytes scanned by SQL statements. [#156592][#156592]
- Added sql.statements.index_rows_written.count metric
that counts the number of primary and secondary index rows modified by SQL
statements. [#156592][#156592]
- Added sql.statements.rows_read.count metric
that counts the number of index rows read by SQL statements. [#156592][#156592]
- Added sql.statements.index_bytes_written.count metric
that counts the number of primary and secondary index bytes modified by SQL
statements. [#156592][#156592]

<h3 id="v25-3-5-bug-fixes">Bug fixes</h3>

- Fixes a bug where the job responsible for
compacting stats for the SQL activity state could enter an unschedulable
state.
Fixes: #155165 [#155964][#155964]
- Previously, CockroachDB didn't include reads and
writes performed by routines (user-defined functions and stored
procedures) as well as apply joins into `bytes read`, `rows read`, and
`rows written` statement execution statistics, and this is now fixed.
The bug has been present since before 23.2 version. [#156501][#156501]
- A bug where changefeeds using CDC
queries could sometimes unexpectedly fail after a schema
change with a descriptor retrieval error has been fixed. [#156551][#156551]


[#156592]: https://github.com/cockroachdb/cockroach/pull/156592
[#155964]: https://github.com/cockroachdb/cockroach/pull/155964
[#156501]: https://github.com/cockroachdb/cockroach/pull/156501
[#156551]: https://github.com/cockroachdb/cockroach/pull/156551
Loading