fix changelog and merge

This commit is contained in:
James Lopez 2016-05-23 09:11:21 +02:00
parent 6e3df42ca3
commit d83ce65c1a
2 changed files with 4 additions and 2 deletions

View File

@ -83,9 +83,11 @@ v 8.8.0
- Allows MR authors to have the source branch removed when merging the MR. !2801 (Jeroen Jacobs)
- When creating a .gitignore file a dropdown with templates will be provided
v 8.7.7
- Fix import by `Any Git URL` broken if the URL contains a space
v 8.7.6
- Fix links on wiki pages for relative url setups. !4131 (Artem Sidorenko)
- Fix import by `Any Git URL` broken if the URL contains a space
- Fix import from GitLab.com to a private instance failure. !4181
- Fix external imports not finding the import data. !4106

View File

@ -7,7 +7,7 @@ module Gitlab
end
def initialize(url, credentials: nil)
@url = Addressable::URI.parse(URI.encode(url))
@url = Addressable::URI.parse(url)
@credentials = credentials
end