From cdfe159d9b95c0c66167b6d2ea90ad510fcde98f Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Thu, 22 Jan 2015 09:44:54 +0530 Subject: [PATCH 1/2] gitlab-shell: upgrade to v.2.4.1 --- Changelog.md | 1 + assets/setup/install | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index f1f02e39..a9cb3c29 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,6 +4,7 @@ - init: added GOOGLE_ANALYTICS_ID configuration option - added support for mantis issue tracker - fixed log rotation configuration +- gitlab-shell: upgrade to v.2.4.1 **7.6.2** - gitlab: upgrade to CE v.7.6.2 diff --git a/assets/setup/install b/assets/setup/install index 0e018c41..c16ccf48 100755 --- a/assets/setup/install +++ b/assets/setup/install @@ -2,7 +2,7 @@ set -e GITLAB_VERSION=7.6.2 -GITLAB_SHELL_VERSION=2.4.0 +GITLAB_SHELL_VERSION=2.4.1 GITLAB_HOME="/home/git" GITLAB_INSTALL_DIR="${GITLAB_HOME}/gitlab" From 6454576910d75b195c2e53036ee5e815984f421a Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Thu, 22 Jan 2015 09:45:29 +0530 Subject: [PATCH 2/2] gitlab: upgrade to CE v.7.7.0 --- Changelog.md | 1 + VERSION | 2 +- assets/config/gitlabhq/gitlab.yml | 14 ++++++++++++++ assets/setup/install | 2 +- 4 files changed, 17 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index a9cb3c29..d3e49f94 100644 --- a/Changelog.md +++ b/Changelog.md @@ -5,6 +5,7 @@ - added support for mantis issue tracker - fixed log rotation configuration - gitlab-shell: upgrade to v.2.4.1 +- gitlab: upgrade to CE v.7.7.0 **7.6.2** - gitlab: upgrade to CE v.7.6.2 diff --git a/VERSION b/VERSION index e81e85b8..1985849f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -7.6.2 +7.7.0 diff --git a/assets/config/gitlabhq/gitlab.yml b/assets/config/gitlabhq/gitlab.yml index bb9054b6..e6b4601b 100644 --- a/assets/config/gitlabhq/gitlab.yml +++ b/assets/config/gitlabhq/gitlab.yml @@ -304,6 +304,20 @@ production: &base # ![Company Logo](http://www.companydomain.com/logo.png) # [Learn more about CompanyName](http://www.companydomain.com/) + rack_attack: + git_basic_auth: + # Whitelist requests from 127.0.0.1 for web proxies (NGINX/Apache) with incorrect headers + # ip_whitelist: ["127.0.0.1"] + # + # Limit the number of Git HTTP authentication attempts per IP + # maxretry: 10 + # + # Reset the auth attempt counter per IP after 60 seconds + # findtime: 60 + # + # Ban an IP for one hour (3600s) after too many auth attempts + # bantime: 3600 + development: <<: *base diff --git a/assets/setup/install b/assets/setup/install index c16ccf48..09e4ffdc 100755 --- a/assets/setup/install +++ b/assets/setup/install @@ -1,7 +1,7 @@ #!/bin/bash set -e -GITLAB_VERSION=7.6.2 +GITLAB_VERSION=7.7.0 GITLAB_SHELL_VERSION=2.4.1 GITLAB_HOME="/home/git"