summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/data_builder
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@15-8-stable-eev15.8.0-rc42GitLab Bot2023-01-181-5/+7
|
* Add latest changes from gitlab-org/gitlab@15-7-stable-eev15.7.0-rc42GitLab Bot2022-12-201-3/+5
|
* Add latest changes from gitlab-org/gitlab@15-6-stable-eev15.6.0-rc42GitLab Bot2022-11-172-34/+65
|
* Add latest changes from gitlab-org/gitlab@15-5-stable-eev15.5.0-rc42GitLab Bot2022-10-201-0/+1
|
* Add latest changes from gitlab-org/gitlab@15-4-stable-eev15.4.0-rc42GitLab Bot2022-09-192-18/+16
|
* Add latest changes from gitlab-org/gitlab@15-3-stable-eev15.3.0-rc42GitLab Bot2022-08-184-2/+26
|
* Add latest changes from gitlab-org/gitlab@15-2-stable-eev15.2.0-rc42GitLab Bot2022-07-202-5/+16
|
* Add latest changes from gitlab-org/gitlab@15-1-stable-eev15.1.0-rc42GitLab Bot2022-06-201-5/+34
|
* Add latest changes from gitlab-org/gitlab@15-0-stable-eev15.0.0-rc42GitLab Bot2022-05-191-0/+130
|
* Add latest changes from gitlab-org/gitlab@14-10-stable-eev14.10.0-rc42GitLab Bot2022-04-202-32/+84
|
* Add latest changes from gitlab-org/gitlab@14-7-stable-eev14.7.0-rc42GitLab Bot2022-01-202-0/+20
|
* Add latest changes from gitlab-org/security/gitlab@14-4-stable-eeGitLab Bot2021-10-272-3/+3
|
* Add latest changes from gitlab-org/gitlab@14-2-stable-eev14.2.0-rc42GitLab Bot2021-08-192-21/+65
|
* Add latest changes from gitlab-org/gitlab@14-0-stable-eev14.0.0-rc42GitLab Bot2021-06-163-2/+7
|
* Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42GitLab Bot2021-05-192-3/+11
|
* Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43GitLab Bot2021-04-202-1/+3
|
* Add latest changes from gitlab-org/gitlab@13-10-stable-eev13.10.0-rc40GitLab Bot2021-03-162-0/+16
|
* Add latest changes from gitlab-org/gitlab@13-9-stable-eev13.9.0-rc42GitLab Bot2021-02-182-2/+17
|
* Add latest changes from gitlab-org/gitlab@13-8-stable-eev13.8.0-rc42Robert Speicher2021-01-202-0/+2
|
* Add latest changes from gitlab-org/gitlab@13-7-stable-eev13.7.0-rc42GitLab Bot2020-12-171-1/+15
|
* Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.0-rc42GitLab Bot2020-11-191-0/+25
|
* Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot2020-10-211-2/+2
|
* Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot2020-09-191-1/+1
|
* Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot2020-07-207-7/+7
|
* Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot2020-06-181-0/+26
|
* Add latest changes from gitlab-org/gitlab@12-10-stable-eeGitLab Bot2020-04-201-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-201-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-152-2/+19
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-211-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-161-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-181-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-161-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-051-1/+6
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-031-0/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-11-071-0/+7
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-221-0/+26
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-171-0/+8
|
* Add source and merge_request fields to pipeline event webhookBian Jiaping2019-09-111-0/+18
|
* Reduce Gitaly calls in PostReceivesh-optimize-commit-deltas-post-receiveStan Hu2019-08-121-0/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Add frozen_string_literal to spec/lib (part 1)Thong Kuah2019-07-265-0/+10
| | | | | Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
* Fix label serialisation in issue and note hooksSean McGivern2019-06-201-7/+12
| | | | | We were not calling hook_attrs on the labels correctly. Specs were passing because the issues under test did not have any labels!
* Adding labels to note event payload.Sujay Patel2019-06-101-0/+2
|
* Use source ref for pipeline webhookuse-source-ref-name-in-webhookShinya Maeda2019-05-281-0/+9
| | | | | | 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.
* Update deployment chat message notificationJason Goodman2019-05-021-0/+3
| | | | | Include link to user and commit title. Rearrange text
* Merge branch 'use-keyword-args-for-databuilder-push' into 'master'Douglas Barbosa Alexandre2019-04-291-4/+7
|\ | | | | | | | | Use keyword args for databuilder push See merge request gitlab-org/gitlab-ce!24088
| * Use all keyword args for DataBuilder::Push.build()Jonathon Reinhart2019-04-251-4/+7
| |
* | Add deployment events to chat notification servicesJason Goodman2019-04-261-0/+36
|/ | | | | This enables sending a chat message to Slack or Mattermost upon a successful, failed, or canceled deployment
* Fix private user email being visible in tag webhooksLuke Duncalfe2019-01-311-2/+2
| | | | Fixes #54721
* Prefer build() rather than create()Luke Duncalfe2019-01-311-1/+1
|
* Re-enable MethodCallWithoutArgsParentheses CopAndrew Newdigate2019-01-291-1/+1
| | | | | Re-enables and autocorrects all instances of the Style/MethodCallWithoutArgsParentheses rule