- 07 Aug, 2017 40 commits
-
-
Robert Speicher authored
Support group milestone references Closes #34778 See merge request !13289
-
Sean McGivern authored
Set default options outside the raw_log method See merge request !13346
-
Sean McGivern authored
Reset only migration models Closes #36052 See merge request !13336
-
Sean McGivern authored
We had a lot of copied and pasted code, when the different elements were very small and easy to get wrong.
-
Rémy Coutable authored
Add sidekiq metrics endpoint and add http server to sidekiq See merge request !13082
-
Paweł Chojnacki authored
-
Phil Hughes authored
Resolve "Navigation - Make contextual sidebar collapsible" Closes #34028 See merge request !13281
-
Robert Speicher authored
add feature rename wiki title Closes #27800 See merge request !10069
-
Robert Speicher authored
Bump gitlab-shell version to 5.8.0 to fix Git for Windows 2.14 See merge request !13344
-
Jacob Vosmaer authored
The raw_log method is meant to become the Gitaly RPC boundary. By setting the defaults before doing the RPC we keep the RPC implementation simpler. We also sidestep the unfortunate subtleties of what happens when options[:limit] is not set, or nil.
-
Robert Speicher authored
Gitaly needs to know where to find gitlab-shell See merge request !13306
-
Rémy Coutable authored
add star for action scope, in order to delete image from registry Closes #26465 See merge request !13248
-
Annabel Dunstone Gray authored
-
Sean McGivern authored
Improve various parts of Dashboard::ProjectsController See merge request !13319
-
Stan Hu authored
-
Annabel Dunstone Gray authored
-
Sean McGivern authored
Circuitbreaker for storage paths Closes #32207, #33117, gitlab-com/infrastructure#1946, and gitlab-com/infrastructure#1775 See merge request !11449
-
Annabel Dunstone Gray authored
Fixed sidebar context header hover colors Closes #35999 See merge request !13323
-
Phil Hughes authored
-
Annabel Dunstone Gray authored
34764 Rename about to overview for group and project page Closes #34764 See merge request !13318
-
Annabel Dunstone Gray authored
Increase the z-index of the navbar Closes #35935 See merge request !13282
-
Bob Van Landuyt authored
-
Tim Zallmann authored
Remove gl.Activities from Commits page Closes #36058 See merge request !13341
-
Rémy Coutable authored
Add `/assign me` alias support for assigning issuables to oneself Closes #35304 See merge request !13334
-
Phil Hughes authored
Remove unused #tree-holder Closes #36035 See merge request !13338
-
Lin Jen-Shin authored
So that we could make sure migration tests could run even if geo is not setup in EE. This is because we have a model like this: ``` ruby class Geo::BaseRegistry < ActiveRecord::Base def self.connection raise 'Geo secondary database is not configured' unless Gitlab::Geo.geo_database_configured? super end end ```
-
winh authored
-
Mehdi Lahmam authored
-
Mehdi Lahmam authored
Currently, when a user wants to assign an issue/MR to himself, he needs to type his full username or select it from the suggested ones in the dropdown list. This commits suggest a faster solution which is typing `/assign me` Closes #35304.
-
Bob Van Landuyt authored
-
Bob Van Landuyt authored
-
Rémy Coutable authored
Add a missing whitespace in "private forks you have no access to" Closes #35786 See merge request !13332
-
Sean McGivern authored
-
Sean McGivern authored
-
Sean McGivern authored
Group milestones can only be referred to by name, not IID. They also do not support cross-project references.
-
Tim Zallmann authored
Add custom linter for inline JavaScript to haml_lint See merge request !9742
-
Yorick Peterse authored
This solves an N+1 query problem where for every project we'd query the creator separately just to figure out what avatar to display.
-
Yorick Peterse authored
The method User#projects_limit_left would run "personal_projects.count" but such a query is not memoized. As a result multiple calls to User#projects_limit_left would result in multiple COUNT(*) queries being executed. To work around this this commit adds User#personal_projects_count which simply memoizes the result of the COUNT(*) in an instance variable.
-
Yorick Peterse authored
The "events" table has a foreign key on "events.project_id" with a cascading delete. As such it's impossible for an event to have a non-existing project ID.
-
Yorick Peterse authored
In various places we check if the same relation would return projects. This is done using "any?" which will run a COUNT query with any LIMIT/OFFSET values still applied. To work around all this we introduce 2 helper methods that take care of doing the right thing. This leads to the produced queries being simpler and fewer queries being executed.
-