- 29 Jan, 2021 40 commits
-
-
James Lopez authored
Log user approval/rejection in application logs See merge request gitlab-org/gitlab!51768
-
Serena Fang authored
-
Mark Chao authored
Project access token API See merge request gitlab-org/gitlab!52139
-
Serena Fang authored
Not working yet
-
Craig Norris authored
Even more exciting spelling corrections! See merge request gitlab-org/gitlab!52940
-
Amy Qualls authored
Continuing to clean up spelling issues from our docsets!
-
Enrique Alcántara authored
Update dependency core-js to ^3.8.3 See merge request gitlab-org/gitlab!51585
-
Mike Jang authored
Change Core to Free for admin docs See merge request gitlab-org/gitlab!52936
-
Brandon Labuschagne authored
Merge branch '254263-replace-bootstrap-modal-in-app-views-shared-notifications-_button-html-haml' into 'master' Add Vue notifications dropdown component to project details See merge request gitlab-org/gitlab!52068
-
Craig Norris authored
Spelling changes, next round See merge request gitlab-org/gitlab!52932
-
Michael Kozono authored
Populate description of vulnerability from finding if needed See merge request gitlab-org/gitlab!52619
-
Jonathan Schafer authored
-
Olena Horal-Koretska authored
Remove LDAP "Edit Permissions" button for inherited group members [RUN AS-IF-FOSS] See merge request gitlab-org/gitlab!52847
-
Jose Ivan Vargas authored
Replace mountComponent with mount See merge request gitlab-org/gitlab!52929
-
ngaskill authored
-
Amy Qualls authored
Smaller set of spelling fixes.
-
Nick Gaskill authored
Explain Gitaly Cluster components See merge request gitlab-org/gitlab!51946
-
Evan Read authored
-
Craig Norris authored
Add front matter for 3 new pages See merge request gitlab-org/gitlab!52930
-
Amy Qualls authored
These pages need to be tracked by the technical writing team. Add front matter to do so.
-
Craig Norris authored
Deal with spelling issues throughout docsets See merge request gitlab-org/gitlab!52927
-
wortschi authored
- Renders a Vue notification dropdown component on the project overview page
-
jboyson authored
-
Nicolò Maria Mezzopera authored
Create the update form for compliance frameworks See merge request gitlab-org/gitlab!52479
-
Amy Qualls authored
Deal with spelling issues in multiple ways. Add some words to the spelling exceptions list. Fix misspellings. Turn off spellchecking on things that shouldn't be in the exceptions list, but we also can't remove.
-
Alex Kalderimis authored
Don't require a bucket if object storage is disabled for a type See merge request gitlab-org/gitlab!52750
-
Jose Ivan Vargas authored
Extract Roadmap filtering to a mixin See merge request gitlab-org/gitlab!52793
-
Mike Jang authored
Hack `Prependable` class methods for `override` See merge request gitlab-org/gitlab!52419
-
Steve Abrams authored
Add API for generating changelogs in GitLab See merge request gitlab-org/gitlab!52116
-
Stan Hu authored
Fix capitalization See merge request gitlab-org/gitlab!52853
-
Brandon Labuschagne authored
Migrate health status dropdown to use gitlab ui See merge request gitlab-org/gitlab!52273
-
Stan Hu authored
Previously if a user enabled consolidated settings then selectively disabled some object storage types, they were still required to set a bucket name for that object type. For example: 1. Enable consolidated object storage (https://docs.gitlab.com/ee/administration/object_storage.html). 2. Configure the artifacts object storage with the below: ``` gitlab_rails['object_store']['objects']['artifacts']['enabled'] = false gitlab_rails['artifacts_enabled'] = true ``` Reconfigure GitLab and you see this error: ``` Object storage for artifacts must have a bucket specified ``` Since the previous workaround would be to set a dummy bucket name, this change skips assigning consolidated settings if object storage has been disabled for a specific type. Relates to https://gitlab.com/gitlab-org/gitlab/-/issues/233826
-
Andrew Fontaine authored
Merge branch '227349-package-registry-expand-the-filter-and-sort-functionality-on-the-package-registry-list-view' into 'master' Redesign the search UI for the package list See merge request gitlab-org/gitlab!52575
-
Nicolò Maria Mezzopera authored
- source - tests - snapshots
-
Yannis Roussos authored
Fix rename column concurrently See merge request gitlab-org/gitlab!52032
-
Imre Farkas authored
Forbid git pushes to group wikis when repo is read only See merge request gitlab-org/gitlab!52801
-
Marcia Ramos authored
Fix tier for custom branch name for groups See merge request gitlab-org/gitlab!52632
-
Daniel Gruesso authored
-
Lin Jen-Shin authored
`ActiveSupport::Concern` uses an unusual way to chain class methods, which does not exactly follow how Ruby chains the classes. In particular, it's like Concern reinvents the object model and builds the ancestors chain in runtime, rather than at the compile time. This for sure introduced a lot of culprits. This fix is aiming for restoring the class methods for the module which is defining the class methods. To be specific, consider this case: ``` ruby module Base extend ActiveSupport::Concern class_methods do def f end end end module Derived include Base end ``` What would you expect for this? ``` ruby Base.f # => NoMethodError Derived.f # => nil ``` With this hack, it'll allow `Base.f` to work, which can make `override` check for class methods. Before this hack it'll not work due to this disparity. Since so far the only place we really need this is when we're checking `override` with those class methods, we don't have to take the risk to change how it works in production, but just how we check `override`. This hack is needed for `override` because we're checking `prepend` at where it's defined, not at where it's eventually included into a class, and that's where Concern does the magic. If one day we can stop using `ActiveSupport::Concern`, and just do plain old good Ruby, we'll be free from all those wild hacks. See original bug report: https://gitlab.com/gitlab-org/gitlab/-/issues/23932
-
Scott Hampton authored
Use backend code quality diff for MR widget when feature flag is enabled See merge request gitlab-org/gitlab!52365
-