-
Notifications
You must be signed in to change notification settings - Fork 465
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
5 changed files
with
76 additions
and
7 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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
{ | ||
"title": "Latest v20.1", | ||
"urls": [ | ||
"/releases/v20.1.6.html" | ||
"/releases/v20.1.7.html" | ||
] | ||
}, | ||
{ | ||
|
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,67 @@ | ||
--- | ||
title: What's New in v20.1.7 | ||
toc: true | ||
summary: Additions and changes in CockroachDB version v20.1.7 since version v20.1.6 | ||
--- | ||
|
||
## October 12, 2020 | ||
|
||
Get future release notes emailed to you: | ||
|
||
<div class="hubspot-install-form install-form-1 clearfix"> | ||
<script> | ||
hbspt.forms.create({ | ||
css: '', | ||
cssClass: 'install-form', | ||
portalId: '1753393', | ||
formId: '39686297-81d2-45e7-a73f-55a596a8d5ff', | ||
formInstanceId: 1, | ||
target: '.install-form-1' | ||
}); | ||
</script> | ||
</div> | ||
|
||
### Downloads | ||
|
||
<div id="os-tabs" class="clearfix"> | ||
<a href="https://binaries.cockroachdb.com/cockroach-v20.1.7.darwin-10.9-amd64.tgz"><button id="mac" data-eventcategory="mac-binary-release-notes">Mac</button></a> | ||
<a href="https://binaries.cockroachdb.com/cockroach-v20.1.7.linux-amd64.tgz"><button id="linux" data-eventcategory="linux-binary-release-notes">Linux</button></a> | ||
<a href="https://binaries.cockroachdb.com/cockroach-v20.1.7.windows-6.2-amd64.zip"><button id="windows" data-eventcategory="windows-binary-release-notes">Windows</button></a> | ||
<a href="https://binaries.cockroachdb.com/cockroach-v20.1.7.src.tgz"><button id="source" data-eventcategory="source-release-notes">Source</button></a> | ||
</div> | ||
|
||
### Docker image | ||
|
||
{% include copy-clipboard.html %} | ||
~~~shell | ||
$ docker pull cockroachdb/cockroach-stable:v20.1.7 | ||
~~~ | ||
|
||
### Security updates | ||
|
||
- Fixed a case where connections to Google Cloud storage would ignore the [`--external-io-disable-implicit-credentials`](../v20.1/cockroach-start.html#external-io-disable-implicit-credentials) flag to `cockroach start`. [#55091][#55091] | ||
|
||
### General changes | ||
|
||
- Reduced the memory overhead of rangefeeds (i.e., long-lived requests) which reduces the memory overhead for running [`CHANGEFEED`](https://www.cockroachlabs.com/docs/v20.2/stream-data-out-of-cockroachdb-using-changefeeds.html)s over large tables. [#54632][#54632] | ||
|
||
### Bug fixes | ||
|
||
- Fixed a bug where columns used in an [index](../v20.1/indexes.html) which contained the columns of a [foreign key](../v20.1/foreign-key.html) as a prefix could lead to all of the index columns being set to _NULL_ or the default value on cascade. [#54543][#54543] | ||
- Fixed a bug causing servers to crash with the message "committed txn with writeTooOld". Versions below 20.1.4 are susceptible to this bug. Versions 20.1.4+ will not crash, but instead print messages to the log files. [#54282][#54282] | ||
- Fixed a rare bug which can lead to index backfills failing in the face of [transaction restarts](../v20.1/transactions.html#transaction-retries). [#54859][#54859] | ||
- Fixed a race condition propagating post-query metadata in the [vectorized execution engine](../v20.1/vectorized-execution.html). [#55168][#55168] | ||
- Fixed a bug causing 20.1 nodes to not be able to serve [follower reads](../v20.1/follower-reads.html) in mixed-version 19.2/20.1 clusters. [#55089][#55089] | ||
- The first timing column in the trace.txt file collected as part of a [statement diagnostics bundle](../v20.1/explain-analyze.html#debug-option) has been fixed. | ||
|
||
### Contributors | ||
|
||
This release includes 19 merged PRs by 8 authors. | ||
|
||
[#54282]: https://github.com/cockroachdb/cockroach/pull/54282 | ||
[#54543]: https://github.com/cockroachdb/cockroach/pull/54543 | ||
[#54632]: https://github.com/cockroachdb/cockroach/pull/54632 | ||
[#54859]: https://github.com/cockroachdb/cockroach/pull/54859 | ||
[#55089]: https://github.com/cockroachdb/cockroach/pull/55089 | ||
[#55091]: https://github.com/cockroachdb/cockroach/pull/55091 | ||
[#55168]: https://github.com/cockroachdb/cockroach/pull/55168 |
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