- 04 Nov, 2015 8 commits
-
-
Robert Speicher authored
Add Facebook authentication See merge request !1740
-
Douwe Maan authored
Replace all usages of `git` command with configurable binary path Closes #3311 See merge request !1742
-
Stan Hu authored
Only redirect to homepage url when its not the root url It was possible to create an infi redirect when the user set up the `home_page_url` to redirect to the main URL of the gitlab instance. This fix makes sure this redirect is not possible. Fixes #1020 /cc @dblessing See merge request !1703
-
Dmitriy Zaporozhets authored
Improvements to profile page UI * add separator between tabs * show project avatars * fix tooltip offset on user calendar * remove gray hover for tabs Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> For #3042 See merge request !1747
-
Dmitriy Zaporozhets authored
* add separator between tabs * show project avatars * fix tooltip offset on user calendar * remove gray hover for tabs Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Yorick Peterse authored
Improve performance of creating projects See merge request !1650
-
Yorick Peterse authored
Remove duplicate orders This changes the default order from `created_at DESC, id DESC` to just `id DESC` as this achieves the same results without the overhead of having to sort data twice (we've seen queries go from 200ms to just a few ms by removing the double sort). cc @jacobvosmaer @dzaporozhets @rspeicher @DouweM See merge request !1735
-
Dmitriy Zaporozhets authored
Bump stamp to ~> 0.6.0 Closes #2801 See merge request !1732
-
- 03 Nov, 2015 32 commits
-
-
Robert Speicher authored
Closes #3311
-
Robert Speicher authored
-
Robert Speicher authored
[ci skip]
-
Douwe Maan authored
-
Douwe Maan authored
-
Robert Speicher authored
Closes #2801
-
Dmitriy Zaporozhets authored
-
Robert Speicher authored
Spread out runner contacted_at updates This is meant to prevent having too many concurrent UPDATE requests caused by runners checking in. See merge request !1722
-
Dmitriy Zaporozhets authored
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Dmitriy Zaporozhets authored
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Dmitriy Zaporozhets authored
Fix clipboard button overflow Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> See merge request !1739
-
Dmitriy Zaporozhets authored
-
Dmitriy Zaporozhets authored
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Dmitriy Zaporozhets authored
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Kamil Trzciński authored
Cleanup stuck CI builds Fixes #3143 /cc @dzaporozhets @jacobvosmaer See merge request !1655
-
Valery Sizov authored
-
Dmitriy Zaporozhets authored
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Jacob Vosmaer authored
-
Dmitriy Zaporozhets authored
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Kamil Trzciński authored
Extend yml syntax for only and except to support specifying repository path This allows to limit execution of jobs to specific repository. For example: ```yaml job: only: - branches@gitlab-org/gitlab-ce except: - master@gitlab-org/gitlab-ce ``` The above will run `job` for all branches on `gitlab-org/gitlab-ce`, except master. @dzaporozhets @JobV @vsizov Please review. See merge request !1720
-
Kamil Trzcinski authored
-
Dmitriy Zaporozhets authored
Remove inflector rule that makes commits uncountable Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Before: ``` >> "commits".singularize => "commits" >> "commit".pluralize => “commits” ``` After: ``` >> "commits".singularize => "commit" >> "commit".pluralize => “commits” ``` cc @rspeicher See merge request !1726
-
Dmitriy Zaporozhets authored
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Yorick Peterse authored
The descriptions were not accurate and one particular spec seemingly expected the wrong User row to be returned.
-
Yorick Peterse authored
Sorting by both "created_at" and "id" in descending order is not needed as simply sorting by "id" in descending order will already sort rows from new to old. Depending on the query and data involved sorting twice can also introduce significant overhead.
-
Yorick Peterse authored
This benchmark exists to test if ordering has any noticeable impact in the test environment.
-
Dmitriy Zaporozhets authored
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Dmitriy Zaporozhets authored
-
Dmitriy Zaporozhets authored
Add 'New file' link to dropdown on project page Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Screenshot: ![Screenshot_2015-11-02_15.33.41](/uploads/ecc87c6bda9e3f0680e5422d5cdc08f9/Screenshot_2015-11-02_15.33.41.png) Fixes internal issue https://dev.gitlab.org/gitlab/gitlabhq/issues/2562 See merge request !1719
-
Valery Sizov authored
-
Kamil Trzcinski authored
-
Kamil Trzciński authored
Update links in CI docs after GitLab 8.1 Fix that some links to CI status in docs were broken even after following redirects. As CI build overview is now missing (cf. #3008), this MR uses `?scope=all` parameter. See merge request !1733
-