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-09-19Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot
2020-08-20Add latest changes from gitlab-org/gitlab@13-3-stable-eeGitLab Bot
2019-10-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-12Add changelog entryGeorge Koltsov
2019-08-12Add BitBucketServerImport project filteringGeorge Koltsov
2019-05-20Fix typos in the whole gitlab-ce projectYoginth
2019-03-06Adds the Rubocop ReturnNil copAndrew Newdigate
This style change enforces `return if ...` instead of `return nil if ...` to save maintainers a few minor review points
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-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-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-03Use a case statement to determine pull request stateStan Hu
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-31Track parental relationships in commentsStan Hu
2018-07-31Fix merge request SHAStan Hu
2018-07-29Use raw_commentStan Hu
2018-07-29Use a class method to consolidate timestamp conversionStan 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-27Use project key instead of project name for importsStan Hu
2018-07-26Fix failing specStan Hu
2018-07-26Add comment about why using `first`Stan Hu
2018-07-26Add spec for pull request comments and add commentsStan Hu
2018-07-26Clean up implementationStan Hu
2018-07-26Add spec for pull request activityStan Hu
2018-07-25Enable frozen_string_literalStan Hu
2018-07-21Add spec for BitBucketServer pull reuest parsingStan Hu
2018-07-21Add spec for BitbucketServer::Representation::RepoStan 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-13Use browse URL of project to link importsStan Hu
2018-07-11Add missing fileStan Hu
2018-07-06Fix paginationStan Hu
2018-07-06Fix Rubocop errorsStan 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-01Fix URL link in Bitbucket statusStan Hu
2018-07-01Add a Reconfigure button and improve layout of import screenStan Hu
2018-06-29Fix Rubocop complaintsStan Hu
2018-06-29Prune unused codeStan Hu
2018-06-29Add missing fileStan Hu
2018-06-28Fix generation of diff line positionsStan Hu