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
2022-01-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-01-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-10-28Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-08-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-08-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-08-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-07-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-07-28Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-06-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-06-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-04-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-04-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-03-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-03-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-02-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-02-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-01-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-01-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-11-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-28Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-11Add source and merge_request fields to pipeline event webhookBian Jiaping
2019-08-13Reduce Gitaly calls in PostReceiveStan Hu
This commit reduces I/O load and memory utilization during PostReceive for the common case when no project hooks or services are set up. We saw a Gitaly N+1 issue in `CommitDelta` when many tags or branches are pushed. We can reduce this overhead in the common case because we observe that most new projects do not have any Web hooks or services, especially when they are first created. Previously, `BaseHooksService` unconditionally iterated through the last 20 commits of each ref to build the `push_data` structure. The `push_data` structured was used in numerous places: 1. Building the push payload in `EventCreateService` 2. Creating a CI pipeline 3. Executing project Web or system hooks 4. Executing project services 5. As the return value of `BaseHooksService#execute` 6. `BranchHooksService#invalidated_file_types` We only need to generate the full `push_data` for items 3, 4, and 6. Item 1: `EventCreateService` only needs the last commit and doesn't actually need the commit deltas. Item 2: In addition, `Ci::CreatePipelineService` only needed a subset of the parameters. Item 5: The return value of `BaseHooksService#execute` also wasn't being used anywhere. Item 6: This is only used when pushing to the default branch, so if many tags are pushed we can save significant I/O here. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/65878 Fic
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-06-20Fix label serialisation in issue and note hooksSean McGivern
We were not calling hook_attrs on the labels correctly. Specs were passing because the issues under test did not have any labels!
2019-06-10Adding labels to note event payload.Sujay Patel
2019-05-28Use source ref for pipeline webhookShinya Maeda
When user uses Pipelines for merge requests, the pipeline is a run on a merge request ref instead of branch ref. However, we should send source ref as a webhook in order to respect the original behavior.
2019-05-02Update deployment chat message notificationJason Goodman
Include link to user and commit title. Rearrange text
2019-04-29Merge branch 'use-keyword-args-for-databuilder-push' into 'master'Douglas Barbosa Alexandre
Use keyword args for databuilder push See merge request gitlab-org/gitlab-ce!24088
2019-04-27Add deployment events to chat notification servicesJason Goodman
This enables sending a chat message to Slack or Mattermost upon a successful, failed, or canceled deployment
2019-04-25Use all keyword args for DataBuilder::Push.build()Jonathon Reinhart
2019-01-31Fix private user email being visible in tag webhooksLuke Duncalfe
Fixes #54721
2019-01-31Prefer build() rather than create()Luke Duncalfe
2019-01-29Re-enable MethodCallWithoutArgsParentheses CopAndrew Newdigate
Re-enables and autocorrects all instances of the Style/MethodCallWithoutArgsParentheses rule