- 24 Jun, 2021 40 commits
-
-
Natalia Tepluhina authored
Fixed contributors slot syntax Fixed slot syntax in ci cd analytics Fixed slot scope in charts and discussion Fixed slot syntax in paginated list spec Fixed slot syntax in resizeable chart spec Fixed slot syntax in note and issuable form Fixed members and milestones slot syntax Fixed slots in discussion-notes Fixes slot syntax in time series Noteables slots fixes Terraform slots syntax fixed Fixed time series Fixed slots in analytics Added modal stub Fixed rules slot Fixed burnup and burndown chart Fixed cluster agents slots Added eslint config Fixed related items tree Fixed slots in grouped metrics Fixed slots in unit tests Fixed ready to merge spec Fixed ci_cd_anaytics spec Fixed terraform list spec Added stubbed GlTab to cluster agent spec Stubbed NoteableNote in specs Stubbed GlModal in dashboard actions test Fixed issuable form spec Fixed discussion notes spec Fixed time series spec Fixed fork_form spec Updated snapshot for analytics Fixed commit edit spec
-
Russell Dickenson authored
Add when:always for DAST_AUTH_REPORT artifact See merge request gitlab-org/gitlab!64782
-
Russell Dickenson authored
Update codequality documentation See merge request gitlab-org/gitlab!64694
-
Andrew Fontaine authored
Add variant to DevOps Adoption cell flag See merge request gitlab-org/gitlab!64770
-
Andrew Fontaine authored
Fix frequent items timestamps not updated See merge request gitlab-org/gitlab!64737
-
Mayra Cabrera authored
Add a package destroy GraphQL mutation See merge request gitlab-org/gitlab!63008
-
Nicolò Maria Mezzopera authored
-
David O'Regan authored
Update markup in projects/branches/new.html.haml See merge request gitlab-org/gitlab!63178
-
Marvin Karegyeya authored
-
Russell Dickenson authored
Corrected GMT to UTC See merge request gitlab-org/gitlab!64714
-
Sean McGivern authored
Fix seeding of default plan See merge request gitlab-org/gitlab!64793
-
Kyle Wiebers authored
Quarantine Push Mirror LFS test See merge request gitlab-org/gitlab!64799
-
Vitaly Slobodin authored
Update profile information summary for on-demand scans See merge request gitlab-org/gitlab!64520
-
Jannik Lehmann authored
-
Suzanne Selhorn authored
Update Documentation README.md - Micro grammatical error See merge request gitlab-org/gitlab!64754
-
Olena Horal-Koretska authored
Reconcile partials for invite trigger and modal See merge request gitlab-org/gitlab!64218
-
Suzanne Selhorn authored
Merge branch 'Fix-Vale-issues-for-(/administration/database_load_balancing.md)-#332109' into 'master' Fix Vale issues for database_load_balancing.md See merge request gitlab-org/gitlab!63093
-
Manisha Singh authored
-
Grant Young authored
Causing multiple failures on Nightly
-
Nick Gaskill authored
Add symbol route to API docs See merge request gitlab-org/gitlab!64741
-
Steve Abrams authored
-
Miguel Rincon authored
Improve resend email confirmation banner warning See merge request gitlab-org/gitlab!63322
-
Jackie Fraser authored
-
Heinrich Lee Yu authored
Only insert default plan if it does not exist. The default plan could exist if Plan.default has been called.
-
Marcin Sedlak-Jakubowski authored
Add details of service desk custom mailbox on .com See merge request gitlab-org/gitlab!64781
-
John Hope authored
-
Susan Tacker authored
Add link to buying more storage See merge request gitlab-org/gitlab!64736
-
Gabriel Mazetto authored
Upgrade awesome_print to 1.9.2 See merge request gitlab-org/gitlab!64725
-
Kushal Pandya authored
Fix border top showing incorrectly in merge request widget See merge request gitlab-org/gitlab!64773
-
Toon Claes authored
Populate `latest_pipeline_id` values for `vulnerability_statistics` See merge request gitlab-org/gitlab!63451
-
Phil Hughes authored
Edit to Package Registry group UI text See merge request gitlab-org/gitlab!64556
-
Nick Gaskill authored
-
Igor Drozdov authored
Use batched new blobs check [RUN ALL RSPEC] [RUN AS-IF-FOSS] See merge request gitlab-org/gitlab!64503
-
Douglas Barbosa Alexandre authored
Enable FF ci_reset_bridge_with_subsequent_jobs by default See merge request gitlab-org/gitlab!64778
-
Matthias Käppler authored
Remove deprecated API elements See merge request gitlab-org/gitlab!64752
-
Matthias Käppler authored
Rename integration helpers [RUN AS-IF-FOSS] See merge request gitlab-org/gitlab!64544
-
Igor Drozdov authored
Move uses of group_wiki factories to EE only [RUN AS-IF-FOSS] See merge request gitlab-org/gitlab!64776
-
Marcel Amirault authored
Remove repeated content on group DevOps Report page See merge request gitlab-org/gitlab!64787
-
Patrick Steinhardt authored
The Git access checks support checking the size of pushed objects. If we have a quarantine environment (which is always the case when access checks are executed via `git receive-pack`'s hooks), then we simply derive the size from the quarantined objects. Otherwise, we use `get_new_blobs`, which does a `git rev-list $REVISION --not --all`. Using git-rev-list(1) with `--not --all` can be a very expensive operation depending on the repository's shape. Especially when it's a biggish monorepo with lots of references, this query can easily take tens of seconds. Given that we call the RPC once per change, this thus roughly scales `O(len(changes) * len(existing_refs))`. To improve this situation, Gitaly has implemented a new `list_blobs()` RPC which takes a set of revisions. Like this, we can batch all calls into a single one and thus avoid some of the overhead if there are multiple changes at once. The new code which does that is currently implemented behind a feature flag. Changelog: performance
-
Patrick Steinhardt authored
Now that the `BlobService` has support for enumerating blobs via a the new Gitaly RPC `#list_blobs`, implement support for reading blobs via `Repository#blobs`.
-