- 03 Feb, 2021 40 commits
-
-
Stan Hu authored
https://gitlab.com/gitlab-org/gitlab/-/merge_requests/52750 broke consolidated storage settings because it was scanning storage-specific settings. For example, let's say you had: ```yaml object_store: enabled: true objects: artifacts: enabled: false artifacts: enabled: true ``` In `1_settings.rb`, `ObjectStoreSettings#legacy_parse!` will automatically add default `object_store` settings to the storage-specific settings: ```yaml artifacts: enabled: true object_store: enabled: false ... ``` As seen above, `artifacts.object_store.enabled` defaults to `false`, so the check introduced in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/52750 would mean that object storage would never be enabled unless storage-specific settings were also enabled. The right fix: skip parsing of consolidated settings only if the object type has explicitly disabled it in the consolidated settings. In the example above, this means we check the parameter in `object_store.objects.artifacts.enabled`, which overrides the default consolidated settings. This should fix https://gitlab.com/gitlab-org/gitlab/-/issues/233826.
-
Sean McGivern authored
Add reCAPTCHA fields to snippet mutations See merge request gitlab-org/gitlab!51956
-
Chad Woolley authored
NOTE: This is a work-in-progress branch, still sorting out how to split the logic from https://gitlab.com/gitlab-org/gitlab/-/merge_requests/50559 across multiple MRs.
-
Martin Wortschack authored
Persist value stream stages See merge request gitlab-org/gitlab!51884
-
Phil Hughes authored
Fix full screen mode for comments in merge request changes view See merge request gitlab-org/gitlab!53009
-
Natalia Tepluhina authored
Pipeline Graph Structural Update: SVG Bugfix See merge request gitlab-org/gitlab!53067
-
Sarah Groff Hennigh-Palermo authored
-
Matthias Käppler authored
Fix 2.7 warning for attr_encrypted See merge request gitlab-org/gitlab!53173
-
Ezekiel Kigbo authored
Cleans up the hidden and active stages in the form
-
Nicolò Maria Mezzopera authored
Update UI Text in Deploy Tokens screen See merge request gitlab-org/gitlab!52267
-
Mike Jang authored
Restore gitlab pot timestamps
-
Patrick Bajao authored
Update gitlab-shell to v13.16.0 See merge request gitlab-org/gitlab!53097
-
Igor Drozdov authored
default_value_for uses attr_changed? that raises a warning since it's not critical to skip setting a default value for encrypted attributes in specs, we can skip it
-
Stan Hu authored
[RUN ALL RSPEC] Update rspec-* gem versions See merge request gitlab-org/gitlab!52873
-
Dmytro Zaporozhets (DZ) authored
Preserve Epic parent-child association when importing using Bulk Import See merge request gitlab-org/gitlab!52662
-
Marcel Amirault authored
Adding `.` to list of masked variables See merge request gitlab-org/gitlab!53092
-
Duncan Harris authored
-
Tiger Watson authored
Generate absolute paths for Gitaly test config files See merge request gitlab-org/gitlab!53174
-
Kushal Pandya authored
Externalize UI text for push rule settings See merge request gitlab-org/gitlab!53185
-
Ezekiel Kigbo authored
Externalizes additional strings for the push rule settings page
-
Vitaly Slobodin authored
Do not automatically focus on projects search input See merge request gitlab-org/gitlab!53094
-
Dylan Griffith authored
Rename asset_proxy_whitelist column See merge request gitlab-org/gitlab!50824
-
Kushal Pandya authored
Apply new GitLab UI for buttons in empty project snippets placeholder See merge request gitlab-org/gitlab!53157
-
Yogi authored
-
Heinrich Lee Yu authored
Preload recent failures on test suite See merge request gitlab-org/gitlab!52935
-
Ezekiel Kigbo authored
Add btn-default class for unlock button in locked files page See merge request gitlab-org/gitlab!52858
-
Igor Drozdov authored
It fixes more Ruby 2.7 warnings rspec-rails: https://github.com/rspec/rspec-rails/blob/main/Changelog.md rspec-core: https://github.com/rspec/rspec-core/blob/main/Changelog.md rspec-expectations: https://github.com/rspec/rspec-expectations/blob/main/Changelog.md rspec-support: https://github.com/rspec/rspec-support/blob/main/Changelog.md rspec-mocks: https://github.com/rspec/rspec-mocks/blob/main/Changelog.md
-
Thong Kuah authored
Fix 2.7 warnings for usage data code area See merge request gitlab-org/gitlab!53146
-
Yogi authored
-
Yogi authored
-
Yogi authored
-
Yogi authored
-
Ezekiel Kigbo authored
Ensure we validate when the submit button is clicked but before we submit the request
-
Ezekiel Kigbo authored
Extracts the prepareStageErrors method to the utils and adds related specs
-
Ezekiel Kigbo authored
Fixes the related vuex mutation specs and moves some functions to utils
-
Ezekiel Kigbo authored
Submits the stages configuration along with the value stream name
-
Robert Speicher authored
Run pipeline_schedule_worker at every 10th minute from 3 through 59 See merge request gitlab-org/gitlab!52756
-
Ben Bodenmiller authored
-
charlie ablett authored
Move UpdateBuildMinutesService under CI See merge request gitlab-org/gitlab!52807
-
Tan Le authored
We would like to use a more neutral tone when specifying a list of allowed asset proxies. This change renames the `asset_proxy_whitelist` column in `application_settings` table to `asset_proxy_allowlist`. The ApplicationSettings API is still backward-compatible with the old field.
-