-
Notifications
You must be signed in to change notification settings - Fork 1
Add 2026-06-23 release notes #181
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
Merged
+103
−0
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -1,4 +1,107 @@ | ||
| [ | ||
| { | ||
| "version": "v2026-06-23", | ||
| "date": "2026-06-23", | ||
| "breaksdb": false, | ||
| "notes": [ | ||
| { | ||
| "type": "feat", | ||
| "note": "The <tt>--createdb</tt> option now either reads the <tt>postgres</tt> super user password from the <tt>CEDAR_PASSWORD</tt> environment variable or creates a random password, which is printed to the startup logs." | ||
| }, | ||
| { | ||
| "type": "feat", | ||
| "note": "Respect <tt>cgroup v2</tt> memory limits for memory pool sizing (e.g. when running CedarDB inside a Docker container)." | ||
| }, | ||
| { | ||
| "type": "perf", | ||
| "note": "Significantly improve compression speed for text data, especially for columns with few distinct values." | ||
| }, | ||
| { | ||
| "type": "perf", | ||
| "note": "Reduce contention for parallel table scans." | ||
| }, | ||
| { | ||
| "type": "perf", | ||
| "note": "Improve parallel data insertion." | ||
| }, | ||
| { | ||
| "type": "perf", | ||
| "note": "Improve performance of array_agg() by up to 20x." | ||
| }, | ||
| { | ||
| "type": "perf", | ||
| "note": "Reduce memory requirements of large transaction rollbacks." | ||
| }, | ||
| { | ||
| "type": "pg", | ||
| "note": "<tt>SHOW transaction_isolation</tt> now returns <tt>repeatable read</tt> instead of <tt>read committed</tt> which matches the snapshot isolation guarantees we provide." | ||
| }, | ||
| { | ||
| "type": "pg", | ||
| "note": "Support <tt>RESET variable</tt> as alternative syntax for <tt>SET variable TO DEFAULT</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. For this, we could also add docs (https://cedardb.com/docs/references/sessions/settings/) @bandle |
||
| }, | ||
| { | ||
| "type": "pg", | ||
| "note": "Expose log_min_duration as writable session setting." | ||
| }, | ||
| { | ||
| "type": "pg", | ||
| "note": "Add line breaks to <tt>encode(<text>, 'base64')</tt> output for RFC 2045 compatibility." | ||
| }, | ||
| { | ||
| "type": "fix", | ||
| "note": "Buffer manager allocation failures now produce more descriptive error messages." | ||
| }, | ||
| { | ||
| "type": "fix", | ||
| "note": "Fix COPY from CSV file with custom column order." | ||
| }, | ||
| { | ||
| "type": "fix", | ||
| "note": "Add more consistency checks when deleting tuples." | ||
| }, | ||
| { | ||
| "type": "fix", | ||
| "note": "Fix a bug that caused deleted tuples to become visible again." | ||
| }, | ||
| { | ||
| "type": "fix", | ||
| "note": "Fix a live-lock when running large scan queries on a very small page buffer." | ||
| }, | ||
| { | ||
| "type": "fix", | ||
| "note": "Check for duplicates in the input values of an upsert." | ||
| }, | ||
| { | ||
| "type": "fix", | ||
| "note": "Improve quality of <tt>EXPLAIN (FORMAT SQL)</tt> output." | ||
| }, | ||
| { | ||
| "type": "fix", | ||
| "note": "Fix reordering of bandjoins in complex queries." | ||
| }, | ||
| { | ||
| "type": "fix", | ||
| "note": "Fix failing explain output in large queries with CTEs." | ||
| }, | ||
| { | ||
| "type": "fix", | ||
| "note": "Support <tt>~</tt> in paths for installs using the CedarDB install script." | ||
| }, | ||
| { | ||
| "type": "fix", | ||
| "note": "Fix stale output of <tt>license</tt> and <tt>check_version</tt> functions in prepared statements." | ||
| }, | ||
| { | ||
| "type": "fix", | ||
| "note": "Fix a crash when rolling back transactions with large log entries." | ||
| }, | ||
| { | ||
| "type": "fix", | ||
| "note": "Fix a crash when rolling back large transactions where the same tuple was updated and then deleted." | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "version": "v2026-05-26", | ||
| "date": "2026-05-26", | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Do we want to document this (e.g., here: https://cedardb.com/docs/get_started/install_locally/) @Lukasdoe
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.
Good point, we should add this. I'll draft an edit :)