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
2021-09-20Add latest changes from gitlab-org/gitlab@14-3-stable-eev14.3.0-rc42GitLab Bot
2021-08-19Add latest changes from gitlab-org/gitlab@14-2-stable-eev14.2.0-rc42GitLab Bot
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-01-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-16Add latest changes from gitlab-org/gitlab@masterogolowinski-master-patch-80898GitLab Bot
2019-12-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-04Avoid calling freeze on already frozen strings in lib/gitlabdineshpanda
2019-05-06Fix issuables state_id nil when importing projects from GitHubFelipe Artur
Issues and merge requests imported from GitHub are having state_id set to null. This fixes the GitHub project importer and schedule migrations to fix state_id.
2019-03-13Run rubocop -aNick Thomas
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-01-19Fix import handling errors in Bitbucket Server importerStan Hu
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/20724 removed `Gitlab::Git::RepositoryMirroring::RemoteError`, but this was still being handled in the Bitbucket Server importer and only encountered if some exception other than `Gitlab::Shell::Error` were thrown.
2018-12-06Remove unnecessary includes of ShellAdapterStan Hu
Determined by running the script: ``` included = `git grep --name-only ShellAdapter`.chomp.split("\n") used = `git grep --name-only gitlab_shell`.chomp.split("\n") included - used ```
2018-11-27Removes all the irrelevant import related code and columnsTiago Botelho
Clears the import related columns and code from the Project model over to the ProjectImportState model
2018-10-13Enable some frozen string in lib/gitlabgfyoung
Enable frozen string for the following files: * lib/gitlab/auth/**/*.rb * lib/gitlab/badge/**/*.rb * lib/gitlab/bare_repository_import/**/*.rb * lib/gitlab/bitbucket_import/**/*.rb * lib/gitlab/bitbucket_server_import/**/*.rb * lib/gitlab/cache/**/*.rb * lib/gitlab/checks/**/*.rb Partially addresses #47424.
2018-09-11Disable existing offenses for the CodeReuse copsYorick Peterse
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
2018-08-30Add JSON logging for Bitbucket Server importerStan Hu
Adds an importer.log so that it's easier to track what's happening with the import.
2018-08-26Bitbucket Server importer: Eliminate most idle-in-transaction issuesStan Hu
Just like with the GitHub importer, the Bitbucket Server importer can hit the default 60 s idle-in-transaction timeouts if it takes too long to create the merge request. We solve this by using the same approach as the GitHub importer: 1. Bypass all validation and hooks in creating a merge request 2. Insert the Git data in a separate transaction Part of #50021
2018-08-03Remove date from author line since that is already present in `created_at`Stan Hu
2018-08-03Add a comment when user can't be identifiedStan Hu
2018-08-01Fix failing spec in fallback diff note changeStan Hu
2018-08-01Improve formatting of fallback diff noteStan Hu
2018-08-01Fix bug where fallback diff notes would not have an associated positionStan Hu
2018-07-31Handle empty description fieldStan Hu
2018-07-31Give some context on threaded discussionsStan Hu
2018-07-31Fix Rubocop complaint about update_attributesStan Hu
2018-07-31Fix merge request SHAStan Hu
2018-07-31No need to look up commit SHA since Bitbucket has a full-length SHAStan Hu
2018-07-29Restrict to confirmed users and allow memoization of unkonwn e-mailsStan Hu
2018-07-21Remove merge request deletion codeStan Hu
2018-07-20Disable recovery of missing SHAs by defaultStan Hu
2018-07-19Fix and clean up code for deleting branchesStan Hu
2018-07-18Improve formatting of diff notes that could not be importedStan Hu
2018-07-18Some formatting cleanupStan Hu
2018-07-18Fallback to creating a note if DiffNote fails to importStan Hu
2018-07-18Code cleanup and test threaded discussionsStan Hu
2018-07-17Simplify user lookupsStan Hu
2018-07-17Remove unneeded methodStan Hu
2018-07-16Add tests for pull request commentsStan Hu
2018-07-16Fix assorted bugs and write spec for importing merge eventStan Hu
2018-07-14Delete temporary branches after an importStan Hu
2018-07-13Make Connection#post consistent with Connection#get and add specsStan Hu
2018-07-13Use browse URL of project to link importsStan Hu
2018-07-06Batch re-creating branches and fetching the remoteStan Hu
2018-07-06Reduce number of API requests and fix merge request eventsStan Hu
2018-07-04Assign merge event to ghost user if committer cannot be foundStan Hu
2018-07-04Support creating a remote branch to import closed pull requestsStan Hu