- 29 Jan, 2021 40 commits
-
-
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
-
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
-
Victor Wu authored
-
Igor Drozdov authored
Remove avatar of the blocked user See merge request gitlab-org/gitlab!52051
-
Yogi authored
When a user is blocked for violating the terms of service on gitlab.com, their profile and history is no longer accessible, but their avatar is still visible.
-
Jose Ivan Vargas authored
Add `gl-button` to promotion buttons on issue sidebar See merge request gitlab-org/gitlab!51287
-
Yogi authored
This updates the views to be pajamas compliant
-
Mark Florian authored
Adding GlAlert component See merge request gitlab-org/gitlab!52217
-
Tiffany Rea authored
This updates the error alert banner on the new feature flag form and edit feature flag form to just warning. Addresses https://gitlab.com/gitlab-org/gitlab/-/issues/273018.
-
Mike Jang authored
Update group:access docs, to replace "STARTER*" Tiers See merge request gitlab-org/gitlab!52733
-
Mike Jang authored
-
Ezekiel Kigbo authored
Apply new GitLab UI for input field in admin/appearance See merge request gitlab-org/gitlab!52409
-
Craig Norris authored
Word and line reviews for Create documentation See merge request gitlab-org/gitlab!52852
-
Amy Qualls authored
More reviews of words and lines, to deal with issues flagged by our linting system.
-
Illya Klymov authored
Use vue test utils in MR Widget Status Icon spec See merge request gitlab-org/gitlab!52493
-
Olena Horal-Koretska authored
Apply new GitLab UI for input fields in the file editor See merge request gitlab-org/gitlab!52461
-
Yogi authored
-
Douglas Barbosa Alexandre authored
Delete extra `using RSpec::Parameterized::TableSyntax` references See merge request gitlab-org/gitlab!52832
-
Sean McGivern authored
In Product Email Campaigns SaaS See merge request gitlab-org/gitlab!50679
-
Illya Klymov authored
Update dependency @gitlab/eslint-plugin to v7.0.2 See merge request gitlab-org/gitlab!52690
-
James Fargher authored
Merge branch '294266-parse-example-alert-payload-to-return-list-of-payload-alert-fields-service' into 'master' Implement payload field extract service and model See merge request gitlab-org/gitlab!50948
-
Ezekiel Kigbo authored
Apply new GitLab UI for subscribe buttons in issues See merge request gitlab-org/gitlab!52401
-
Simon Knox authored
Implement pagination & filtering for group imports See merge request gitlab-org/gitlab!52340
-
mfluharty authored
Pass caught error to receiveReportsError Expect error to be passed in fetchReports spec camelCase feature flag name in spec name
-
mfluharty authored
Add mock data arrays in new format Test parsing with feature flag enabled and disabled
-
mfluharty authored
Backend returns a reason for the status Why not put it underneath the error message in the widget
-
mfluharty authored
If :codequality_mr_diff feature flag is enabled and parse new report format to make links work
-
mfluharty authored
Propagate codequality reports path through Mr. Widget Store Set it as a path in codequality vue app like the other paths
-
Craig Norris authored
More word and line revisions to Create docset See merge request gitlab-org/gitlab!52850
-
Amy Qualls authored
Revise words, lines, and paragraphs to bring them closer to GitLab tone and style. One major change in this commit swaps a two-column table for an unordered list for ease of editing.
-