- 07 Jul, 2021 40 commits
-
-
Michael Kozono authored
Use let_it_be to speed up pipeline specs See merge request gitlab-org/gitlab!65662
-
Enrique Alcántara authored
Fix typo for dismissible See merge request gitlab-org/gitlab!65656
-
Natalia Tepluhina authored
Milestone widget for Issue and MR page sidebars [RUN AS-IF-FOSS] See merge request gitlab-org/gitlab!63722
-
Florie Guibert authored
-
Yorick Peterse authored
Reduce space needed for merge request diff commits See merge request gitlab-org/gitlab!63669
-
Jose Ivan Vargas authored
Update dot style in DORA lead time graphs See merge request gitlab-org/gitlab!65555
-
Adam Hegyi authored
Add user_cap column to namespace_settings See merge request gitlab-org/gitlab!65470
-
Mayra Cabrera authored
Revert gitlab-shell version bump See merge request gitlab-org/gitlab!65667
-
Sean McGivern authored
Fix populate latest pipeline ids background migration See merge request gitlab-org/gitlab!65280
-
Nicolò Maria Mezzopera authored
Add period to end of email sentence See merge request gitlab-org/gitlab!65610
-
Serena Fang authored
-
Etienne Baqué authored
Changelog: added
-
Nick Thomas authored
Fix LFS objects not downloading with Bitbucket See merge request gitlab-org/gitlab!65380
-
Mayra Cabrera authored
This reverts merge request !65625
-
Nick Gaskill authored
Fix location of settings for cleanup policies See merge request gitlab-org/gitlab!65596
-
Sean McGivern authored
Add developer docs for the attribution panels See merge request gitlab-org/gitlab!64805
-
Bob Van Landuyt authored
-
Sean McGivern authored
Cache entities for compare API [RUN ALL RSPEC] [RUN AS-IF-FOSS] See merge request gitlab-org/gitlab!64418
-
Achilleas Pipinellis authored
Improve upgrade versions details See merge request gitlab-org/gitlab!65641
-
Ben Bodenmiller authored
-
Douglas Barbosa Alexandre authored
Nest start and end event identifiers in VSA API See merge request gitlab-org/gitlab!65395
-
Achilleas Pipinellis authored
Docs for resetting Patroni state in Consul See merge request gitlab-org/gitlab!64733
-
Catalin Irimie authored
-
Reuben Pereira authored
Remove date from Seat Link data fields See merge request gitlab-org/gitlab!65190
-
Nick Thomas authored
Catch Git::CommandError in Branches::CreateService See merge request gitlab-org/gitlab!64727
-
Olena Horal-Koretska authored
Display correct label for named-list report types See merge request gitlab-org/gitlab!65507
-
Allison Browne authored
Speed up the pipeline feature specs by creating fewer projects using let_it_be. Total projects created 103 -> 30 Total time creating projects 21.9884s -> 7.8286s
-
Stan Hu authored
Previously attempting to download LFS files with Bitbucket via a project import would result in a 401 error. This happened because Bitbucket returns a `header` payload that should be included in the HTTP GET request. As described in https://github.com/git-lfs/git-lfs/blob/main/docs/api/batch.md, we need to include this with the request for the download to succeed. Relates to https://gitlab.com/gitlab-org/gitlab/-/issues/335123 Changelog: fixed
-
Marcin Sedlak-Jakubowski authored
Fix nesting of child pipeline artifacts downloads See merge request gitlab-org/gitlab!65649
-
Heinrich Lee Yu authored
Fix ProtectedEnvironments::SearchService in dev See merge request gitlab-org/gitlab!65643
-
Denys Mishunov authored
Remove ff `sidebar_refactor` from views and remove flag [RUN AS-IF-FOSS] See merge request gitlab-org/gitlab!64384
-
Robert May authored
-
Siddharth Asthana authored
Changelog: changed MR: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/65190 EE: true
-
Himanshu Kapoor authored
Fix a typo to make the content editor feedback issue popup non dismissible. Changelog: fixed
-
Francisco Javier López authored
Update tests for snippets to support default branch See merge request gitlab-org/gitlab!65552
-
Marcin Sedlak-Jakubowski authored
Edited Cron example to reflect accurately See merge request gitlab-org/gitlab!65642
-
Amy Qualls authored
Doc: Add context commits documentation See merge request gitlab-org/gitlab!65236
-
Max Woolf authored
BulkImports: Remove unnecessary transform from GroupAvatar See merge request gitlab-org/gitlab!65578
-
Yorick Peterse authored
The table merge_request_diff_commits stores the names and Emails of commit authors and committers. This data is stored as-is. This means that if I push 10 commits, GitLab stores my name and Email address 20 times: 10 times for the author details, and 10 times for the committer details. This commit adds a set of migrations and code changes to resolve this problem. Instead of storing names and Emails for every occurrence, we'll store a unique set of names and Emails in a separate table. The table merge_request_context_commits in turn has two new columns: commit_author_id and committer_id. When creating rows for merge_request_context_commits, we take the author and committer details and try to find an existing row in the newly added table. If no row exists, one is created. The resulting setup is such that given a name and Email pair of (X, Y), we only store a single occurrence of that pair. This reduces the amount of space necessary to store all this information. Based on our findings in https://gitlab.com/gitlab-org/gitlab/-/issues/331823, we estimate that over 95% of the data currently stored is duplicate data. For GitLab.com, we estimate this will translate to roughly 500 GB of data we no longer need to store. The migration process for GitLab.com will likely take around two weeks, based on our estimates discussed in https://gitlab.com/gitlab-org/gitlab/-/issues/331823#note_595865070. The exact time may differ based on how lucky (or not) we get, and the exact number of rows that have to be migrated. See the following issues for more information: - https://gitlab.com/gitlab-org/gitlab/-/issues/331523#note_583654940 - https://gitlab.com/gitlab-org/gitlab/-/issues/331823 Changelog: performance
-
Nathan Friend authored
This commit updates the data point style on lead time graphs (both project and group-level) to always render a blue dot. This makes it easier to see isolated data points on the graphs. Changelog: changed EE: true
-