1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-09-16 09:06:18 +02:00

v1.22: Fixed S3 Retry

Bug Fixes:

* Fixed authentication issue in S3 retry.
This commit is contained in:
David Steele
2017-08-09 11:50:02 -04:00
parent 61c38f5808
commit 84caca0f34
5 changed files with 305 additions and 299 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.21](https://github.com/pgbackrest/pgbackrest/releases/tag/release/1.21) is the current stable release. Release notes are on the [Releases](http://www.pgbackrest.org/release.html) page.
pgBackRest [v1.22](https://github.com/pgbackrest/pgbackrest/releases/tag/release/1.22) 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

@@ -163,7 +163,7 @@
</contributor-list>
<release-list>
<release date="XXXX-XX-XX" version="1.22dev" title="UNDER DEVELOPMENT">
<release date="2017-08-09" version="1.22" title="Fixed S3 Retry">
<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.22dev';
use constant BACKREST_VERSION => '1.22';
push @EXPORT, qw(BACKREST_VERSION);
# Format Format Number

View File

@@ -11,7 +11,7 @@ use AutoLoader;
our @ISA = qw(Exporter);
# Library version (add .999 during development)
our $VERSION = '1.22.999';
our $VERSION = '1.22';
sub libCVersion {return $VERSION};