Skip to content
Merged
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 @@ -9717,6 +9717,41 @@
previous_release: v25.2.6
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).


- release_name: v25.3.3
major_version: v25.3
release_date: '2025-10-17'
release_type: Production
go_version: go1.23.12
sha: c9e2699f67c88aa41d354aab9ae149456a7a4b9b
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.2
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
Expand Down
35 changes: 35 additions & 0 deletions src/current/_includes/releases/v25.3/v25.3.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
## v25.3.3

Release Date: October 17, 2025

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

<h3 id="v25-3-3-operational-changes">Operational changes</h3>

- Added the cluster setting `kvadmission.use_range_tenant_id_for_non_admin.enabled`, which can be used to disable the behavior where admission control uses the range's tenant ID for non-admin requests. This behavior is disabled by default. [#153460][#153460]

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

- Fixed a bug where an `INSERT` statement could fail with a type checking error while adding a `BIT(n)` column. [#152965][#152965]
- Fixed a bug where index creation could fail due to validation errors if the schema change was retried or paused/resumed during the backfill. [#153597][#153597]
- Fixed a bug introduced in v25.1.0 that would cause a node panic if a `SIGINT` signal was sent during the execution of a `CHECK EXTERNAL CONNECTION` command. [#153602][#153602]
- Fixed a bug where `ALTER POLICY` was incorrectly dropping dependency tracking for functions, sequences, or types in policy expressions. [#153804][#153804]
- Fixed a bug introduced in v25.1 where CockroachDB nodes could crash when executing `DO` statements that referenced (possibly nonexistent) user-defined types in non-default configurations. The crash only occurred if additional logging was enabled (for example, with the `sql.log.all_statements.enabled` cluster setting). [#153913][#153913]
- Fixed a runtime error that could be hit if a new secondary index had a name collision with a primary index. [#154016][#154016]
- Fixed a bug where the `schema_locked` storage parameter was not being enforced on the `TRUNCATE` command, which could cause changefeed jobs to fail. [#154041][#154041]
- Fixed a bug that caused panics when executing `COPY` into a table with hidden columns and expression indexes. The panic only occurred when the session setting `expect_and_ignore_not_visible_columns_in_copy` was enabled. This bug was introduced with `expect_and_ignore_not_visible_columns_in_copy` in v22.1.0. [#154286][#154286]
- Disabled the `kv.lock_table.unreplicated_lock_reliability.split.enabled` feature, which could lead to a node crash. [#155414][#155414]
- Fixed a bug where the presence of duplicate temporary tables in a backup caused the restore to fail with an error containing the text `restoring table desc and namespace entries: table already exists`. [#154397][#154397]


[#153597]: https://github.com/cockroachdb/cockroach/pull/153597
[#153602]: https://github.com/cockroachdb/cockroach/pull/153602
[#153913]: https://github.com/cockroachdb/cockroach/pull/153913
[#154016]: https://github.com/cockroachdb/cockroach/pull/154016
[#155414]: https://github.com/cockroachdb/cockroach/pull/155414
[#154397]: https://github.com/cockroachdb/cockroach/pull/154397
[#153460]: https://github.com/cockroachdb/cockroach/pull/153460
[#152965]: https://github.com/cockroachdb/cockroach/pull/152965
[#153804]: https://github.com/cockroachdb/cockroach/pull/153804
[#154041]: https://github.com/cockroachdb/cockroach/pull/154041
[#154286]: https://github.com/cockroachdb/cockroach/pull/154286
Loading