Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-02-17Fix BitbucketServer::Client failing with Webmock 3.5.1Stan Hu
Webmock 3.1.0 changed the behavior to return `nil` for the body if an HTTP 204 No Content response were received (https://github.com/bblimke/webmock/commit/b837e642782501a6904d0cb1aad391dd6f49ada3). Update the Bitbucket Server connection to ignore these No Content response codes.
2019-01-13Fix Bitbucket Server importer error handlingStan Hu
The importer would display a 500 error page if you attempted to import using a non-existent DNS entry. This commit rescues known network issues and consolidates them into BitbucketServer::Connection::ConnectionError`. The previous error handling in the paginator doesn't work because it returns a lazy collection. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/56154
2018-11-10Make sure there's only one slash as path separatorStan Hu
In Ruby 2.4, `URI.join("http://test//", "a").to_s` will remove the double slash, however it's not the case in Ruby 2.5. Using chomp should work better for the intention, as we're not trying to allow things like ../ or / paths resolution. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/53180
2018-08-01Assorted Bitbucket Server importer code cleanup based on reviewStan Hu
2018-08-01Deal with subpaths and trailing slashes properlyStan Hu
2018-07-31Use URI.join to avoid slash headachesStan Hu
2018-07-31Hide error details if there are noneStan Hu
2018-07-28Handle invalid JSON from serverStan Hu
2018-07-27Add Accept header for JSONStan Hu
2018-07-25Enable frozen_string_literalStan Hu
2018-07-19Fix URL for deleting branchesStan Hu
2018-07-18Fix identation in lib/bitbucket_server/connection.rbStan Hu
2018-07-14Add support for deleting branches via the Bitbucket Server APIStan Hu
2018-07-13Make Connection#post consistent with Connection#get and add specsStan Hu
2018-07-13Add spec for BitbucketServer::ConnectionStan Hu
2018-07-06Fix paginationStan Hu
2018-07-06Improve error handling of Bitbucket login errorsStan Hu
2018-07-04Support creating a remote branch to import closed pull requestsStan Hu
2018-07-01Add a Reconfigure button and improve layout of import screenStan Hu
2018-06-26More work towards supporting Bitbucket ServerStan Hu
2018-06-25WIP: Add support for Bitbucket Server importsStan Hu