Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions data/releasenotes.json
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>."

Copy link
Copy Markdown
Contributor

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

},
{
"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>."

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The 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

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The 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",
Expand Down
Loading