Skip to content

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 29 commits into from
Jun 30, 2025
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
4e348a0
added release notes v1.0
Andriciuc Jun 13, 2025
b3d2982
Update variables.yml
Andriciuc Jun 13, 2025
ce89527
Update release-notes-v1.0.md
Andriciuc Jun 16, 2025
13a8311
small fixes to variables
Andriciuc Jun 16, 2025
2caf5c7
Merge branch 'TDE_REL_17_STABLE' into pg-tde-release-notes-1.0
Andriciuc Jun 16, 2025
cc95301
Update release-notes.md
Andriciuc Jun 16, 2025
2e1335e
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc Jun 16, 2025
5088789
Update mkdocs.yml
Andriciuc Jun 16, 2025
676a1e3
Update release-notes-v1.0.md
Andriciuc Jun 16, 2025
82f0868
small fixes
Andriciuc Jun 16, 2025
867043c
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc Jun 18, 2025
ac292e3
Merge branch 'pg-tde-release-notes-1.0' of https://github.com/percona…
Andriciuc Jun 18, 2025
6e8879f
updated rn and variables
Andriciuc Jun 18, 2025
db7eaae
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc Jun 25, 2025
8b442d0
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc Jun 26, 2025
0686a69
Update release-notes-v1.0.md
Andriciuc Jun 26, 2025
8112716
new tickets and highlights
Andriciuc Jun 27, 2025
15dd4f1
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc Jun 27, 2025
f0e0253
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc Jun 27, 2025
00505e2
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc Jun 27, 2025
b558f5e
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc Jun 27, 2025
2a634e2
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc Jun 30, 2025
5228cd6
Update release-notes-v1.0.md
Andriciuc Jun 30, 2025
67c00d5
Update release-notes-v1.0.md
Andriciuc Jun 30, 2025
628a61c
Update release-notes-v1.0.md
Andriciuc Jun 30, 2025
4c71095
Update release-notes-v1.0.md
Andriciuc Jun 30, 2025
a93c995
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc Jun 30, 2025
d46f8c5
Merge branch 'release-17.5.2' into pg-tde-release-notes-1.0
Andriciuc Jun 30, 2025
f68b468
Update release-notes-v1.0.md
Andriciuc Jun 30, 2025
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# pg_tde 1.0 ({{date.GA10}})

`pg_tde` 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

This release provides the following features and improvements:

* **Type Release Highhlights here**

## Upgrade considerations

`pg_tde` 1.0 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 [uninstall](../how-to/uninstall.md) `pg_tde` first and then [install](../install.md) and configure the new 1.0 version.

## Known issues

* 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.

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

## Improvements

### Bugs Fixed
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

`pg_tde` extension brings in [Transparent Data Encryption (TDE)](../index/index.md) to PostgreSQL and enables you to keep sensitive data safe and secure.

* [Percona Transparent Database Encryption for PostgreSQL ({{date.GA10}})](release-notes-v1.0.md)
* [pg_tde Release Candidate 2 (RC2) ({{date.RC2}})](rc2.md)
* [pg_tde Release Candidate 2 (RC2) ({{date.RC2}})](rc2.md)
* [pg_tde Release Candidate ({{date.RC}})](rc.md)
* [pg_tde Beta2 (2024-12-16)](beta2.md)
Expand Down
49 changes: 25 additions & 24 deletions contrib/pg_tde/documentation/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,45 +163,46 @@ nav:
- "Features": features.md
- "Overview":
- "What is Transparent Data Encryption (TDE)?":
- "TDE Overview": index/index.md
- "TDE Benefits": index/how-tde-helps.md
- "How TDE Works": index/how-does-tde-work.md
- "Encrypted Data Scope": index/tde-encrypts.md
- "Table Access Methods and TDE": index/table-access-method.md
- "TDE overview": index/index.md
- "TDE benefits": index/how-tde-helps.md
- "How TDE works": index/how-does-tde-work.md
- "Encrypted data scope": index/tde-encrypts.md
- "Table access methods and TDE": index/table-access-method.md
- "Limitations of TDE": index/tde-limitations.md
- "Versions and Supported PostgreSQL Deployments": index/supported-versions.md
- "Get Started":
- "Versions and supported PostgreSQL deployments": index/supported-versions.md
- "Get started":
- "1. Install pg_tde": install.md
- "1.1 Via apt": apt.md
- "1.2 Via yum": yum.md
- "2. Configure pg_tde": setup.md
- "2.1 Configure Key Management (KMS)":
- "2.1 Configure Key Management (KMS)": global-key-provider-configuration/index.md
- "KMIP Configuration": global-key-provider-configuration/kmip-server.md
- "Fortanix Configuration": global-key-provider-configuration/kmip-fortanix.md
- "Vault Configuration": global-key-provider-configuration/vault.md
- "Thales Configuration": global-key-provider-configuration/kmip-thales.md
- "Keyring File Configuration": global-key-provider-configuration/keyring.md
- "2.2 Global Principal Key Configuration": global-key-provider-configuration/set-principal-key.md
- "3. Validate Encryption with pg_tde": test.md
- "4. Configure WAL Encryption (tech preview)": wal-encryption.md
- "Technical Reference":
- "Technical Reference": advanced-topics/index.md
- "KMIP configuration": global-key-provider-configuration/kmip-server.md
- "Fortanix configuration": global-key-provider-configuration/kmip-fortanix.md
- "Vault configuration": global-key-provider-configuration/vault.md
- "Thales configuration": global-key-provider-configuration/kmip-thales.md
- "Keyring file configuration": global-key-provider-configuration/keyring.md
- "2.2 Global principal key configuration": global-key-provider-configuration/set-principal-key.md
- "3. Validate encryption with pg_tde": test.md
- "4. Configure WAL encryption (tech preview)": wal-encryption.md
- "Technical reference":
- "Technical reference": advanced-topics/index.md
- "Architecture": architecture/index.md
- "GUC Variables": variables.md
- "GUC variables": variables.md
- "Functions": functions.md
- "TDE Operations":
- "pg_tde CLI Tools":
- "CLI Overview": command-line-tools/index.md
- "TDE operations":
- "pg_tde CLI tools":
- "CLI overview": command-line-tools/index.md
- "pg_tde_change_key_provider": command-line-tools/pg-tde-change-key-provider.md
- "pg_waldump": command-line-tools/pg-waldump.md
- "pg_checksums": command-line-tools/pg-tde-checksums.md
- "Uninstall pg_tde": how-to/uninstall.md
- "Configure Multi-tenancy": how-to/multi-tenant-setup.md
- "Decrypt an Encrypted Table": how-to/decrypt.md
- "Configure multi-tenancy": how-to/multi-tenant-setup.md
- "Decrypt an encrypted table": how-to/decrypt.md
- faq.md
- "Release Notes":
- "Release notes":
- "pg_tde release notes": release-notes/release-notes.md
- release-notes/release-notes-v1.0.md
- release-notes/rc2.md
- release-notes/rc.md
- release-notes/beta2.md
Expand Down
3 changes: 2 additions & 1 deletion contrib/pg_tde/documentation/variables.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
#Variables used throughout the docs

release: 'RC2'
release: '1.0'
pgversion17: '17.5'
tdebranch: TDE_REL_17_STABLE

date:
GA10: '2025-05-29'
RC2: '2025-05-29'
RC: '2025-03-27'