-
Notifications
You must be signed in to change notification settings - Fork 642
Release 2.20.0 #565
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Release 2.20.0 #565
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
ac15b30
Use sentinel file to identify type of mysql backup
jianghao0718 452b692
We need to support legacy version of GHES without new import scripts
jianghao0718 dbbfc11
Add synbolic link for mocked ghe-import-mysql-xtrabackup and ghe-impo…
jianghao0718 b32ed4e
Merge pull request #532 from github/hao/mysql-binary-backup-sentinel
jianghao0718 03f3817
make sure the absence of audit_entries table is not fatal
juruen cba1574
Merge pull request #534 from github/juruen/audit-entries
juruen 8cb7d3a
Suffix existing script with '-rsync' to differentiate against incomin…
cainejette b2ed6b0
Add placeholder script 'ghe-backup-repositories-gitbackups'
cainejette b5691c7
Call backup-repositories script
cainejette 16bc3ec
Introduce fork in backup flow for backup mechanism
cainejette 6c36e99
Change ghe-ssh target from host to GHE_HOSTNAME
cainejette c7159e3
Update comments
cainejette add11d4
update permissions on backup script
da4321b
Log which mechanism is being used for repository backup
cainejette 30fb1d8
Protect against appliance not supporting gitbackups-powered repositor…
cainejette 5bed84c
Remove comment after confirming existing config setting is OK to re-use.
cainejette 566902e
Exit early if the appliance is set to use gitbackups for repositories…
cainejette 91f8cc2
Update bin/ghe-backup
oakeyc db977bb
Merge pull request #536 from github/gitbackups-for-backing-up
oakeyc 4df05f5
Allow specifying GH_BASE_BRANCH for release script
bfcd0d7
Add ghe- prefix to script
cainejette a9c2acb
Update test for script existence
cainejette 0ed5df9
Merge pull request #544 from github/release-base-branch
a664812
Merge branch 'master' into rename-script
cjonsmith 39f93a2
Merge pull request #545 from github/rename-script
cjonsmith fdb09ab
Bump version: 2.20.0 [ci skip]
886575b
Merge pull request #555 from github/release-2.20.0
thejandroman 7d92a0d
Revert "Bump version: 2.20.0"
thejandroman e0964c8
Merge pull request #559 from github/revert-555-release-2.20.0
thejandroman a2011c9
Bump version: 2.20.0 [ci skip]
7d00c77
Merge pull request #562 from github/release-2.20.0
thejandroman 87e2c73
Revert "Bump version: 2.20.0"
thejandroman c4fbaee
Merge pull request #563 from github/revert-562-release-2.20.0
thejandroman 894d733
Bump version: 2.20.0 [ci skip]
d342b5e
merge conflicts
oakeyc 262f739
Merge branch 'stable' into release-2.20.0
cainejette File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,6 +4,13 @@ github-backup-utils (2.19.4) UNRELEASED; urgency=medium | |
|
|
||
| -- Hao Jiang <[email protected]> Tue, 18 Feb 2020 17:54:31 +0000 | ||
|
|
||
| github-backup-utils (2.20.0) UNRELEASED; urgency=medium | ||
|
|
||
| * Fix `ghe-backup-repositories` performance for large instances #541 | ||
| * Fix two issues with binary backup (slow gzip compression and support for restore from instances other than SQL master) #551 | ||
|
|
||
| -- Alejandro Figueroa <[email protected]> Tue, 11 Feb 2020 20:47:17 +0000 | ||
|
|
||
| github-backup-utils (2.19.3) UNRELEASED; urgency=medium | ||
|
|
||
| * Fix two issues with binary backup (slow gzip compression and support for restore from instances other than SQL master) #551 | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
share/github-backup-utils/ghe-backup-repositories-gitbackups
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| #!/usr/bin/env bash | ||
| #/ Usage: ghe-backup-repositories-gitbackups | ||
| #/ Take an online, incremental snapshot of all Git repository, wiki, and gist data using gitbackups. | ||
| #/ | ||
| #/ Note: This command typically isn't called directly. It's invoked by | ||
| #/ ghe-backup. | ||
| set -e | ||
|
|
||
| # Bring in the backup configuration | ||
| # shellcheck source=share/github-backup-utils/ghe-backup-config | ||
| . "$( dirname "${BASH_SOURCE[0]}" )/ghe-backup-config" | ||
|
|
||
| bm_start "$(basename $0)" | ||
|
|
||
| echo "github-env ./bin/ghe-backup-repositories" | ghe-ssh "$GHE_HOSTNAME" -- /bin/bash | ||
|
|
||
| bm_end "$(basename $0)" |
4 changes: 2 additions & 2 deletions
4
...thub-backup-utils/ghe-backup-repositories → ...ackup-utils/ghe-backup-repositories-rsync
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 2.19.4 | ||
| 2.20.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be 2.20?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nope. We support N-2 releases like we do for GHES upgrades as we need to support migrations.