- 20 Jan, 2016 13 commits
-
-
Douwe Maan authored
Upgraded gitlab_git to fix issue #5858 This updates the dependency on gitlab_git and fixes #5858 - reproduced locally and issue disappears with the change. Related MR that actually adds branch name support to commits_between: https://gitlab.com/gitlab-org/gitlab_git/merge_requests/61 See merge request !2516
-
Dmitriy Zaporozhets authored
Fixes tooltip doesn't duplicate the "me" name. Checks that "me" is not in the array of names in tooltip ![emojilist](/uploads/20b1a39cda194358f9730ec3c6b86acb/emojilist.gif) Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/7978 See merge request !2454
-
Dmitriy Zaporozhets authored
Adds "t" as a shortcut for find file anywhere See merge request !2507
-
James Lopez authored
-
Achilleas Pipinellis authored
Fixed invalid JSON in first JSON Example Just a comma missing See merge request !2487
-
Jacob Schatz authored
-
Douwe Maan authored
Update Issues/MRs updated_at field when notes are generated Closes #3749 and #9130 See merge request !2493
-
Douwe Maan authored
Remove `Compressed to` column from build artifacts browser See #10982. See merge request !2509
-
Achilleas Pipinellis authored
[ci skip] Fixed minor typo in workflow documentation This change is self-explanatory. See merge request !2503
-
Grzegorz Bizon authored
See #10982.
-
Jacob Schatz authored
Code was failing because branch was named `'test'` with quotes which was escaping the javascript I was using.
-
Jacob Schatz authored
-
Jacob Schatz authored
Also adds autocomplete="off" to find input.
-
- 19 Jan, 2016 27 commits
-
-
Rubén Dávila authored
-
Robert Speicher authored
- Add attribution for Anton Baklanov - Remove attributions for employees [ci skip]
-
Robert Speicher authored
Added X-GitLab-... headers to emails from CI and Email On Push services Fixes #2098 This adds the 'X-GitLab-Project', 'X-GitLab-Project-Id' and 'X-GitLab-Project-Path' headers to emails from CI and Email On Push in a way that it is done currently for merge requests and issues emails. Additionally, CI emails will have 'X-GitLab-Build-Status' header with either 'fail' or 'success'. Emails from Email On Push will include 'X-Gitlab-Author' header containing the username of user who did the push. See merge request !2159
-
Jacob Schatz authored
-
Jacob Schatz authored
-
Rubén Dávila authored
-
Jacob Schatz authored
-
Jacob Schatz authored
sometimes `@ref` will be `nil`. this makes sure that the correct branch is passed in.
-
Jacob Schatz authored
-
Robert Speicher authored
Allow LDAP users to change their email if it was not set by the LDAP server Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/3054 See merge request !2502
-
Dmitriy Zaporozhets authored
Add public params to GET /projects api. Closes #3788 See merge request !2409
-
Dmitriy Zaporozhets authored
Starring project only increases star count This is instead of increasing star & fork count Fixes #11396 ![star-count](/uploads/9a1d569393bc051d1a019f0340eec957/star-count.gif) cc. @jschatz1 See merge request !2504
-
Anton Baklanov authored
Fixes #2098
-
Dmitriy Zaporozhets authored
adds exclamation point when assigned user cannot merge Fixes: #4175 See merge request !2408
-
Douwe Maan authored
# Conflicts: # db/schema.rb
-
Phil Hughes authored
This is instead of increasing star & fork count Fixed #11396
-
Douwe Maan authored
Creator should be added as a master of the project on creation Fixes: #4222 See merge request !2463
-
John Galt authored
-
Douwe Maan authored
Greatly improve external_issue_tracker performance See 3d41133d48f6522b8755bb91b804864e8e520871 for all the details. As an aside, this commit contains a set of migrations that will introduce downtime as they add a column with a default value which in turn locks the entire table (at least on PostgreSQL). See merge request !2498
-
Douwe Maan authored
-
Douglas Barbosa Alexandre authored
-
Josh Frye authored
-
Josh Frye authored
-
Josh Frye authored
-
Josh Frye authored
-
Jacob Schatz authored
Removes extra line breaks.
-
Yorick Peterse authored
This greatly improves the performance of Project#external_issue_tracker by moving most of the fields queried in Ruby to the database and letting the database handle all logic. Prior to this change the process of finding an external issue tracker was along the lines of the following: 1. Load all project services into memory. 2. Reduce the list to only services where "issue_tracker?" returns true 3. Reduce the list from step 2 to service where "default?" returns false 4. Find the first service where "activated?" returns true This has to two big problems: 1. Loading all services into memory only to reduce the list down to a single item later on is a waste of memory (and slow timing wise). 2. Calling Array#select followed by Array#reject followed by Array#find allocates extra objects when this really isn't needed. To work around this the following service fields have been moved to the database (instead of being hardcoded): * category * default This in turn means we can get the external issue tracker using the following query: SELECT * FROM services WHERE active IS TRUE AND default IS FALSE AND category = 'issue_tracker' AND project_id = XXX LIMIT 1 This coupled with memoizing the result (just as before this commit) greatly reduces the time it takes for Project#external_issue_tracker to complete. The exact reduction depends on one's environment, but locally the execution time is reduced from roughly 230 ms to only 2 ms (= a reduction of almost 180x). Fixes gitlab-org/gitlab-ce#10771
-