diff options
author | Rémy Coutable <remy@rymai.me> | 2016-06-01 16:44:39 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2016-06-14 10:07:37 +0200 |
commit | 2f7b2057f25d4390d063e4c4fce3f4f12ea58463 (patch) | |
tree | 23b98857a3af6846e35389791750e431083fdae9 /CHANGELOG | |
parent | 17c32ee8d0b2dafa61b3f509d48f7ee8a8dbea14 (diff) | |
download | gitlab-ce-2f7b2057f25d4390d063e4c4fce3f4f12ea58463.tar.gz |
Fix broken URI joining for `teamcity_url` with suffixes
If one had configured a `teamcity_url` like http://foo.bar/teamcity in
the previous implementation the plugin directed it's request i.e. to
http://foo.bar/httpAuth/... instead of http://foo.bar/teamcity/httpAuth/...
`URI.join` only works correctly, if the prefix URL has
- at least one or more trailing '/'
- the appended parts are _not_ prefixed with '/'
The current implementation should work with all sorts of TeamCity base
URLs.
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'CHANGELOG')
-rw-r--r-- | CHANGELOG | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG index bba6991f184..3d46901ba69 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -39,6 +39,7 @@ v 8.9.0 (unreleased) - Fix issues filter when ordering by milestone - Added artifacts:when to .gitlab-ci.yml - this requires GitLab Runner 1.3 - Bamboo Service: Fix missing credentials & URL handling when base URL contains a path (Benjamin Schmid) + - TeamCity Service: Fix URL handling when base URL contains a path - Todos will display target state if issuable target is 'Closed' or 'Merged' - Fix bug when sorting issues by milestone due date and filtering by two or more labels - Add support for using Yubikeys (U2F) for two-factor authentication |