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
2023-04-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-12-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-12-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-10-31Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-09-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-08-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-08-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-07-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-05-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-05-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-04-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-03-31Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-02-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-02-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-11-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-07-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-06-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-05-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-04-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-04-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-04-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-03-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-02-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-01-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-01-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-12-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-12-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-11-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-06-24Added labels_hook_attrs methodJan Provaznik
Based on review comment fetching labels hook_attrs is now wrapped in an issue's model method.
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-04-09[CE] Support multiple assignees for merge requestsOswaldo Ferreira
Backports https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/10161 (code out of ee/ folder).
2019-03-15Fix whitespace in IssueBuilder/MergeRequestBuilderYorick Peterse
2018-11-17Enable even more frozen string for lib/gitlabgfyoung
Enables frozen string for the following: * lib/gitlab/hook_data/**/*.rb * lib/gitlab/i18n/**/*.rb * lib/gitlab/import/**/*.rb * lib/gitlab/import_export/**/*.rb * lib/gitlab/kubernetes/**/*.rb * lib/gitlab/legacy_github_import/**/*.rb * lib/gitlab/manifest_import/**/*.rb * lib/gitlab/metrics/**/*.rb * lib/gitlab/middleware/**/*.rb Partially addresses gitlab-org/gitlab-ce#47424.
2018-10-16Fix image webhook rewriting for uploadsSean McGivern
This rewrote URLs to be absolute URLs. However, for uploads (the most common case), we actually need them to point to not just the GitLab instance, but the project they're from. Thankfully, we can normally get that information from the object we're building the hook for.
2018-08-21Port of ccr/6274/add_weight_to_payload to CEChantal Rollison
2018-07-17Keep #absolute_image_urls as a private instance methodSean McGivern
2018-07-06Don't include a double slash when rewriting the URLSean McGivern
2018-07-06Add documentation and specs for webhook URL rewritingSean McGivern
2018-06-20Add base class for hook builders, and use it for notes and wikisSean McGivern
2018-06-20Fix MR hook builderSean McGivern
2018-06-20Passing absolute image urls in the markdown content in the webhooksSatish Perala
2018-04-05Merge branch 'jej/mattermost-notification-confidentiality-10-6' into ↵Douwe Maan
'security-10-6' [10.6] Prevent notes on confidential issues from being sent to chat See merge request gitlab/gitlabhq!2366 # Conflicts: # app/helpers/services_helper.rb
2018-01-08Remove soft removals related codeYorick Peterse
This removes all usage of soft removals except for the "pending delete" system implemented for projects. This in turn simplifies all the query plans of the models that used soft removals. Since we don't really use soft removals for anything useful there's no point in keeping it around. This _does_ mean that hard removals of issues (which only admins can do if I'm not mistaken) can influence the "iid" values, but that code is broken to begin with. More on this (and how to fix it) can be found in https://gitlab.com/gitlab-org/gitlab-ce/issues/31114. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/37447