Life with Open Source

pgBackRest 2.23 commit log

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

pgBackRest 2.22 commit log

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

pgBackRest 2.21 commit log

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

pgBackRest 2.20 commit log

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

PostgreSQL 9.4.25 commit log

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

PostgreSQL 9.5.20 commit log

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

PostgreSQL 9.6.16 commit log

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

PostgreSQL 10.11 commit log

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

PostgreSQL 11.6 commit log

Stamp 11.6.

commit   : 34f805c8cf1bc4d54075526d3b023d9194ccd2cd    
  
author   : Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 11 Nov 2019 17:05:05 -0500    
  
committer: Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 11 Nov 2019 17:05:05 -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   : b3c762a45a14e119acf371f60eb01c8d3607f714    
  
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

PostgreSQL 12.1 commit log

Stamp 12.1.

commit   : 578a551f82f7ad746b36d98c401bdc92c136d664    
  
author   : Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 11 Nov 2019 17:03:10 -0500    
  
committer: Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 11 Nov 2019 17:03:10 -0500    

Click here for diff

M configure
M configure.in
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   : 02f7b7ab75680440695a1e205cbb6636551b6013    
  
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

pgBackRest 2.19 commit log

v2.18: PostgreSQL 12 Support

commit   : 4629237d6a308a250cd52fff49693cd0a1069253    
  
author   : David Steele <david@pgmasters.net>    
date     : Tue, 1 Oct 2019 16:02:07 -0400    
  
committer: David Steele <david@pgmasters.net>    
date     : Tue, 1 Oct 2019 16:02:07 -0400    

Click here for diff

Features:  
  
* PostgreSQL 12 support.  
* Add info command set option for detailed text output. The additional details include databases that can be used for selective restore and a list of tablespaces and symlinks with their default destinations. (Contributed by Cynthia Shang. Suggested by Stephen Frost, ejberdecia.)  
* Add standby restore type. This restore type automatically adds standby_mode=on to recovery.conf for PostgreSQL < 12 and creates standby.signal for PostgreSQL ≥ 12, creating a common interface between PostgreSQL versions. (Reviewed by Cynthia Shang.)  
  
Improvements:  
  
* The restore command is implemented entirely in C. (Reviewed by Cynthia Shang.)  
  
Documentation Improvements:  
  
