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
2020-11-19Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.0-rc42GitLab Bot
2020-09-19Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot
2020-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-05-20Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot
2019-08-12Add bitbucket_server/client_spec.rb specGeorge Koltsov
2019-07-26Add frozen_string_literal to spec/lib (part 1)Thong Kuah
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
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
2019-01-07Fix Bitbucket Server import only including first 25 pull requestsStan Hu
The change to paginate repos in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/22825 caused the paginator to stop after 25 pull requests because the limit was set to 25 if none was defined. To fix this, we should only stop if the limit has actually been set and use the limit parameter to determine the maximum number of items to process per page. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/55914
2018-11-07Paginate Bitbucket Server importer projectsStan Hu
To prevent delays in loading the page and reduce memory usage, limit the number of projects shown at 25 per page. Part of https://gitlab.com/gitlab-org/gitlab-ce/issues/50021
2018-08-01Deal with subpaths and trailing slashes properlyStan Hu
2018-07-31Track parental relationships in commentsStan Hu
2018-07-31Fix merge request SHAStan Hu
2018-07-29Fix failing spec in spec/lib/bitbucket_server/client_spec.rbStan Hu
2018-07-28Handle invalid JSON from serverStan Hu
2018-07-27Add Accept header for JSONStan Hu
2018-07-27Consolidate server errors and add specsStan Hu
2018-07-27Fix failing specsStan Hu
2018-07-27Use project key instead of project name for importsStan Hu
2018-07-26Add spec for pull request comments and add commentsStan Hu
2018-07-26Add pull request specStan Hu
2018-07-26Add specs for activity and commentsStan Hu
2018-07-25Fix tense of example descriptionStan Hu
2018-07-21Add spec for BitbucketServer::Representation::RepoStan Hu
2018-07-20Add spec for pagesStan Hu
2018-07-20Add spec for paginatorStan Hu
2018-07-19Fix URL for deleting branchesStan 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