- 23 Mar, 2021 40 commits
-
-
Nathan Friend authored
This commit updates the "individual" (AKA "show") release page to use VueApollo to fetch data instead of a Vuex store.
-
Arturo Herrero authored
Add daily quota limit to invitations api endpoint - RUN AS-IF-FOSS See merge request gitlab-org/gitlab!56781
-
Doug Stull authored
- bring inline with create_service.rb.
-
Kushal Pandya authored
Move link icon to CSS See merge request gitlab-org/gitlab!56980
-
Nicolò Maria Mezzopera authored
Add spacing between analyzer name and variables See merge request gitlab-org/gitlab!57226
-
James Lopez authored
Support custom tag formats for changelogs See merge request gitlab-org/gitlab!56889
-
Andrew Fontaine authored
Remove redundant request for fetching billable members See merge request gitlab-org/gitlab!56874
-
Sean McGivern authored
Remove unnecessary use of freeze See merge request gitlab-org/gitlab!57059
-
Toon Claes authored
Set default cadences automatic to false See merge request gitlab-org/gitlab!56842
-
Phil Hughes authored
Merge branch '273311-fy21q4-foundations-kr2-audit-and-update-buttons-on-searchcontroller-show' into 'master' Audit and update buttons on SearchController#show See merge request gitlab-org/gitlab!56122
-
Jeremy Elder authored
-
Achilleas Pipinellis authored
Update terminology in disable Geo docs See merge request gitlab-org/gitlab!56978
-
Nick Nguyen authored
-
Kushal Pandya authored
Epic Boards - Update board scope [RUN AS-IF-FOSS] See merge request gitlab-org/gitlab!55815
-
Marcia Ramos authored
Clarify environment:action:prepare headline See merge request gitlab-org/gitlab!56894
-
Hordur Freyr Yngvason authored
-
Rémy Coutable authored
Merge branch '300046-follow-up-from-add-usage_metric_definition-generator-to-generate-new-yaml-metric-file' into 'master' Freeze Directory struct inside Gitlab::UsageMetricDefinitionGenerator See merge request gitlab-org/gitlab!56801
-
Yorick Peterse authored
When generating a changelog without an explicit start commit, we try to find the tag of the previous release. Prior to this commit, the regex used for this was fixed. This creates a problem for projects that use a different tag format, including our very own Omnibus project. Omnibus uses RC tags in the following format: 13.10.0+rc41.ee.0 According to semantic versioning, this isn't a pre-release tag. Instead, the `rc412.ee.0` suffix is part of the build metadata. Changing Omnibus to use a correct tag format would be time consuming, and delay rolling out the use of the new changelog API for our own projects. In addition, other projects could suffer from similar problems where a tag perhaps includes a valid version, but our fixed regex doesn't match it. In this commit we fix this by adding support for custom regular expressions to extract versions from tag names. We use the re2 engine for this instead of Ruby's regex engine, based on the issues with this as outlined in our documentation [1]. Using a re2 pattern, we try to extract the major, minor, patch, and build metadata components. We still skip tags that produce a prerelease component. If a tag doesn't produce at least the major, minor and patch components, it's ignored. The default pattern we use is based on the official semver regex, with added support of tags starting with the letter "v" (to keep the change backwards compatible). Users wishing to use a custom format can probably use a much simpler pattern, as they only need to support their own use formats. For example, for Omnibus we could simply use something along the lines of the following pattern (minus newlines): ^ (?P<major>\d+) \.(?P<minor>\d+) \.(?P<patch>\d+) (\+(?P<prerelease>rc\d+))? (\.(?P<buildmetadata>\w+\.\d+))? $ See https://gitlab.com/gitlab-com/gl-infra/delivery/-/issues/1551 for more information. [1]: https://docs.gitlab.com/ee/development/secure_coding_guidelines.html#regular-expressions-guidelines
-
Yannis Roussos authored
Resolve "Index namespaces.traversal_ids" See merge request gitlab-org/gitlab!57207
-
Alex Pooley authored
-
Shinya Maeda authored
Add GIT_COMMIT_AUTHOR predefined variable See merge request gitlab-org/gitlab!56144
-
Craig Andrews authored
Signed-off-by: Craig Andrews <candrews@integralblue.com>
-
Mikołaj Wawrzyniak authored
Convert Commit dropdown to Vue See merge request gitlab-org/gitlab!56142
-
Doug Stull authored
- follow pajamas design pattern.
-
Sean McGivern authored
Improve gitlab_ci_queue_size_total metric See merge request gitlab-org/gitlab!57143
-
Enrique Alcántara authored
Set the scope in search context from group issue and MR pages See merge request gitlab-org/gitlab!56383
-
Changzheng Liu authored
-
Dmytro Zaporozhets (DZ) authored
Ignore peek-related backtrace lines See merge request gitlab-org/gitlab!57208
-
Sean McGivern authored
Add descriptions to PipelineConfigSourceEnum See merge request gitlab-org/gitlab!57003
-
Peter Leitzen authored
Resolve rubocop offense Migration/DepartmentName See merge request gitlab-org/gitlab!56997
-
Shubham Kumar authored
-
Alper Akgun authored
Use a single query to compute excess storage See merge request gitlab-org/gitlab!57088
-
Kamil Trzciński authored
Lower the frequency of which job trace updates occur [RUN ALL RSPEC] [RUN AS-IF-FOSS] See merge request gitlab-org/gitlab!56743
-
Sean McGivern authored
Remove unnecessary use of freeze See merge request gitlab-org/gitlab!57058
-
Sean McGivern authored
Remove unnecessary use of freeze See merge request gitlab-org/gitlab!57056
-
Sean McGivern authored
Remove unnecessary use of freeze See merge request gitlab-org/gitlab!57060
-
Sean McGivern authored
Remove unnecessary use of freeze See merge request gitlab-org/gitlab!57057
-
Phil Hughes authored
Removed some unused at extends from SCSS See merge request gitlab-org/gitlab!57012
-
Simon Knox authored
The chained and :focus ones had no impact, other than adding margin bottom to card-body when it is also a card, which is odd. The description-block appears to be unused (file not in startupcss)
-
Peter Leitzen authored
Revert move-recursive-ns-query-to-inner-join [RUN ALL RSPEC] [RUN AS-IF-FOSS] See merge request gitlab-org/gitlab!57131
-