Preparing release 1.4.3

This commit is contained in:
Daniele Varrazzo 2018-05-19 17:27:49 +01:00
parent 4401bcf804
commit f4e010386a
3 changed files with 11 additions and 4 deletions

View File

@ -2,7 +2,7 @@
"name": "pg_repack", "name": "pg_repack",
"abstract": "PostgreSQL module for data reorganization", "abstract": "PostgreSQL module for data reorganization",
"description": "Reorganize tables in PostgreSQL databases with minimal locks", "description": "Reorganize tables in PostgreSQL databases with minimal locks",
"version": "1.4.2", "version": "1.4.3",
"maintainer": [ "maintainer": [
"Beena Emerson <memissemerson@gmail.com>", "Beena Emerson <memissemerson@gmail.com>",
"Josh Kupershmidt <schmiddy@gmail.com>", "Josh Kupershmidt <schmiddy@gmail.com>",
@ -15,7 +15,7 @@
"provides": { "provides": {
"pg_repack": { "pg_repack": {
"file": "lib/pg_repack.sql", "file": "lib/pg_repack.sql",
"version": "1.4.2", "version": "1.4.3",
"abstract": "Reorganize tables in PostgreSQL databases with minimal locks" "abstract": "Reorganize tables in PostgreSQL databases with minimal locks"
} }
}, },

View File

@ -466,6 +466,13 @@ Creating indexes concurrently comes with a few caveats, please see `the document
Releases Releases
-------- --------
* pg_repack 1.4.3
* Fixed possible CVE-2018-1058 attack paths (issue #168)
* Fixed "unexpected index definition" after CVE-2018-1058 changes in
PostgreSQL (issue #169)
* Fixed build with recent Ubuntu packages (issue #179)
* pg_repack 1.4.2 * pg_repack 1.4.2
* added PostgreSQL 10 support (issue #120) * added PostgreSQL 10 support (issue #120)

View File

@ -24,8 +24,8 @@ with the right privileges: contact Daniele Varrazzo to obtain them.
pgxn check dist/pg_repack-$VER.zip pgxn check dist/pg_repack-$VER.zip
(note that ``check`` may require the Postgres bin directory to be added to (note that ``check`` may require the Postgres bin directory to be added to
the path; check the ``install`` log to see where ``pg_repack`` executable the path, e.g. ``PATH=$(pg_config --bindir):$PATH``; check the ``install``
was installed). log to see where ``pg_repack`` executable was installed).
.. __: http://pgxnclient.projects.pgfoundry.org/ .. __: http://pgxnclient.projects.pgfoundry.org/