Skip to content

Commit

Permalink
Move release notes to CHANGELOG.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
dwsteele committed Aug 13, 2024
1 parent ef4c750 commit 2cb9a0d
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 32 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
4.1.0
=====

NEW FEATURES
------------
- Add PostgreSQL 17 support.
- Remove support for PostgreSQL < 12.

4.0.1
=====

NEW FEATURES
------------
- Reorganized repository structure to allow for easier management of extension files during build process.
- Added NO_PGXS build flag to allow building of extension without PGXS. Restores ability to build on Windows.
- No changes to extension code.

2.0.1
=====

NEW FEATURES
------------
- Deprecated GUCs are removed from `SHOW ALL`.

BUGFIXES
--------
- NOTICE fixed to only display on first reference to non-default deprecated variable.

2.0.0
=====

NEW FEATURES
------------
- Use of GUCs with `whitelist` have been deprecated in lieu of a more appropriate `allowlist`. The last GUC set by `ALTER SYSTEM` will be used on reload, the first attempt to `SHOW` a deprecated variable will provide a NOTICE.
- The extension is now non-relocatable and all functions are schema-qualified.
11 changes: 0 additions & 11 deletions CHANGELOG.txt

This file was deleted.

21 changes: 0 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -788,27 +788,6 @@ test=> select session_user, current_user, user, current_role;
(1 row)
```
## NOTES
### Version 4.0.0
- Support for the previously deprecated `whitelist` GUCs is removed. Please update your config to the new `allowlist` equivalent otherwise the default values for the `allowlist` GUCs will be in effect potentially allowing undesired privilege escalation.
### Version 2.0.1
- NOTICE fixed to only display on first reference to non-default deprecated
variable.
- Deprecated GUCs are removed from `SHOW ALL`.
### Version 2.0.0
- Use of GUCs with `whitelist` have been deprecated in lieu of a more
appropriate `allowlist`. The last GUC set by `ALTER SYSTEM` will be used on
reload, the first attempt to `SHOW` a deprecated variable will provide a
NOTICE.
- The extension is now non-relocatable and all functions are schema-qualified.
## Licensing
Please see the [LICENSE](./LICENSE) file.
Expand Down

0 comments on commit 2cb9a0d

Please sign in to comment.