Commit 7101b22c2efac40d4454a887a602ff46288d66fc
1 parent
8ddb064b
Exists in
master
and in
4 other branches
Recommend gitlab-shell 1.7.9 in docs and check task
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Showing
10 changed files
with
10 additions
and
10 deletions
Show diff stats
doc/install/installation.md
| ... | ... | @@ -149,7 +149,7 @@ GitLab Shell is an ssh access and repository management software developed speci |
| 149 | 149 | cd gitlab-shell |
| 150 | 150 | |
| 151 | 151 | # switch to right version |
| 152 | - sudo -u git -H git checkout v1.7.8 | |
| 152 | + sudo -u git -H git checkout v1.7.9 | |
| 153 | 153 | |
| 154 | 154 | sudo -u git -H cp config.yml.example config.yml |
| 155 | 155 | ... | ... |
doc/update/5.1-to-5.4.md
| ... | ... | @@ -31,7 +31,7 @@ sudo -u git -H git checkout 5-4-stable # Latest version of 5-4-stable addresses |
| 31 | 31 | ```bash |
| 32 | 32 | cd /home/git/gitlab-shell |
| 33 | 33 | sudo -u git -H git fetch |
| 34 | -sudo -u git -H git checkout v1.7.8 # Addresses multiple critical security vulnerabilities | |
| 34 | +sudo -u git -H git checkout v1.7.9 # Addresses multiple critical security vulnerabilities | |
| 35 | 35 | ``` |
| 36 | 36 | |
| 37 | 37 | ### 4. Install libs, migrations, etc. | ... | ... |
doc/update/5.1-to-6.0.md
doc/update/5.3-to-5.4.md
| ... | ... | @@ -30,7 +30,7 @@ sudo -u git -H git checkout 5-4-stable # Latest version of 5-4-stable addresses |
| 30 | 30 | ```bash |
| 31 | 31 | cd /home/git/gitlab-shell |
| 32 | 32 | sudo -u git -H git fetch |
| 33 | -sudo -u git -H git checkout v1.7.8 # Addresses multiple critical security vulnerabilities | |
| 33 | +sudo -u git -H git checkout v1.7.9 # Addresses multiple critical security vulnerabilities | |
| 34 | 34 | ``` |
| 35 | 35 | |
| 36 | 36 | ### 4. Install libs, migrations, etc. | ... | ... |
doc/update/5.4-to-6.0.md
doc/update/6.0-to-6.1.md
doc/update/6.0-to-6.2.md
| ... | ... | @@ -47,7 +47,7 @@ sudo apt-get install logrotate |
| 47 | 47 | ```bash |
| 48 | 48 | cd /home/git/gitlab-shell |
| 49 | 49 | sudo -u git -H git fetch |
| 50 | -sudo -u git -H git checkout v1.7.8 # Addresses multiple critical security vulnerabilities | |
| 50 | +sudo -u git -H git checkout v1.7.9 # Addresses multiple critical security vulnerabilities | |
| 51 | 51 | ``` |
| 52 | 52 | |
| 53 | 53 | ### 5. Install libs, migrations, etc. | ... | ... |
doc/update/6.1-to-6.2.md
| ... | ... | @@ -32,7 +32,7 @@ sudo -u git -H git checkout 6-2-stable # Latest version of 6-2-stable addresses |
| 32 | 32 | ```bash |
| 33 | 33 | cd /home/git/gitlab-shell |
| 34 | 34 | sudo -u git -H git fetch |
| 35 | -sudo -u git -H git checkout v1.7.8 # Addresses multiple critical security vulnerabilities | |
| 35 | +sudo -u git -H git checkout v1.7.9 # Addresses multiple critical security vulnerabilities | |
| 36 | 36 | ``` |
| 37 | 37 | |
| 38 | 38 | ### 4. Install additional packages | ... | ... |
doc/update/patch_versions.md
lib/tasks/gitlab/check.rake
| ... | ... | @@ -736,7 +736,7 @@ namespace :gitlab do |
| 736 | 736 | end |
| 737 | 737 | |
| 738 | 738 | def check_gitlab_shell |
| 739 | - required_version = Gitlab::VersionInfo.new(1, 7, 8) | |
| 739 | + required_version = Gitlab::VersionInfo.new(1, 7, 9) | |
| 740 | 740 | current_version = Gitlab::VersionInfo.parse(gitlab_shell_version) |
| 741 | 741 | |
| 742 | 742 | print "GitLab Shell version >= #{required_version} ? ... " | ... | ... |