diff --git a/src/current/_includes/releases/v24.1/v24.1.5.md b/src/current/_includes/releases/v24.1/v24.1.5.md index 1ae919ab483..26ff1c504e8 100644 --- a/src/current/_includes/releases/v24.1/v24.1.5.md +++ b/src/current/_includes/releases/v24.1/v24.1.5.md @@ -55,6 +55,7 @@ Release Date: September 25, 2024 - Fixed a bug where the [`require_explicit_primary_keys` session variable]({% link v24.1/session-variables.md %}#require-explicit-primary-keys) would aggressively prevent all [`CREATE TABLE`]({% link v24.1/create-table.md %}) statements from working. [#129907][#129907] - Fixed a slow-building memory leak when using [Kerberos authentication]({% link v24.1/gssapi_authentication.md %}). [#130318][#130318] - Fixed a potential memory leak in [changefeeds]({% link v24.1/change-data-capture-overview.md %}) using a [cloud storage sink]({% link v24.1/changefeed-sinks.md %}#cloud-storage-sink). The memory leak could occur if both the cluster settings [`changefeed.fast_gzip.enabled`]({% link v24.1/cluster-settings.md %}#setting-changefeed-fast-gzip-enabled) and [`changefeed.cloudstorage.async_flush.enabled`]({% link v24.1/cluster-settings.md %}) are set to `true` and the changefeed received an error while attempting to write to the cloud storage sink. [#130626][#130626] +- Fixed a bug that prevented buffered file sinks from being included when iterating over all file sinks. This led to problems such as the `debug zip` command not being able to fetch logs for a cluster where buffering was enabled. [#130158][#130158] [#122636]: https://github.com/cockroachdb/cockroach/pull/122636 [#128085]: https://github.com/cockroachdb/cockroach/pull/128085 @@ -80,6 +81,7 @@ Release Date: September 25, 2024 [#130046]: https://github.com/cockroachdb/cockroach/pull/130046 [#130050]: https://github.com/cockroachdb/cockroach/pull/130050 [#130051]: https://github.com/cockroachdb/cockroach/pull/130051 +[#130158]: https://github.com/cockroachdb/cockroach/pull/130158 [#130318]: https://github.com/cockroachdb/cockroach/pull/130318 [#130510]: https://github.com/cockroachdb/cockroach/pull/130510 [#130584]: https://github.com/cockroachdb/cockroach/pull/130584 diff --git a/src/current/_includes/releases/v24.2/v24.2.3.md b/src/current/_includes/releases/v24.2/v24.2.3.md index ab562491df3..391b4957018 100644 --- a/src/current/_includes/releases/v24.2/v24.2.3.md +++ b/src/current/_includes/releases/v24.2/v24.2.3.md @@ -45,6 +45,7 @@ Release Date: September 25, 2024 - Fixed a slow-building memory leak that could occur when using [Kerberos authentication]({% link v24.2/gssapi_authentication.md %}). [#130319][#130319] - Fixed a bug that could result in the inability to garbage collect an [MVCC]({% link v24.2/architecture/storage-layer.md %}#mvcc) range tombstone within a [global table]({% link v24.2/table-localities.md %}#global-tables). [#130951][#130951] - Fixed a potential memory leak in changefeeds using a [cloud storage sink]({% link v24.2/changefeed-sinks.md %}#cloud-storage-sink). The memory leak could occur if both [`changefeed.fast_gzip.enabled`]({% link v24.2/cluster-virtualization-setting-scopes.md %}) and `changefeed.cloudstorage.async_flush.enabled` are true and the changefeed received an error while attempting to write to the cloud storage sink. [#130625][#130625] +- Fixed a bug that prevented buffered file sinks from being included when iterating over all file sinks. This led to problems such as the `debug zip` command not being able to fetch logs for a cluster where buffering was enabled. [#130158][#130158]
@@ -74,6 +75,7 @@ This release includes 94 merged PRs by 38 authors. [#129809]: https://github.com/cockroachdb/cockroach/pull/129809 [#129895]: https://github.com/cockroachdb/cockroach/pull/129895 [#129908]: https://github.com/cockroachdb/cockroach/pull/129908 +[#130158]: https://github.com/cockroachdb/cockroach/pull/130158 [#130319]: https://github.com/cockroachdb/cockroach/pull/130319 [#130511]: https://github.com/cockroachdb/cockroach/pull/130511 [#130582]: https://github.com/cockroachdb/cockroach/pull/130582 diff --git a/src/current/_includes/releases/v24.3/v24.3.0-alpha.1.md b/src/current/_includes/releases/v24.3/v24.3.0-alpha.1.md index 547e49fa121..3e17aa16d03 100644 --- a/src/current/_includes/releases/v24.3/v24.3.0-alpha.1.md +++ b/src/current/_includes/releases/v24.3/v24.3.0-alpha.1.md @@ -209,6 +209,7 @@ Release Date: October 9, 2024 - Fixed a bug where [jobs]({% link v24.3/show-jobs.md %}) created in a session with non-zero session [timezone offsets]({% link v24.3/set-vars.md %}#set-time-zone) could hang before starting, or report incorrect creation times when viewed in [`SHOW JOBS`]({% link v24.3/show-jobs.md %}) and the [DB Console]({% link v24.3/ui-overview.md %}). [#123632][#123632] - Fixed a bug which could result in [changefeeds using CDC queries]({% link v24.3/create-schedule-for-changefeed.md %}#create-a-scheduled-changefeed-with-cdc-queries) failing due to a system table being [garbage collected]({% link v24.3/architecture/storage-layer.md %}#garbage-collection). [#131027][#131027] - [`ALTER COLUMN TYPE`]({% link v24.3/alter-table.md %}#convert-to-a-different-data-type) now errors out when there is a [partial index]({% link v24.3/partial-indexes.md %}) that is dependent on the column being altered. [#131590][#131590] +- Fixed a bug that prevented buffered file sinks from being included when iterating over all file sinks. This led to problems such as the `debug zip` command not being able to fetch logs for a cluster where buffering was enabled. [#130158][#130158]

Performance improvements

@@ -292,6 +293,7 @@ Release Date: October 9, 2024 [#130103]: https://github.com/cockroachdb/cockroach/pull/130103 [#130110]: https://github.com/cockroachdb/cockroach/pull/130110 [#130117]: https://github.com/cockroachdb/cockroach/pull/130117 +[#130158]: https://github.com/cockroachdb/cockroach/pull/130158 [#130164]: https://github.com/cockroachdb/cockroach/pull/130164 [#130167]: https://github.com/cockroachdb/cockroach/pull/130167 [#130198]: https://github.com/cockroachdb/cockroach/pull/130198