- Feb 13, 2018
-
-
Andreas Brandl authored
Whenever we already deal with a User object, let's use the more specific method avatar_icon_for_user.
-
- Jan 22, 2018
-
-
Mike Greiling authored
-
Mike Greiling authored
-
- Nov 23, 2017
-
-
- Oct 07, 2017
-
-
Jacopo authored
Replaces all the explicit include metadata syntax in the specs (tag: true) into the implicit one (:tag). Added a cop to prevent future errors and handle autocorrection.
-
- Sep 28, 2017
-
-
Luke "Jared" Bennett authored
-
- Sep 22, 2017
-
-
Phil Hughes authored
This was caused by the `@projects` value being empty when the current user does not have any personal projects.
-
- Sep 13, 2017
-
-
Brandon Everett authored
-
- Sep 07, 2017
-
-
Yorick Peterse authored
Whenever you push to a branch GitLab will show a button to create a merge request (should one not exist already). The underlying code to display this data was quite inefficient. For example, it involved multiple slow queries just to figure out what the most recent push event was. This commit changes the way this data is retrieved so it's much faster. This is achieved by caching the ID of the last push event on every push, which is then retrieved when loading certain pages. Database queries are only executed if necessary and the cached data is removed automatically once a merge request has been created, or 2 hours after being stored. A trade-off of this approach is that we _only_ track the last event. Previously if you were to push to branch A and B then create a merge request for branch B we'd still show the widget for branch A. As of this commit this is no longer the case, instead we will only show the widget for the branch you pushed to most recently. Once a merge request exists the widget is no longer displayed. Alternative solutions are either too complex and/or too slow, hence the decision was made to settle for this trade-off. Performance Impact ------------------ In the best case scenario (= a user didn't push anything for more than 2 hours) we perform a single Redis GET per page. Should there be cached data we will run a single (and lightweight) SQL query to get the event data from the database. If a merge request already exists we will run an additional DEL to remove the cache key. The difference in response timings can vary a bit per project. On GitLab.com the 99th percentile of time spent in User#recent_push hovers between 100 milliseconds and 1 second, while the mean hovers around 50 milliseconds. With the changes in this MR the expected time spent in User#recent_push is expected to be reduced down to just a few milliseconds. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/35990
-
Maxim Rydkin authored
-
Maxim Rydkin authored
-
Maxim Rydkin authored
-
Maxim Rydkin authored
-
Maxim Rydkin authored
-
- Aug 15, 2017
-
-
Yorick Peterse authored
In some cases we pass an Array to this method which would previously fail since Array does not respond to "limit_value". Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/3646
-
- Aug 07, 2017
-
-
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.
-
- Aug 02, 2017
-
-
Robert Speicher authored
-
- Aug 01, 2017
-
-
Robert Speicher authored
-
Gabriel Mazetto authored
-
- Jul 13, 2017
-
-
Robin Bobbitt authored
When sign-in is disabled: - skip password expiration checks - prevent password reset requests - don’t show Password tab in User Settings - don’t allow login with username/password for Git over HTTP requests - render 404 on requests to Profiles::PasswordsController
-
- Jul 11, 2017
-
-
- Jun 26, 2017
-
-
Robin Bobbitt authored
If internal auth is disabled and user is not an LDAP user, present the user with an alert to create a personal access token if he does not have one already.
-
- Jun 14, 2017
-
-
Robert Speicher authored
-
- Jun 13, 2017
-
-
Kamil Trzcińśki authored
-
- Jun 06, 2017
-
-
Mike Greiling authored
-
- May 12, 2017
-
-
Dmitriy Zaporozhets authored
Signed-off-by:
Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Dmitriy Zaporozhets authored
Signed-off-by:
Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
- Apr 26, 2017
-
-
Bob Van Landuyt :neckbeard: authored
-
- Apr 21, 2017
-
-
Jeff Stubler authored
-
- Apr 17, 2017
-
-
- Apr 07, 2017
-
-
Bob Van Landuyt :neckbeard: authored
-
- Apr 06, 2017
-
-
DJ Mountney authored
Fix for path disclosure in project import/export See merge request !2080
-
- Mar 16, 2017
-
-
Bob Van Landuyt :neckbeard: authored
-
- Feb 05, 2017
-
- Jan 25, 2017
-
-
Robert Speicher authored
-
- Oct 06, 2016
-
-
Dmitriy Zaporozhets authored
Signed-off-by:
Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
- Sep 27, 2016
-
-
Nick Thomas authored
Projects::ForkService delegates to this service almost entirely, but needed one small change so it would propagate create errors correctly. CreateService#execute needs significant refactoring; it is now right at the complexity limit set by Rubocop. I avoided doing so in this commit to keep the diff as small as possible. Several tests depend on the insecure behaviour of ForkService, so fi them up at the same time.
-
- Sep 06, 2016
-
-
Felipe Artur authored
-
- Aug 24, 2016
-
-
Paco Guzman authored
-
- Jun 30, 2016
-
-
Alejandro Rodríguez authored
-