You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2026-05-22 10:15:16 +02:00
Set version to 0.75
This commit is contained in:
@@ -698,6 +698,10 @@ example: db-path=/data/db
|
||||
|
||||
## Release Notes
|
||||
|
||||
### v0.75: IN DEVELOPMENT: enterprise features: monitoring, throttling, retention period
|
||||
|
||||
* Asynchronous archive-get. This will make recovery much faster when restoring old backups with a lot of WAL replay or when a replica gets very far behind.
|
||||
|
||||
### v0.61: bug fix for uncompressed remote destination
|
||||
|
||||
* Fixed a buffering error that could occur on large, highly-compressible files when copying to an uncompressed remote destination. The error was detected in the decompression code and resulted in a failed backup rather than corruption so it should not affect successful backups made with previous versions.
|
||||
|
||||
@@ -656,6 +656,14 @@ Run a <id>full</id> backup on the <id>db</id> stanza. <param>--type</param> can
|
||||
|
||||
<release title="Release Notes">
|
||||
<release-version-list>
|
||||
<release-version version="0.75" title="IN DEVELOPMENT: enterprise features: monitoring, throttling, retention period">
|
||||
<release-feature-bullet-list>
|
||||
<release-feature>
|
||||
<text>Asynchronous archive-get. This will make recovery much faster when restoring old backups with a lot of WAL replay or when a replica gets very far behind.</text>
|
||||
</release-feature>
|
||||
</release-feature-bullet-list>
|
||||
</release-version>
|
||||
|
||||
<release-version version="0.61" title="bug fix for uncompressed remote destination">
|
||||
<release-feature-bullet-list>
|
||||
<release-feature>
|
||||
|
||||
@@ -60,7 +60,6 @@ use constant
|
||||
|
||||
push @EXPORT, qw(BACKUP_TYPE_FULL BACKUP_TYPE_DIFF BACKUP_TYPE_INCR);
|
||||
|
||||
|
||||
####################################################################################################################################
|
||||
# SOURCE Constants
|
||||
####################################################################################################################################
|
||||
@@ -1710,7 +1709,7 @@ sub optionRemote
|
||||
####################################################################################################################################
|
||||
# remoteDestroy
|
||||
#
|
||||
# Undefined the remote if it is stored locally.
|
||||
# Undefine the remote if it is stored locally.
|
||||
####################################################################################################################################
|
||||
sub remoteDestroy
|
||||
{
|
||||
|
||||
@@ -880,7 +880,6 @@ sub binary_xfer
|
||||
$iBlockSize = 0;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
while ($iBlockSize > 0);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user