* Document the relationship between db-timeout and protocol-timeout. (Contributed by Cynthia Shang. Suggested by James Chanco Jr.)  
* Add documentation clarifications regarding standby repositories. (Contributed by Cynthia Shang.)  
* Add FAQ for time-based Point-in-Time Recovery. (Contributed 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/perl/embed.auto.c
M src/version.h

PostgreSQL 12.0 commit log

Stamp 12.0.

commit   : ad1f2885b8c82e0c2d56d7974f012cbecce17a17    
  
author   : Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 30 Sep 2019 16:03:42 -0400    
  
committer: Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 30 Sep 2019 16:03:42 -0400    

Click here for diff

M configure
M configure.in
M src/include/pg_config.h.win32

Suppress another CR in program output

commit   : b60f9afcf4bfe6b1ff73b49b9bab20dde356c7f4    
  
author   : Andrew Dunstan <andrew@dunslane.net>    
date     : Mon, 30 Sep 2019 15:48:54 -0400    
  
committer: Andrew Dunstan <andrew@dunslane.net>    
date     : Mon, 30 Sep 2019 15:48:54 -0400    

Click here for diff

pgBackRest 2.18 commit log

v2.17: C Migrations and Bug Fixes

commit   : ce2bf2999892f689001b084af4d5feb63dc9b402    
  
author   : David Steele <david@pgmasters.net>    
date     : Tue, 3 Sep 2019 16:39:32 -0400    
  
committer: David Steele <david@pgmasters.net>    
date     : Tue, 3 Sep 2019 16:39:32 -0400    

Click here for diff

Bug Fixes:  
  
* Improve slow manifest build for very large quantities of tables/segments. (Reported by Jens Wilke.)  
* Fix exclusions for special files. (Reported by CluelessTechnologist, Janis Puris, Rachid Broum.)  
  
Improvements:  
  
* The stanza-create/update/delete commands are implemented entirely in C. (Contributed by Cynthia Shang.)  
* The start/stop commands are implemented entirely in C. (Contributed by Cynthia Shang.)  
* Create log directories/files with 0750/0640 mode. (Suggested by Damiano Albani.)  
  
Documentation Bug Fixes:  
  
* Fix yum.p.o package being installed when custom package specified. (Reported by Joe Ayers, John Harvey.)  
  
Documentation Improvements:  
  
* Build pgBackRest as an unprivileged user. (Suggested by Laurenz Albe.)  

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
M test/lib/pgBackRestTest/Common/CodeCountTest.pm

PostgreSQL 9.4.24 commit log

Stamp 9.4.24.

commit   : 246893dce8ebea90ef083ab801da4d1f474e01ad    
  
author   : Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 17:22:47 -0400    
  
committer: Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 17:22:47 -0400    

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

Last-minute updates for release notes.

commit   : 4908df4a609aa1f2b3def968fe5b94a74cfde214    
  
author   : Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 11:49:14 -0400    
  
committer: Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 11:49:14 -0400    

Click here for diff

PostgreSQL 9.5.19 commit log

Stamp 9.5.19.

commit   : 167e5353799eabb034817b1e7bafd674d3c2bb04    
  
author   : Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 17:20:40 -0400    
  
committer: Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 17:20:40 -0400    

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

Last-minute updates for release notes.

commit   : e3d8c9a5f1014be97150d07b3e5af1d32a45df65    
  
author   : Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 11:49:14 -0400    
  
committer: Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 11:49:14 -0400    

Click here for diff

PostgreSQL 9.6.15 commit log

Stamp 9.6.15.

commit   : 86ca7f81f7dfc17f04698189dec8973d358bc711    
  
author   : Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 17:18:48 -0400    
  
committer: Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 17:18:48 -0400    

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

Last-minute updates for release notes.

commit   : 3354bd5e2ba921d8267dbd6cac90b491a4f27cae    
  
author   : Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 11:49:14 -0400    
  
committer: Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 11:49:14 -0400    

Click here for diff

PostgreSQL 10.10 commit log

Stamp 10.10.

commit   : 2fbecb66c45eccb8922c371084ae4f0b3a72a86b    
  
author   : Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 17:16:54 -0400    
  
committer: Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 17:16:54 -0400    

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

Last-minute updates for release notes.

commit   : f61bc0048b6b3a9bac7afd469cb6811d29d29d5d    
  
author   : Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 11:49:14 -0400    
  
committer: Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 11:49:14 -0400    

Click here for diff

PostgreSQL 11.5 commit log

Stamp 11.5.

commit   : fdf16779f107dd22a2cb8430d2eee6c344b34187    
  
author   : Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 17:14:59 -0400    
  
committer: Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 17:14:59 -0400    

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

Last-minute updates for release notes.

commit   : d03c0413343ac5a79bc2f6ee5abc84c873efd863    
  
author   : Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 11:49:14 -0400    
  
committer: Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 5 Aug 2019 11:49:14 -0400    

Click here for diff

pgBackRest 2.17 commit log

v2.16: C Migrations and Bug Fixes

commit   : 9e730c1bd61b00fa506ea443cdd6161e88ed31ae    
  
author   : David Steele <david@pgmasters.net>    
date     : Mon, 5 Aug 2019 12:03:04 -0400    
  
committer: David Steele <david@pgmasters.net>    
date     : Mon, 5 Aug 2019 12:03:04 -0400    

Click here for diff

Bug Fixes:  
  
* Retry S3 RequestTimeTooSkewed errors instead of immediately terminating. (Reported by sean0101n, Tim Garton, Jesper St John, Aleš Zelený.)  
* Fix incorrect handling of transfer-encoding response to HEAD request. (Reported by Pavel Suderevsky.)  
* Fix scoping violations exposed by optimizations in gcc 9. (Reported by Christian Lange, Ned T. Crigler.)  
  
Features:  
  
* Add repo-s3-port option for setting a non-standard S3 service port.  
  
Improvements:  
  
* The local command for backup is implemented entirely in C. (Contributed by David Steele, Cynthia Shang.)  
* The check command is implemented partly 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/perl/embed.auto.c
M src/version.h
M test/code-count/file-type.yaml

pgBackRest 2.15 commit log

Begin v2.16 development.

commit   : 466602387bc279aa44a811dc2948b893e4127b2c    
  
author   : David Steele <david@pgmasters.net>    
date     : Tue, 25 Jun 2019 08:42:20 -0400    
  
committer: David Steele <david@pgmasters.net>    
date     : Tue, 25 Jun 2019 08:42:20 -0400    

Click here for diff

M doc/RELEASE.md
M doc/resource/git-history.cache
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

PostgreSQL 9.4.23 commit log

Stamp 9.4.23.

commit   : a01e72fb69cb808364788b5360546f75cf2198df    
  
author   : Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 17 Jun 2019 17:26:08 -0400    
  
committer: Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 17 Jun 2019 17:26:08 -0400    

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

Translation updates

commit   : 5eaeea2cecb98161d41e11aff917c91177a8ad0c    
  
author   : Peter Eisentraut <peter@eisentraut.org>    
date     : Mon, 17 Jun 2019 14:45:16 +0200    
  
committer: Peter Eisentraut <peter@eisentraut.org>    
date     : Mon, 17 Jun 2019 14:45:16 +0200    

Click here for diff

PostgreSQL 9.5.18 commit log

Stamp 9.5.18.

commit   : 683c768cbb7adc18fa0be93e41a090a48b000225    
  
author   : Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 17 Jun 2019 17:23:53 -0400    
  
committer: Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 17 Jun 2019 17:23:53 -0400    

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

Translation updates

commit   : 944bf6b4df7d005de130e4d1c3a735788f89e5c3    
  
author   : Peter Eisentraut <peter@eisentraut.org>    
date     : Mon, 17 Jun 2019 14:46:50 +0200    
  
committer: Peter Eisentraut <peter@eisentraut.org>    
date     : Mon, 17 Jun 2019 14:46:50 +0200    

Click here for diff

PostgreSQL 9.6.14 commit log

Stamp 9.6.14.

commit   : 25cd1175fce691517c9e55311d9a1e4ecf930a32    
  
author   : Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 17 Jun 2019 17:21:22 -0400    
  
committer: Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 17 Jun 2019 17:21:22 -0400    

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

Last-minute updates for release notes.

commit   : 7dc3e28173b6d7527a24bb8a4e324137c7cfe9d2    
  
author   : Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 17 Jun 2019 10:53:45 -0400    
  
committer: Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 17 Jun 2019 10:53:45 -0400    

Click here for diff

PostgreSQL 10.9 commit log

Stamp 10.9.

commit   : cb4cb7401e12f5796a5e16fabddeffae3cac39b5    
  
author   : Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 17 Jun 2019 17:18:49 -0400    
  
committer: Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 17 Jun 2019 17:18:49 -0400    

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

Last-minute updates for release notes.

commit   : 8339895d8f797d8d1ccbd555937ed8cc727ea279    
  
author   : Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 17 Jun 2019 10:53:45 -0400    
  
committer: Tom Lane <tgl@sss.pgh.pa.us>    
date     : Mon, 17 Jun 2019 10:53:45 -0400    

Click here for diff