-
Notifications
You must be signed in to change notification settings - Fork 1
Add 2026-07-22 release notes #187
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,59 @@ | ||
| [ | ||
| { | ||
| "version": "v2026-07-22", | ||
| "date": "2026-07-22", | ||
| "breaksdb": false, | ||
| "notes": [ | ||
| { | ||
| "type": "feat", | ||
| "note": "Compress cold data on disk using zstd compression by default, controllable through <tt>CREATE TABLE ... WITH (compression=zstd/none)</tt>." | ||
| }, | ||
| { | ||
| "type": "feat", | ||
| "note": "Add support for <tt>ALTER POLICY RENAME TO</tt>." | ||
| }, | ||
| { | ||
| "type": "feat", | ||
| "note": "Allow setting password expiration for roles using <tt>VALID UNTIL</tt>." | ||
| }, | ||
| { | ||
| "type": "feat", | ||
| "note": "Allow re-naming roles through <tt>ALTER ROLE ... RENAME</tt>." | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we need to update the docs for the first new features @ChrisWint
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We need to update them for a lot new DDL feautres soon, @mproebstl and I discussed defering a docs update until the feature flag is live to have a consistent change with all new functionality. |
||
| }, | ||
| { | ||
| "type": "feat", | ||
| "note": "Add support for database names in fully-qualified SQL identifiers. Cross-database references are still unsupported." | ||
| }, | ||
| { | ||
| "type": "perf", | ||
| "note": "Avoid using FSST string encoding when general compression is enabled." | ||
| }, | ||
| { | ||
| "type": "perf", | ||
| "note": "Improve data retrieval scheduling." | ||
| }, | ||
| { | ||
| "type": "perf", | ||
| "note": "Improve compression for the last rows of a large bulk insert." | ||
| }, | ||
| { | ||
| "type": "fix", | ||
| "note": "Fix an assertion error for <tt>date_trunc(text, interval)</tt>." | ||
| }, | ||
| { | ||
| "type": "fix", | ||
| "note": "Fix a crash in the undo phase of the recovery." | ||
| }, | ||
| { | ||
| "type": "fix", | ||
| "note": "Fix an edge case in <tt>ALTER POLICY TO</tt> that could disable policies." | ||
| }, | ||
| { | ||
| "type": "fix", | ||
| "note": "Fix an optimizer crash when using UDFs as join keys." | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "version": "v2026-07-09", | ||
| "date": "2026-07-09", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
zstd compression should be in the docs @ChrisWint