Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOC-7783] Release notes for v23.2.0-alpha.2 #17929

Merged
merged 5 commits into from
Oct 2, 2023

Conversation

mdlinville
Copy link
Contributor

@mdlinville mdlinville commented Sep 26, 2023

[DOC-7783] Release notes for v23.2.0-alpha.2

Initial commit represents the generated notes for SHA 10d282dc9045ebb8b3faaf891706a13b08177949 before edits

Latest commit updates the hash to 2111b61b2d7c789bc03b1e9392062df80c779075 with a copyedit for the new notes.

Preview: releases/v23.2.md

@github-actions
Copy link

github-actions bot commented Sep 26, 2023

Files changed:

  • src/current/_data/releases.yml
  • src/current/_includes/releases/v23.2/v23.2.0-alpha.2.md:

@netlify
Copy link

netlify bot commented Sep 26, 2023

Deploy Preview for cockroachdb-interactivetutorials-docs canceled.

Name Link
🔨 Latest commit 83cdf13
🔍 Latest deploy log https://app.netlify.com/sites/cockroachdb-interactivetutorials-docs/deploys/651b3886cac07d00079260b4

@netlify
Copy link

netlify bot commented Sep 26, 2023

Deploy Preview for cockroachdb-api-docs canceled.

Name Link
🔨 Latest commit 83cdf13
🔍 Latest deploy log https://app.netlify.com/sites/cockroachdb-api-docs/deploys/651b38867fb2a500081cb81c

@netlify
Copy link

netlify bot commented Sep 26, 2023

Netlify Preview

Name Link
🔨 Latest commit 83cdf13
🔍 Latest deploy log https://app.netlify.com/sites/cockroachdb-docs/deploys/651b38867ca6c20008e1c682
😎 Deploy Preview https://deploy-preview-17929--cockroachdb-docs.netlify.app/docs/releases/v23.2
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@mdlinville mdlinville requested a review from celiala September 26, 2023 23:31
@mdlinville mdlinville force-pushed the v23.2.0-alpha.2-release-notes branch 2 times, most recently from eeef0c5 to 72b1e2d Compare September 28, 2023 20:38

[#110606][#110606]

- Added a check to disallow queries that use predicate locking, since explicit uniqueness checks are not yet supported under Read Committed isolation. `INSERT`, `UPDATE`, and `UPSERT` statements against some `REGIONAL BY ROW` tables will fail under Read Committed isolation with the following error:
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@michae2 PTAL and make sure I've got this right.

@@ -34,28 +58,49 @@ Release Date: October 2, 2023
- A synthetic `dropped` column have been added to the `pg_attribute` table. This column tracks the attribution numbers for dropped attributions, to work around issues with ORMs that are not designed to handle gaps in attribution numbering in the `pg_attribute` table. [#111019][#111019]
- Fixed a rare internal error in the `unnest` and `information_schema._pg_expandarray` [built-in functions](https://www.cockroachlabs.com/docs/v23.2/functions-and-operators) where passed string arguments could be cast to an array. [#110956][#110956]
- External connection URLs now accept the scheme `azure-blob` for connections to Azure Blob Storage and the scheme `azure-kms` for connections to Azure KMS. For backward compatibility, schemes `azure` and `azure-storage` schemes continue to work for connections to Azure Blob Storage. [#111217][#111217]
- Fixed a bug where vectorized `COPY FROM` could produce a plan with more than one RenderNodes, when only zero or one should be allowed. This could result in multiple render nodes in a table with a hash shareded primary key. [#111284][#111284]
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cucaroach PTAL and make sure I've got this right.

@@ -34,28 +58,49 @@ Release Date: October 2, 2023
- A synthetic `dropped` column have been added to the `pg_attribute` table. This column tracks the attribution numbers for dropped attributions, to work around issues with ORMs that are not designed to handle gaps in attribution numbering in the `pg_attribute` table. [#111019][#111019]
- Fixed a rare internal error in the `unnest` and `information_schema._pg_expandarray` [built-in functions](https://www.cockroachlabs.com/docs/v23.2/functions-and-operators) where passed string arguments could be cast to an array. [#110956][#110956]
- External connection URLs now accept the scheme `azure-blob` for connections to Azure Blob Storage and the scheme `azure-kms` for connections to Azure KMS. For backward compatibility, schemes `azure` and `azure-storage` schemes continue to work for connections to Azure Blob Storage. [#111217][#111217]
- Fixed a bug where vectorized `COPY FROM` could produce a plan with more than one RenderNodes, when only zero or one should be allowed. This could result in multiple render nodes in a table with a hash shareded primary key. [#111284][#111284]
- Fixed a bug in DB Console's Statement Diagnostic page that could cause the page to crash if the response was larger than 50 KB. The page now keeps pulling results until no maximum size errors are encountered. [#111128][#111128]
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@j82w PTAL and make sure I've got this right.

src/current/_includes/releases/v23.2/v23.2.0-alpha.2.md Outdated Show resolved Hide resolved

<h3 id="v23-2-0-alpha-2-contributors">Contributors</h3>

This release includes 102 merged PRs by 43 authors.
This release includes [157 merged PRs by 54 authors](https://github.com/cockroachdb/cockroach/compare/v23.2.0-alpha.1...2111b61b2d7c789bc03b1e9392062df80c779075).
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mikeCRL WDYT about linking to the Git comparison so the reader can see every commit if they want to? I'm not sure how to automate generating this link. I've asked Nick if we can take advantage of releases.yml somehow.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great idea. Raised an issue. I suspect that we may want to use the latest release's tag instead of its commit SHA as they're functionally equivalent, but the former is more meaningful to humans.

(cockroachdb/cockroach@v23.2.0-alpha.1...v23.2.0-alpha.2
over
cockroachdb/cockroach@v23.2.0-alpha.1...2111b61)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We already include this in a different part of the release note, but we can think about how we wish to display it: https://www.cockroachlabs.com/docs/releases/v23.2#v23-2-0-alpha-2-changelog

This is technically commits and not PRs, so it might be odd to display PRs as the link title when we're really showing commits at the destination. Mike and I have agreed to table this for the time being.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nPRs will always be smaller than nCommits. The compare link lets them see every commit that is in the release, not only those that come from PRs (not everything comes from a PR these days) and have release note text.

Generated notes for SHA 10d282dc9045ebb8b3faaf891706a13b08177949 before edits
Simultaneous copyedit. Also experiment with adding a Github comparison link
@mdlinville mdlinville force-pushed the v23.2.0-alpha.2-release-notes branch from 72b1e2d to 1baa57a Compare October 2, 2023 21:36
@mdlinville mdlinville force-pushed the v23.2.0-alpha.2-release-notes branch from 1baa57a to 6d586a2 Compare October 2, 2023 21:37
@mdlinville mdlinville merged commit f2dac1f into main Oct 2, 2023
3 checks passed
@mdlinville mdlinville deleted the v23.2.0-alpha.2-release-notes branch October 2, 2023 22:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants