forked from cockroachdb/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request cockroachdb#4662 from cockroachdb/v19.1.0-rc.3-rel…
…ease-notes Add release notes for v19.1.0-rc.3
- Loading branch information
Showing
3 changed files
with
68 additions
and
3 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,63 @@ | ||
--- | ||
title: What's New in v19.1.0-rc.3 | ||
toc: true | ||
summary: Additions and changes in CockroachDB version v19.1.0-rc.3 since version v19.1.0-rc.2 | ||
--- | ||
|
||
## April 14, 2019 | ||
|
||
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-v19.1.0-rc.3.darwin-10.9-amd64.tgz"><button id="mac" data-eventcategory="mac-binary-release-notes">Mac</button></a> | ||
<a href="https://binaries.cockroachdb.com/cockroach-v19.1.0-rc.3.linux-amd64.tgz"><button id="linux" data-eventcategory="linux-binary-release-notes">Linux</button></a> | ||
<a href="https://binaries.cockroachdb.com/cockroach-v19.1.0-rc.3.windows-6.2-amd64.zip"><button id="windows" data-eventcategory="windows-binary-release-notes">Windows</button></a> | ||
<a href="https://binaries.cockroachdb.com/cockroach-v19.1.0-rc.3.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-unstable:v19.1.0-rc.3 | ||
~~~ | ||
|
||
### Bug fixes | ||
|
||
- Fixed a potential crash when constructing certain types of aggregations with post projections. [#36514][#36514] | ||
- CockroachDB now correctly validates [computed columns](../v19.1/computed-columns.html) during [`ALTER TABLE ... ADD COLUMN`](../v19.1/add-column.html). [#36575][#36575] | ||
- Fixed a bug when parsing dates with large years. [#36555][#36555] | ||
- Fixed a bug when decoding single column family `JSONB` columns. [#36626][#36626] | ||
- Fixed a potential crash in a mixed-version cluster with some nodes running `v19.1-beta-x` and others running `19.1-rc.x`. [#36719][#36719] | ||
- Made [`CHANGEFEED`s](../v19.1/create-changefeed.html) more resilient to a class of bugs that manifest as stalls. [#36768][#36768] | ||
|
||
### Performance improvements | ||
|
||
- CockroachDB now applies back-pressure to bulk operations before other traffic. [#36738][#36738] | ||
|
||
### Contributors | ||
|
||
This release includes 19 merged PRs by 12 authors. | ||
|
||
[#36514]: https://github.com/cockroachdb/cockroach/pull/36514 | ||
[#36555]: https://github.com/cockroachdb/cockroach/pull/36555 | ||
[#36575]: https://github.com/cockroachdb/cockroach/pull/36575 | ||
[#36626]: https://github.com/cockroachdb/cockroach/pull/36626 | ||
[#36719]: https://github.com/cockroachdb/cockroach/pull/36719 | ||
[#36738]: https://github.com/cockroachdb/cockroach/pull/36738 | ||
[#36768]: https://github.com/cockroachdb/cockroach/pull/36768 |