Commit 138e7757 authored by Rubén Dávila's avatar Rubén Dávila

Update CHANGELOG and GITLAB_SHELL_VERSION.

* Also fixed couple of small bugs introduced with last changes
parent 0dcfff08
......@@ -33,6 +33,7 @@ v 8.7.0 (unreleased)
- API: Expose user location (Robert Schilling)
- ClosingIssueExtractor regex now also works with colons. e.g. "Fixes: #1234" !3591
- Update number of Todos in the sidebar when it's marked as "Done". !3600
- Add ability to sync to remote mirrors. !249
v 8.6.5
- Fix importing from GitHub Enterprise. !3529
......@@ -81,6 +82,9 @@ v 8.6.2
- Gracefully handle notes on deleted commits in merge requests (Stan Hu). !3402
- Fixed issue with notification settings not saving. !3452
v 8.6.2 (unreleased)
- Comments on confidential issues don't show up in activity feed to non-members
v 8.6.1
- Add option to reload the schema before restoring a database backup. !2807
- Display navigation controls on mobile. !3214
......@@ -172,7 +176,6 @@ v 8.5.8
v 8.5.7
- Bump Git version requirement to 2.7.3
- Add ability to sync to remote mirrors.
v 8.5.6
- Obtain a lease before querying LDAP
......
......@@ -144,7 +144,7 @@ class RemoteMirror < ActiveRecord::Base
def refresh_remote
project.repository.remove_remote(ref_name)
project.repository.add_remote(ref_name, full_url)
project.repository.add_remote(ref_name, url)
end
def remove_remote
......
......@@ -60,7 +60,7 @@ module Gitlab
next if name =~ /\^\{\}\Z/
[name, target]
end
end.compact
Hash[*tags_with_targets]
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment