Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/ghe-host-check
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ fi

# backup-utils 2.13 onwards limits support to the current and previous two releases
# of GitHub Enterprise Server.
supported_minimum_version="2.18.0"
supported_minimum_version="2.19.0"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe we also need to update the comment?

backup-utils 2.13


if [ "$(version $version)" -ge "$(version $supported_minimum_version)" ]; then
supported=1
Expand Down
12 changes: 12 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
github-backup-utils (2.21.0) UNRELEASED; urgency=medium

* Introduce option to skip restoring of audit logs #596
* Beta: Execute ghe-backup tasks in parallel #597
* Beta: Execute ghe-restore tasks in parallel #601
* Run repositories restore in parallel #603
* Fix mismatched `bm_start` and `bm_end` commands #607
* remove rsync restore method used by GHES versions prior to 2.13 #608
* Output MySQL backup strategy for clarity during backup and restore #610

-- Hao Jiang <[email protected]> Tue, 09 Jun 2020 16:54:06 +0000

github-backup-utils (2.19.5) UNRELEASED; urgency=medium

* In legacy mode we should use ghe-import-mysql #581
Expand Down
2 changes: 1 addition & 1 deletion script/cibuild
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -e
# place with this version at the beginning of each test and many commands have
# conditional logic based on the remote version. Running the suite against
# different major versions ensures we're covering these conditional paths.
REMOTE_VERSIONS="2.18.0 2.20.0"
REMOTE_VERSIONS="2.19.0 2.21.0"

# Enable verbose logging of ssh commands
export GHE_VERBOSE_SSH=true
Expand Down
2 changes: 1 addition & 1 deletion share/github-backup-utils/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.20.2
2.21.0
2 changes: 1 addition & 1 deletion test/testlib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export GHE_BACKUP_CONFIG GHE_DATA_DIR GHE_REMOTE_DATA_DIR GHE_REMOTE_ROOT_DIR

# The default remote appliance version. This may be set in the environment prior
# to invoking tests to emulate a different remote vm version.
: ${GHE_TEST_REMOTE_VERSION:=2.20.0}
: ${GHE_TEST_REMOTE_VERSION:=2.21.0}
export GHE_TEST_REMOTE_VERSION

# Source in the backup config and set GHE_REMOTE_XXX variables based on the
Expand Down