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-09-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-12Fix create MR from issue using a tag as ref🙈 jacopo beschi 🙉
Creating a MR from an issue using a tag as ref correctly creates the source branch starting from the tag.
2019-09-11Enables Run Pipeline button to be renderedFilipa Lacerda
In the Merge Request view, under pipelines tab the user can see a run pipeline button Adds axios post request to button click Adds the logic to handle the user click, refresh the table and disable the button while thee request is being made Updates UI for desktop and mobile Adds specs Regenerates potfile Follow-up after review Uses .finally to avoid code repetition
2019-09-11Prevent archived projects from showing up in global searchDavid Palubin
2019-09-10Remove ignore_column occurence in CE codeDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2019-09-10Merge branch 'fj-62807-not-prefill-target-branch' into 'master'Lin Jen-Shin
Avoid filling target branch when unknown and source is default branch Closes #62807 See merge request gitlab-org/gitlab-ce!32701
2019-09-10Avoid setting merge request target branch when source if default branchFrancisco Javier López
In case the source and the target project are the same, the source branch is the default branch, and the target branch is not present, we will avoid prefilling the target branch with the repository default branch. Letting the user decide.
2019-09-09Passing job:rules downstream and E2E specs for job:rules configurationdrew
2019-09-06Only show `/copy_metadata` when usableLee Tickett
2019-09-06Merge branch 'sh-add-sidekiq-logging-for-bad-ci' into 'master'Grzegorz Bizon
Log errors for failed pipeline creation in PostReceive See merge request gitlab-org/gitlab-ce!32633
2019-09-06Merge branch 'ce-detect-github-pull-requests' into 'master'Kamil Trzciński
Port CreateGithubPullRequestEvents migration from EE See merge request gitlab-org/gitlab-ce!31802
2019-09-06Log errors for failed pipeline creation in PostReceiveStan Hu
When a pipeline fails to create in `PostReceive`, the error is silently discarded, making it difficult to understand why a pipeline was not created. We now add a Sidekiq warning message for this. Adding a Sentry exception when this happens would generate a lot of noise for invalid CI files. Relates to https://gitlab.com/gitlab-org/gitlab-ee/issues/14720
2019-09-06Merge branch 'add-label-push-opts' into 'master'Ash McKenzie
Support adding and removing labels w/ push opts Closes #5942 See merge request gitlab-org/gitlab-ce!31831
2019-09-05Merge branch 'group_level_jupyterhub' into 'master'Robert Speicher
Group level JupyterHub See merge request gitlab-org/gitlab-ce!32512
2019-09-05CE port for pipelines for external pull requestsFabio Pitino
Detect if pipeline runs for a GitHub pull request When using a mirror for CI/CD only we register a pull_request webhook. When a pull_request webhook is received, if the source branch SHA matches the actual head of the branch in the repository we create immediately a new pipeline for the external pull request. Otherwise we store the pull request info for when the push webhook is received. When using "only/except: external_pull_requests" we can detect if the pipeline has a open pull request on GitHub and create or not the job based on that.
2019-09-05New interruptible attribute supported in YAML parsing.Cédric Tabin
Since it is not possible to dynamically detect if a job is automatically cancellable or not, a this new attribute is necessary. Moreover, it let the maintainer of the repo to adjust the behaviour of the auto cancellation feature to match exactly what he needs.
2019-09-05Bring method back that was mistakenly removedJoão Cunha
- We're also improving specs to avoid this could happen again
2019-09-05Allow group install of JupyterHubJames Fargher
Removes limitations on cluster types that can install JupyterHub
2019-09-04Show meaningful message on /due quick action with invalid date🙈 jacopo beschi 🙉
When using /due quick action with an invalid date a meaninful error message is shown.
2019-09-04Add service to transfer group milestonesEugenia Grieff
- Add new service that transfers milestones from a group to a project - Include new service in Projects transfer service - Include FromUnion module in Milestone model to use in transfer service - Add specs for new milestones service - Add specs for transferring milestones in project transfer service
2019-09-04Merge branch 'osw-record-repo-push-events' into 'master'James Lopez
Backport EE "Track repository pushes as audit events" See merge request gitlab-org/gitlab-ce!32304
2019-09-04Merge branch 'persist-needs-error' into 'master'Grzegorz Bizon
Persist `needs:` validation as config error See merge request gitlab-org/gitlab-ce!32648
2019-09-04Backport "Track repository pushes as audit events"Oswaldo Ferreira
2019-09-04Persist `needs:` validation as config errorKamil Trzciński
In case when `needs:` is missing, but when requested by service, we would not save the pipeline with config_error. This makes it explicit that we want to persist the error as `config_error` failure reason.
2019-09-04Support adding and removing labels w/ push optsChristian Couder
MergeRequests::PushOptionsHandlerService has been updated to allow adding and removing labels to a merge request using git push options. To create a new merge request and add 2 labels to it: git push -u origin -o merge_request.create \ -o merge_request.label="My label 1" \ -o merge_request.label="My label 2" To update an existing merge request and remove a label while adding a different label: git push -u origin -o merge_request.label="My added label" \ -o merge_request.unlabel="My removed label" Issue https://gitlab.com/gitlab-org/gitlab-ce/issues/64320
2019-09-03Merge branch '66741-remove-spec-rails_helper-rb' into 'master'Grzegorz Bizon
Remove spec/rails_helper.rb Closes #66741 See merge request gitlab-org/gitlab-ce!32380
2019-09-03Added relationships between Release and MilestoneEtienne Baqué
Modified schema via migrations. Added one-to-one relationship between the two models. Added changelog file
2019-09-03Merge branch 'change-role-system-hook' into 'master'Rémy Coutable
Add system hooks for project/group membership updates Closes gitlab-ee#12252 See merge request gitlab-org/gitlab-ce!32371
2019-09-03If user can push to docker then it can delete tooGiorgenes Gelatti
Extends the permission of $CI_REGISTRY_USER to allow them to delete tags in addition to just pushing. https://gitlab.com/gitlab-org/gitlab-ce/issues/40096
2019-09-03Add system hooks for project/group membership updatesBrandon Williams
When updating group and project members, new system hooks `user_update_for_group` and `user_update_for_team` will be executed. Fixes https://gitlab.com/gitlab-org/gitlab-ee/issues/12252
2019-09-02Add X-GitLab-NotificationReason header to note emailsSean McGivern
The 'assigned' reason doesn't apply to notes, but the other two can ('mentioned' and 'own_activity'), so we can still use this for note emails.
2019-09-02Merge branch '46686-move-k8s-services-out-of-gcp-namespace' into 'master'Thong Kuah
Move generic k8s services out of GCP namespace See merge request gitlab-org/gitlab-ce!32310
2019-08-31Limit access request email to 10 most recently active owners/maintainersManoj MJ
This change limits the number of emails for new access requests notifications to 10 most recently active owners/maintainers
2019-08-30Allow be_url to specify the typeAlex Kalderimis
This allows the be_url matcher to be more specific. By default, it only matches HTTP and HTTPS URIs.