1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2024-12-14 10:13:05 +02:00

v1.08: Bug Fixes and Log Improvements

Bug Fixes:

* Fixed an issue where local processes were not disconnecting when complete and could later timeout. (Reported by Todd Vernick.)
* Fixed an issue where the protocol layer could timeout while waiting for WAL segments to arrive in the archive. (Reported by Todd Vernick.)

Refactoring:

* Cache file log output until the file is created to create a more complete log.
This commit is contained in:
David Steele 2016-09-14 17:36:43 -05:00
parent 69c6afb1df
commit d98df8c8cf
4 changed files with 387 additions and 381 deletions

View File

@ -6,7 +6,7 @@ pgBackRest aims to be a simple, reliable backup and restore system that can seam
Instead of relying on traditional backup tools like tar and rsync, pgBackRest implements all backup features internally and uses a custom protocol for communicating with remote systems. Removing reliance on tar and rsync allows for better solutions to database-specific backup challenges. The custom remote protocol allows for more flexibility and limits the types of connections that are required to perform a backup which increases security.
pgBackRest [v1.07](https://github.com/pgbackrest/pgbackrest/releases/tag/release/1.07) is the current stable release. Release notes are on the [Releases](http://www.pgbackrest.org/release.html) page.
pgBackRest [v1.08](https://github.com/pgbackrest/pgbackrest/releases/tag/release/1.08) is the current stable release. Release notes are on the [Releases](http://www.pgbackrest.org/release.html) page.
## Features

File diff suppressed because it is too large Load Diff

View File

@ -114,7 +114,7 @@
</contributor-list>
<release-list>
<release date="XXXX-XX-XX" version="1.08dev" title="UNDER DEVELOPMENT">
<release date="2016-09-14" version="1.08" title="Bug Fixes and Log Improvements">
<release-core-list>
<release-bug-list>
<release-item>

View File

@ -35,7 +35,7 @@ use constant BACKREST_BIN => abs_path(
# Defines the current version of the BackRest executable. The version number is used to track features but does not affect what
# repositories or manifests can be read - that's the job of the format number.
#-----------------------------------------------------------------------------------------------------------------------------------
use constant BACKREST_VERSION => '1.07';
use constant BACKREST_VERSION => '1.08';
push @EXPORT, qw(BACKREST_VERSION);
# Format Format Number