- 06 Sep, 2021 40 commits
-
-
Niklas van Schrick authored
Make pricing url cover the full name
-
release-tools approver bot authored
Update Gitaly version See merge request gitlab-org/gitlab!69659
-
Achilleas Pipinellis authored
docs: fix milestones date fields in API responses See merge request gitlab-org/gitlab!69614
-
Achilleas Pipinellis authored
New page with alpha/beta support definitions from handbook See merge request gitlab-org/gitlab!67718
-
Justin Farmiloe authored
-
Achilleas Pipinellis authored
GitLab hasn't verified the object storage options See merge request gitlab-org/gitlab!69619
-
Markus Koller authored
push_rules: Implement bulk-checking of file sizes See merge request gitlab-org/gitlab!69449
-
GitLab Release Tools Bot authored
-
Suzanne Selhorn authored
Use 'has been revoked' instead of 'no longer valid' See merge request gitlab-org/gitlab!69525
-
Fabio Pitino authored
Skip archiving job traces after five failed attempts See merge request gitlab-org/gitlab!68285
-
Marius Bobin authored
-
Jose Ivan Vargas authored
Address vue i18n literal string violations See merge request gitlab-org/gitlab!69621
-
Alper Akgun authored
Make milestone required in metric definition See merge request gitlab-org/gitlab!69638
-
Alina Mihaila authored
-
Patrick Steinhardt authored
The file size check checks each newly pushed blob's size to see whether it's bigger than a configured threshold and, if so, rejects the ref update. This is an expensive check though: we need to go both through all preexisting as well as all new refs in order to find out new blobs via a graph walk. As such, this check doesn't only scale with the number of changes, but also with the repository size itself. Now that `#new_blobs` knows to handle multiple new revisions at once in a single RPC call to Gitaly, we can convert this check to use a single bulk-load of new blobs. While this doesn't help much with walking the positive side of the graph walk, it does amortize the negative walk of all preexisting refs and will thus in most cases result in a significant speedup if multiple changes are to be checked. Ideally, we'd go even further and enumerate new blobs directly via the quarantine directory: we wouldn't have to do a graph walk at all in this case, but can just directly look up all new blobs. While this would be as fast as we can get, the downside is that we wouldn't have blob paths available anymore given that these blobs wouldn't have been walked via a tree object. We would still be able to at least present the blob ID to the user, but the user experience is definitely worse in this case. We may still at a later point decide to go this step given that it si a huge performance win (e.g. on gitlab-org/gitlab, we're talking about 10ms vs 30s). But for now, this commit only does the uncontroversial part of batch-computing new blobs. Changelog: performance
-
Patrick Steinhardt authored
Let `#new_blobs` accept multiple new revisions such that it's possible to compute new blobs across multiple changes instead of having to load blobs per changed ref.
-
Patrick Steinhardt authored
In 0d5df6f0 (repository: Implement `#new_blobs` via `#list_blobs`, 2021-08-25), we have introduced an alternative implementation of `#new_blobs` which uses `ListBlobs()` instead of `ListNewBlobs()`. While there wasn't yet any change in behaviour, this conversion allows us to convert `#new_blobs` to receive multiple new revisions as arguments such that we can batch-load new blobs in a single call instead of having to do so once per change. Remove the feature flag that has been guarding this new implementation such that we can continue with the conversion. While the new code has only been tested in production for one day at the time of writing this commit, there haven't been any issues. Furthermore, the risk of this change was low from the beginning. So removing the feature flag this quickly shouldn't be much of a concern. Changelog: added
-
Brandon Labuschagne authored
Drop Markdown support in bio field See merge request gitlab-org/gitlab!68628
-
Mark Florian authored
This is a follow-up to https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69622. In dismiss_button.vue, the __() call was removed, since the argument is already in a translated form via s__(). In modal_footer.vue, the __() call was removed, since the argument is already in a translated form via s__(). In minutes_usage_project_chart.vue, the GlSprintf component was removed, since it was effectively a no-op as it had no slots provided. The actual rule violation has not been fixed, as it requires a bit more work to solve correctly.
-
Dmitriy Zaporozhets (DZ) authored
Clean up group_level_protected_environments feature flag See merge request gitlab-org/gitlab!69272
-
Dmitriy Zaporozhets (DZ) authored
Mention limitations to error tracking See merge request gitlab-org/gitlab!69641
-
Dmitriy Zaporozhets (DZ) authored
-
Patrick Bajao authored
Release diffs_batch cached rendering See merge request gitlab-org/gitlab!69617
-
Andreas Brandl authored
Resolve "Improve MigrationHelpers to support the PK migration - STEP 3" See merge request gitlab-org/gitlab!68849
-
Sarah Groff Hennigh-Palermo authored
Update dependency @gitlab/ui to v32.7.1 See merge request gitlab-org/gitlab!69552
-
Andreas Brandl authored
Update prepare_async_index migration helper to avoid subtransaction See merge request gitlab-org/gitlab!69262
-
Patrick Bajao authored
Fix 'New merge request' button See merge request gitlab-org/gitlab!69437
-
Jonas Wälter authored
-
Kushal Pandya authored
Ensure VSA form submits only required fields See merge request gitlab-org/gitlab!69630
-
charlie ablett authored
Move Project-level VSA record filtering into FOSS See merge request gitlab-org/gitlab!69197
-
release-tools approver bot authored
Update Gitaly version See merge request gitlab-org/gitlab!69637
-
Kati Paizee authored
Document update process for the GitLab.com for Jira Cloud app See merge request gitlab-org/gitlab!69399
-
Markus Koller authored
-
Sean McGivern authored
Allow tick_for callsite See merge request gitlab-org/gitlab!69623
-
GitLab Renovate Bot authored
-
Nikola Milojevic authored
Merge branch '335300-rate-limit-for-unauthenticated-api-requests-1-rename-web-attributes' into 'master' [1/5] Rename `throttle_unauthenticated_*` attributes in application settings API See merge request gitlab-org/gitlab!69543
-
GitLab Release Tools Bot authored
-
Marcia Ramos authored
Remove reference for creating clusters See merge request gitlab-org/gitlab!69508
-
Kenny Johnston authored
-
Yorick Peterse authored
Fix migrate_in not working within a transaction See merge request gitlab-org/gitlab!69631
-