Stamp 12.2.
commit : 45b88269a353ad93744772791feb6d01bc7e1e42
author : Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 10 Feb 2020 17:14:51 -0500
committer: Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 10 Feb 2020 17:14:51 -0500
Click here for diff
M configure
M configure.in
M src/include/pg_config.h.in
M src/include/pg_config.h.win32
M src/interfaces/libpq/libpq.rc.in
M src/port/win32ver.rc
Last-minute updates for release notes.
commit : ce5a2d2c3e8e1353d1cb31ab143730accbb1ac75
author : Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 10 Feb 2020 12:51:07 -0500
committer: Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 10 Feb 2020 12:51:07 -0500
Click here for diff
v2.23: Bug Fix
commit : 2358d3448507f5dc4fd50edf65172285bca69c4b
author : David Steele <david@pgmasters.net>
date : Sun, 26 Jan 2020 22:38:21 -0700
committer: David Steele <david@pgmasters.net>
date : Sun, 26 Jan 2020 22:38:21 -0700
Click here for diff
Bug Fixes:
* Fix missing files corrupting the manifest. If a file was removed by PostgreSQL during the backup (or was missing from the standby) then the next file might not be copied and updated in the manifest. If this happened then the backup would error when restored. (Reviewed by Cynthia Shang. Reported by Vitaliy Kukharik.)
Improvements:
* Use pkg-config instead of xml2-config for libxml2 build options. (Contributed by David Steele, Adrian Vondendriesch.)
* Validate checksums are set in the manifest on backup/restore. (Reviewed by Cynthia Shang.)
M README.md
M doc/resource/exe.cache
M doc/resource/git-history.cache
M doc/xml/auto/metric-coverage-report.auto.xml
M doc/xml/release.xml
M lib/pgBackRest/Version.pm
M src/configure
M src/configure.ac
M src/version.h
v2.22: Bug Fix
commit : bae6e1c9e3a035f3793739ef1b469015777aa70b
author : David Steele <david@pgmasters.net>
date : Tue, 21 Jan 2020 16:12:33 -0700
committer: David Steele <david@pgmasters.net>
date : Tue, 21 Jan 2020 16:12:33 -0700
Click here for diff
Bug Fixes:
* Fix error in timeline conversion. The timeline is required to verify WAL segments in the archive after a backup. The conversion was performed base 10 instead of 16, which led to errors when the timeline was ≥ 0xA. (Reported by Lukas Ertl, Eric Veldhuyzen.)
M README.md
M doc/resource/exe.cache
M doc/resource/git-history.cache
M doc/xml/auto/metric-coverage-report.auto.xml
M doc/xml/release.xml
M lib/pgBackRest/Version.pm
M src/configure
M src/configure.ac
M src/version.h
v2.21: C Migration Complete
commit : 2c0ba0820d3e4adea31ef6b8ee201be653ef9579
author : David Steele <david@pgmasters.net>
date : Wed, 15 Jan 2020 13:21:52 -0700
committer: David Steele <david@pgmasters.net>
date : Wed, 15 Jan 2020 13:21:52 -0700
Click here for diff
Bug Fixes:
* Fix options being ignored by asynchronous commands. The asynchronous archive-get/archive-push processes were not loading options configured in command configuration sections, e.g. [global:archive-get]. (Reviewed by Cynthia Shang. Reported by Urs Kramer.)
* Fix handling of \ in filenames. \ was not being properly escaped when calculating the manifest checksum which prevented the manifest from loading. Since instances of \ in cluster filenames should be rare to nonexistent this does not seem likely to be a serious problem in the field.
Features:
* pgBackRest is now pure C.
* Add pg-user option. Specifies the database user name when connecting to PostgreSQL. If not specified pgBackRest will connect with the local OS user or PGUSER, which was the previous behavior. (Contributed by Mike Palmiotto.)
* Allow path-style URIs in S3 driver.
Improvements:
* The backup command is implemented entirely in C. (Reviewed by Cynthia Shang.)
M README.md
M doc/resource/exe.cache
M doc/resource/git-history.cache
M doc/xml/auto/metric-coverage-report.auto.xml
M doc/xml/release.xml
M lib/pgBackRest/Version.pm
M src/configure
M src/configure.ac
M src/version.h
M test/code-count/file-type.yaml
v2.20: Bug Fixes
commit : 39fc2b7ad68d97cf5f23757e8a341428935621f4
author : David Steele <david@pgmasters.net>
date : Thu, 12 Dec 2019 08:20:21 -0500
committer: David Steele <david@pgmasters.net>
date : Thu, 12 Dec 2019 08:20:21 -0500
Click here for diff
Bug Fixes:
* Fix archive-push/archive-get when PGDATA is symlinked. These commands tried to use cwd() as PGDATA but this would disagree with the path configured in pgBackRest if PGDATA was symlinked. If cwd() does not match the pgBackRest path then chdir() to the path and make sure the next cwd() matches the result from the first call. (Reported by Stephen Frost, Milosz Suchy.)
* Fix reference list when backup.info is reconstructed in expire command. Since the backup command is still using the Perl version of reconstruct this issue will not express unless 1) there is a backup missing from backup.info and 2) the expire command is run directly instead of running after backup as usual. This unlikely combination of events means this is probably not a problem in the field.
* Fix segfault on unexpected EOF in gzip decompression. (Reported by Stephen Frost.)
M README.md
M doc/RELEASE.md
M doc/resource/exe.cache
M doc/resource/git-history.cache
M doc/xml/auto/metric-coverage-report.auto.xml
M doc/xml/release.xml
M lib/pgBackRest/Version.pm
M src/configure
M src/configure.ac
M src/perl/embed.auto.c
M src/version.h
M test/code-count/file-type.yaml
v2.19: C Migrations and Bug Fixes
commit : 2d10293d041cbbc72e4a2bac32401f6f384ecb1a
author : David Steele <david@pgmasters.net>
date : Tue, 12 Nov 2019 15:51:28 -0500
committer: David Steele <david@pgmasters.net>
date : Tue, 12 Nov 2019 15:51:28 -0500
Click here for diff
Bug Fixes:
* Fix remote timeout in delta restore. When performing a delta restore on a largely unchanged cluster the remote could timeout if no files were fetched from the repository within protocol-timeout. Add keep-alives to prevent remote timeout. (Reported by James Sewell, Jens Wilke.)
* Fix handling of repeated HTTP headers. When HTTP headers are repeated they should be considered equivalent to a single comma-separated header rather than generating an error, which was the prior behavior. (Reported by donicrosby.)
Improvements:
* JSON output from the info command is no longer pretty-printed. Monitoring systems can more easily ingest the JSON without linefeeds. External tools such as jq can be used to pretty-print if desired. (Contributed by Cynthia Shang.)
* The check command is implemented entirely in C. (Contributed by Cynthia Shang.)
Documentation Improvements:
* Document how to contribute to pgBackRest. (Contributed by Cynthia Shang.)
* Document maximum version for auto-stop option. (Contributed by Brad Nicholson.)
Test Suite Improvements:
* Fix container test path being used when --vm=none. (Suggested by Stephen Frost.)
* Fix mismatched timezone in expect test. (Suggested by Stephen Frost.)
* Don't autogenerate embedded libc code by default. (Suggested by Stephen Frost.)
M README.md
M doc/RELEASE.md
M doc/release.pl
M doc/resource/exe.cache
M doc/resource/git-history.cache
M doc/xml/auto/metric-coverage-report.auto.xml
M doc/xml/release.xml
M lib/pgBackRest/Version.pm
M src/configure
M src/configure.ac
M src/perl/embed.auto.c
M src/version.h
M test/code-count/file-type.yaml
M test/lib/pgBackRestTest/Common/CodeCountTest.pm
Stamp 9.4.25.
commit : 6cd154923526141ee65548513324fa66c72e83d4
author : Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 11 Nov 2019 17:13:41 -0500
committer: Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 11 Nov 2019 17:13:41 -0500
Click here for diff
M configure
M configure.in
M doc/bug.template
M src/include/pg_config.h.win32
M src/interfaces/libpq/libpq.rc.in
M src/port/win32ver.rc
Doc: fix ancient mistake, or at least obsolete info, in rules example.
commit : 84aad60b9cdade0a9d55f938bec92d788e2c54e9
author : Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 11 Nov 2019 14:39:55 -0500
committer: Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 11 Nov 2019 14:39:55 -0500
Click here for diff
Stamp 9.5.20.
commit : 2b634067fcd0c3ac6d528b261b4c77d97e6aeae2
author : Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 11 Nov 2019 17:11:27 -0500
committer: Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 11 Nov 2019 17:11:27 -0500
Click here for diff
M configure
M configure.in
M doc/bug.template
M src/include/pg_config.h.win32
M src/interfaces/libpq/libpq.rc.in
M src/port/win32ver.rc
Doc: fix ancient mistake, or at least obsolete info, in rules example.
commit : 18831346d4e607d35ff338c6e9eec0319cff8d72
author : Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 11 Nov 2019 14:39:55 -0500
committer: Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 11 Nov 2019 14:39:55 -0500
Click here for diff
Stamp 9.6.16.
commit : 39b3a8c830097af84f655a36879eb1b686fb4cd7
author : Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 11 Nov 2019 17:09:28 -0500
committer: Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 11 Nov 2019 17:09:28 -0500
Click here for diff
M configure
M configure.in
M doc/bug.template
M src/include/pg_config.h.win32
M src/interfaces/libpq/libpq.rc.in
M src/port/win32ver.rc
Doc: fix ancient mistake, or at least obsolete info, in rules example.
commit : 750d72fde6233b4ccad5f5416b68042169c97b61
author : Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 11 Nov 2019 14:39:55 -0500
committer: Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 11 Nov 2019 14:39:55 -0500
Click here for diff
Stamp 10.11.
commit : 004ae0a9766236d5d1769301089a014c5ef09cae
author : Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 11 Nov 2019 17:07:14 -0500
committer: Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 11 Nov 2019 17:07:14 -0500
Click here for diff
M configure
M configure.in
M doc/bug.template
M src/include/pg_config.h.win32
M src/interfaces/libpq/libpq.rc.in
M src/port/win32ver.rc
Doc: fix ancient mistake, or at least obsolete info, in rules example.
commit : b75667d84fb3f96418dcef4e464ad0dab97237b6
author : Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 11 Nov 2019 14:39:54 -0500
committer: Tom Lane <tgl@sss.pgh.pa.us>
date : Mon, 11 Nov 2019 14:39:54 -0500
Click here for diff