-
Notifications
You must be signed in to change notification settings - Fork 459
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Release notes v23.1.7 * review feedback * Missing # from PR link refs * Correct PR number
- Loading branch information
Showing
3 changed files
with
81 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
## v23.1.7 | ||
|
||
Release Date: July 31, 2023 | ||
|
||
{% include releases/release-downloads-docker-image.md release=include.release %} | ||
|
||
|
||
<h3 id="v23-1-0-beta-2-sql-language-changes">SQL language changes</h3> | ||
|
||
- Added the `crdb_internal.reset_activity_tables` [built-in function](../v23.1/functions-and-operators.html) to allow users to reset the statistics in the `system.{statement|transaction}_activity` tables. Users require the [`admin` role](../v23.1/security-reference/authorization.html#admin-role) to use this built-in function. [#106129][#106129] | ||
- Added the `sql.telemetry.query_sampling.internal.enabled` [cluster setting](../v23.1/cluster-settings.html), which is `false` by default. If set to `true`, internal app queries will be reported to [telemetry](../v23.1/logging.html#telemetry) when query sampling to telemetry is [enabled](../v23.1/configure-logs.html). [#107182][#107182] | ||
|
||
<h3 id="v23-1-4-db-console-changes">DB Console changes</h3> | ||
|
||
- Added a timescale label to the [**Diagnostics** tab](../v23.1/ui-statements-page.html#diagnostics) of the [**Statement Details** page](../v23.1/ui-statements-page.html). The time window for the statement diagnostics is now displayed. [#107082][#107082] | ||
- Increased the timeout duration for loading the [**Hot Ranges** page](../v23.1/ui-hot-ranges-page.html) to 30 minutes. [#107497][#107497] | ||
|
||
<h3 id="v23-1-6-bug-fixes">Bug fixes</h3> | ||
|
||
- The **Regions/Nodes** column on the [**Database** and **Database Details** pages](../v23.1/ui-databases-page.html) will now render properly. This column displays for clusters with more than 1 node, but is hidden for tenants. [#105824][#105824] | ||
- Fixed a bug where the [**Job Details** page](../v23.1/ui-jobs-page.html#job-details) would flicker between the job details and a loading animation while a job is still executing. [#106153][#106153] | ||
- Fixed a bug where the [**Key Visualizer** page](../v23.1/ui-key-visualizer.html) would crash due to an invalid conversion to `int` error. [#106357][#106357] | ||
- Fixed a bug that caused an infinite re-render on the [**Key Visualizer** page](../v23.1/ui-key-visualizer.html) when a custom time period was selected. [#106430][#106430] | ||
- Fixed a bug on the **SQL Activity**, [**Statements** page](../v23.1/ui-statements-page.html) where the database filter would not return results even when statements existed for the selected database. This is now fixed so that selecting a database filter from the filters menu on the [**Statements** page](../v23.1/ui-statements-page.html) will function as expected. [#106434][#106434] | ||
- Fixed a bug where the [**Metrics** page](../v23.1/ui-overview-dashboard.html) was not updating automatically on rolling window options. [#106766][#106766] | ||
- Fixed a bug where [statement diagnostics](../v23.1/ui-statements-page.html#diagnostics) on the [**Statements** page](../v23.1/ui-statements-page.html) were not always showing. This is now fixed with statement diagnostics displaying for the correct time period. [#106766][#106766] | ||
- Fixed a bug where the **Sort** dropdown on the [**Network Latency** page](../v23.1/ui-network-latency-page.html) would not persist the selected value because a page reload was triggered. [#107213][#107213] | ||
- Fixed a bug where the index recommendation on the [**Insights** page](../v23.1/ui-insights-page.html) would use the fully qualified table name to create an index name, which would cause an error due to the invalid syntax. Indexes can now be created directly from the DB Console without encountering this error. [#107218][#107218] | ||
- Fixed a bug where [changefeeds](../v23.1/change-data-capture-overview.html) would fail when upgrading to version [v23.1.5](#v23-1-5) because the job record did not have a `clusterID` field set. [#106399][#106399] | ||
- Fixed a bug where `UPDATE`, `UPSERT`, `DELETE` statements running concurrently with [`ALTER TABLE..ADD COLUMN`](../v23.1/alter-table.html#add-column) of a virtual computed column on the same table would fail. [#107403][#107403] | ||
- Fixed a bug where [SQL statistics compaction jobs](../v23.1/show-jobs.html#show-automatic-jobs) would fail. This is now fixed by reducing the contention on the `system.statement_statistics` table. [#107573][#107573] | ||
|
||
<div class="release-note-contributors" markdown="1"> | ||
|
||
<h3 id="v23-1-7-contributors">Contributors</h3> | ||
|
||
This release includes 16 merged PRs by 11 authors. | ||
|
||
</div> | ||
|
||
[#105824]: https://github.com/cockroachdb/cockroach/pull/105824 | ||
[#105947]: https://github.com/cockroachdb/cockroach/pull/105947 | ||
[#106129]: https://github.com/cockroachdb/cockroach/pull/106129 | ||
[#106153]: https://github.com/cockroachdb/cockroach/pull/106153 | ||
[#106357]: https://github.com/cockroachdb/cockroach/pull/106357 | ||
[#106434]: https://github.com/cockroachdb/cockroach/pull/106434 | ||
[#106430]: https://github.com/cockroachdb/cockroach/pull/106430 | ||
[#106766]: https://github.com/cockroachdb/cockroach/pull/106766 | ||
[#107082]: https://github.com/cockroachdb/cockroach/pull/107082 | ||
[#107182]: https://github.com/cockroachdb/cockroach/pull/107182 | ||
[#107213]: https://github.com/cockroachdb/cockroach/pull/107213 | ||
[#107218]: https://github.com/cockroachdb/cockroach/pull/107213 | ||
[#106399]: https://github.com/cockroachdb/cockroach/pull/106399 | ||
[#107403]: https://github.com/cockroachdb/cockroach/pull/107403 | ||
[#107497]: https://github.com/cockroachdb/cockroach/pull/107497 | ||
[#107573]: https://github.com/cockroachdb/cockroach/pull/107573 |