-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add PostgreSQL 17 support. - Remove support for PostgreSQL < 12. Release notes from README.md and CHANGELOG.txt have been merged into CHANGELOG.md. Reviewed by Artem Gavrilov (@artemgavrilov), Keith Fiske (@keithf4).
- Loading branch information
Showing
5 changed files
with
42 additions
and
33 deletions.
There are no files selected for viewing
This file contains 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,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. |
This file was deleted.
Oops, something went wrong.
This file contains 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 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,5 +1,5 @@ | ||
# set_user extension | ||
comment = 'similar to SET ROLE but with added logging' | ||
default_version = '4.0.1' | ||
default_version = '4.1.0' | ||
module_pathname = '$libdir/set_user' | ||
relocatable = false |
This file contains 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,6 @@ | ||
/* set-user--4.0.1--4.1.0.sql */ | ||
|
||
-- complain if script is sourced in psql, rather than via ALTER EXTENSION | ||
\echo Use "ALTER EXTENSION set_user UPDATE" to load this file. \quit | ||
|
||
-- just bumping our version to 4.1.0. no new SQL features here, so nothing to do. |