forked from postgres/postgres
-
Notifications
You must be signed in to change notification settings - Fork 11
Create Release Notes for 1.0 #432
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
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
4e348a0
added release notes v1.0
Andriciuc b3d2982
Update variables.yml
Andriciuc ce89527
Update release-notes-v1.0.md
Andriciuc 13a8311
small fixes to variables
Andriciuc 2caf5c7
Merge branch 'TDE_REL_17_STABLE' into pg-tde-release-notes-1.0
Andriciuc cc95301
Update release-notes.md
Andriciuc 2e1335e
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc 5088789
Update mkdocs.yml
Andriciuc 676a1e3
Update release-notes-v1.0.md
Andriciuc 82f0868
small fixes
Andriciuc 867043c
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc ac292e3
Merge branch 'pg-tde-release-notes-1.0' of https://github.com/percona…
Andriciuc 6e8879f
updated rn and variables
Andriciuc db7eaae
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc 8b442d0
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc 0686a69
Update release-notes-v1.0.md
Andriciuc 8112716
new tickets and highlights
Andriciuc 15dd4f1
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc f0e0253
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc 00505e2
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc b558f5e
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc 2a634e2
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc 5228cd6
Update release-notes-v1.0.md
Andriciuc 67c00d5
Update release-notes-v1.0.md
Andriciuc 628a61c
Update release-notes-v1.0.md
Andriciuc 4c71095
Update release-notes-v1.0.md
Andriciuc a93c995
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc d46f8c5
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc f68b468
Update release-notes-v1.0.md
Andriciuc 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
61 changes: 61 additions & 0 deletions
61
contrib/pg_tde/documentation/docs/release-notes/release-notes-v1.0.md
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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# pg_tde 1.0 ({{date.GA10}}) | ||
|
||
The `pg_tde` by Percona extension brings in [Transparent Data Encryption (TDE)](../index/index.md) to PostgreSQL and enables you to keep sensitive data safe and secure. | ||
|
||
[Get Started](../install.md){.md-button} | ||
|
||
## Release Highlights | ||
|
||
* **`pg_tde` 1.0 is now GA (Generally Available)** | ||
|
||
And **stable** for encrypting relational data in PostgreSQL using [Transparent Data Encryption (TDE)](../index/index.md). This milestone brings production-level data protection to PostgreSQL workloads. | ||
|
||
* **WAL encryption is still in Beta** | ||
|
||
The WAL encryption feature is currently still in beta and is not effective unless explicitly enabled. **It is not yet production ready.** Do **not** enable this feature in production environments. | ||
|
||
## Upgrade considerations | ||
|
||
`pg_tde` {{tdeversion}} is **not** backward compatible with previous `pg_tde` versions, like Release Candidate 2, due to significant changes in code. This means you **cannot** directly upgrade from one version to another. You must do **a clean installation** of `pg_tde`. | ||
Naeem-Akhter marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
## Known issues | ||
Andriciuc marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
* The default `mlock` limit on Rocky Linux 8 for ARM64-based architectures equals the memory page size and is 64 Kb. This results in the child process with `pg_tde` failing to allocate another memory page because the max memory limit is reached by the parent process. | ||
Andriciuc marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
To prevent this, you can change the `mlock` limit to be at least twice bigger than the memory page size: | ||
|
||
* temporarily for the current session using the `ulimit -l <value>` command. | ||
* set a new hard limit in the `/etc/security/limits.conf` file. To do so, you require the superuser privileges. | ||
|
||
Adjust the limits with caution since it affects other processes running in your system. | ||
|
||
## Changelog | ||
|
||
### New Features | ||
Andriciuc marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
- [PG-1257](https://perconadev.atlassian.net/browse/PG-1257) – Added SQL function to remove the current principal key | ||
|
||
### Improvements | ||
|
||
- [PG-1617](https://perconadev.atlassian.net/browse/PG-1617) – Removed relation key cache | ||
- [PG-1635](https://perconadev.atlassian.net/browse/PG-1635) – User-facing TDE functions now return void | ||
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 should probably mention @AndersAstrand 's API change here with creating keys being separated from setting them. |
||
- [PG-1605](https://perconadev.atlassian.net/browse/PG-1605) – Removed undeclared dependencies for `pg_tde_grant_database_key_management_to_role()` | ||
|
||
### Bugs Fixed | ||
|
||
- [PG-1581](https://perconadev.atlassian.net/browse/PG-1581) – Fixed PostgreSQL crashes on table access when KMIP key is unavailable after restart | ||
- [PG-1583](https://perconadev.atlassian.net/browse/PG-1583) – Fixed a crash when dropping the `pg_tde` extension with CASCADE after changing the key provider file | ||
- [PG-1585](https://perconadev.atlassian.net/browse/PG-1585) – Fixed the vault provider re-addition that failed after server restart with a new token | ||
- [PG-1592](https://perconadev.atlassian.net/browse/PG-1592) – Improve error logs when Server Key Info is requested without being created | ||
- [PG-1593](https://perconadev.atlassian.net/browse/PG-1593) – Fixed runtime failures when invalid Vault tokens are allowed during key provider creation | ||
- [PG-1600](https://perconadev.atlassian.net/browse/PG-1600) – Fixed Postmaster error when dropping a table with an unavailable key provider | ||
- [PG-1606](https://perconadev.atlassian.net/browse/PG-1606) – Fixed missing superuser check in role grant function leads to misleading errors | ||
- [PG-1607](https://perconadev.atlassian.net/browse/PG-1607) – Improved CA parameter order and surrounding documentation for clearer interpretation | ||
- [PG-1608](https://perconadev.atlassian.net/browse/PG-1608) – Updated and fixed global key configuration parameters in documentation | ||
- [PG-1613](https://perconadev.atlassian.net/browse/PG-1613) – Tested and improved the `pg_tde_change_key_provider` CLI utility | ||
- [PG-1637](https://perconadev.atlassian.net/browse/PG-1637) – Fixed unused keys in key files which caused issues after OID wraparound | ||
- [PG-1651](https://perconadev.atlassian.net/browse/PG-1651) – Fixed the CLI tool when working with Vault key export/import | ||
- [PG-1652](https://perconadev.atlassian.net/browse/PG-1652) – Fixed when the server fails to find encryption keys after CLI-based provider change | ||
- [PG-1662](https://perconadev.atlassian.net/browse/PG-1662) – Fixed the creation of inconsistent encryption status when altering partitioned tables | ||
- [PG-1663](https://perconadev.atlassian.net/browse/PG-1663) – Fixed the indexes on partitioned tables which were not encrypted | ||
- [PG-1700](https://perconadev.atlassian.net/browse/PG-1700) – Fixed the error hint when the principal key is missing |
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
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
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,9 +1,11 @@ | ||
#Variables used throughout the docs | ||
|
||
release: 'RC2' | ||
tdeversion: '1.0' | ||
release: '1.0' | ||
pgversion17: '17.5' | ||
tdebranch: TDE_REL_17_STABLE | ||
tdebranch: release-17.5.2 | ||
|
||
date: | ||
GA10: '2025-06-30' | ||
RC2: '2025-05-29' | ||
RC: '2025-03-27' |
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.
Uh oh!
There was an error while loading. Please reload this page.