diff --git a/src/current/_data/releases.yml b/src/current/_data/releases.yml index b0cee066f8a..0283ae10717 100644 --- a/src/current/_data/releases.yml +++ b/src/current/_data/releases.yml @@ -8036,3 +8036,31 @@ docker_arm_limited_access: false source: true previous_release: v24.3.3 + + +- release_name: v25.1.0-beta.3 + major_version: v25.1 + release_date: '2025-02-03' + release_type: Testing + go_version: go1.22.8 + sha: a53e619877e92319a0a26b9c6902751bd2024b2f + 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-unstable + docker_arm: true + docker_arm_experimental: false + docker_arm_limited_access: false + source: true + previous_release: v25.1.0-beta.2 diff --git a/src/current/_data/versions.csv b/src/current/_data/versions.csv index 45c9397872a..1290096dd9c 100644 --- a/src/current/_data/versions.csv +++ b/src/current/_data/versions.csv @@ -16,4 +16,4 @@ v23.2,2024-02-05,2025-02-05,2025-08-05,23.2.6,23.2.7,2024-07-08,2025-07-08,2026- v24.1,2024-05-20,2025-05-20,2025-11-20,24.1.5,24.1.6,2024-10-21,2025-10-21,2026-10-21,v23.2,release-24.1 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 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 -v25.1,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,v24.3,release-24.3 +v25.1,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,v24.3,release-24.3 \ No newline at end of file diff --git a/src/current/_includes/releases/v25.1/v25.1.0-beta.3.md b/src/current/_includes/releases/v25.1/v25.1.0-beta.3.md new file mode 100644 index 00000000000..53f105b3244 --- /dev/null +++ b/src/current/_includes/releases/v25.1/v25.1.0-beta.3.md @@ -0,0 +1,28 @@ +## v25.1.0-beta.3 + +Release Date: February 3, 2025 + +{% include releases/new-release-downloads-docker-image.md release=include.release %} + +

Operational changes

+ +- Reduced noise when using dynamically provisioned logging sinks. [#139644][#139644] +- Added new metrics for monitoring changefeed span-level checkpoint creation: + - `changefeed.checkpoint.create_nanos`, which measures the time it takes to create a changefeed checkpoint. + - `changefeed.checkpoint.total_bytes`, which measures the total size of a changefeed checkpoint in bytes. + - `changefeed.checkpoint.span_count`, which measures the number of spans in a changefeed checkpoint. [#139707][#139707] + +

Command-line changes

+ +- Improved the performance of the debug zip query that collects `transaction_contention_events` data, which reduces the chance of `"memory budget exceeded"` or `"query execution canceled due to statement timeout"` errors. [#139755][#139755] + +

Bug fixes

+ +- Fixed a bug where sometimes activating diagnostics for SQL activity appears unresponsive, with no state or status update upon activating. Now, the status should always reflect that diagnostics are active, or that a statement bundle is downloadable. [#139587][#139587] +- Fixed a bug where the `plan.txt` file would be incomplete whenever CockroachDB collected a statement bundle with plan-gist-based matching. The bug had been present since the introduction of plan-gist-based matching feature in v23.1, but was partially addressed in v24.2. [#139268][#139268] + +[#139268]: https://github.com/cockroachdb/cockroach/pull/139268 +[#139587]: https://github.com/cockroachdb/cockroach/pull/139587 +[#139644]: https://github.com/cockroachdb/cockroach/pull/139644 +[#139707]: https://github.com/cockroachdb/cockroach/pull/139707 +[#139755]: https://github.com/cockroachdb/cockroach/pull/139755