- 01 Jul, 2016 1 commit
-
-
Grzegorz Bizon authored
-
- 29 Jun, 2016 4 commits
-
-
Grzegorz Bizon authored
-
Tim authored
-
Tim authored
Rebased to resolve merge conflicts
-
Tim authored
Requested in #14669 Added note to changelog
-
- 16 Jun, 2016 2 commits
-
-
James Lopez authored
This reverts commit 13e37a3e.
-
James Lopez authored
-
- 14 Jun, 2016 4 commits
-
-
Rémy Coutable authored
If one had configured a `teamcity_url` like http://foo.bar/teamcity in the previous implementation the plugin directed it's request i.e. to http://foo.bar/httpAuth/... instead of http://foo.bar/teamcity/httpAuth/... `URI.join` only works correctly, if the prefix URL has - at least one or more trailing '/' - the appended parts are _not_ prefixed with '/' The current implementation should work with all sorts of TeamCity base URLs. Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Benjamin Schmid authored
If one had configured a `bamboo_url` like http://foo.bar/bamboo in the previous implementation the plugin directed it's request i.e. to http://foo.bar/rest/... instead of http://foo.bar/bamboo/rest/... `URI.join` only works correctly, if the prefix URL has - at least one or more trailing '/' - the appended parts are _not_ prefixed with '/' The current implementation should work with all sorts of Bamboo base URLs. Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Benjamin Schmid authored
This improves the Bamboo Service and provides a fix for situations, where the build trigger won't work, because Bamboo is requiring authentication also for the trigger GET. The change now does provide additional HTTP Basic Auth parameters if user credentials were provided and appends an request parameter indicating the HTTP Basic Authentication should be used. This aligns interaction with Bamboo with the other calls this service executes. Signed-off-by: Rémy Coutable <remy@rymai.me>
-
- 13 Jun, 2016 1 commit
-
-
Douglas Barbosa Alexandre authored
-
- 03 Jun, 2016 3 commits
-
-
James Lopez authored
This reverts commit 3e991230.
-
Grzegorz Bizon authored
See #17478
-
James Lopez authored
# Conflicts: # app/models/project.rb
-
- 30 May, 2016 1 commit
-
-
Grzegorz Bizon authored
Checks of literals used in conditions. See #17478
-
- 24 May, 2016 1 commit
-
-
Aran Koning authored
-
- 18 May, 2016 1 commit
-
-
Jeroen van Baarsen authored
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
-
- 13 May, 2016 1 commit
-
-
Gabriel Mazetto authored
-
- 09 May, 2016 1 commit
-
-
Jeroen van Baarsen authored
In 8278b763 the default behaviour of annotation has changes, which was causing a lot of noise in diffs. We decided in #17382 that it is better to get rid of the whole annotate gem, and instead let people look at schema.rb for the columns in a table. Fixes: #17382
-
- 06 May, 2016 1 commit
-
-
Zeger-Jan van de Weg authored
-
- 25 Apr, 2016 1 commit
-
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
- 20 Apr, 2016 2 commits
-
-
Sebastian Klier authored
-
Sebastian Klier authored
update changelog
-
- 19 Apr, 2016 1 commit
-
-
Ben Bodenmiller authored
-
- 14 Apr, 2016 1 commit
-
-
Frank Groeneveld authored
Closes #13574
-
- 13 Apr, 2016 2 commits
-
-
Rémy Coutable authored
Also, improve specs for BambooService Similar to https://gitlab.com/gitlab-org/gitlab-ce/issues/3515Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
- 12 Apr, 2016 1 commit
-
- 06 Apr, 2016 1 commit
-
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
- 01 Apr, 2016 1 commit
-
-
Yorick Peterse authored
Rails' "url_helpers" method creates an anonymous Module (which a bunch of methods) on every call. By caching the output of this method in a dedicated method we can shave off about 10 seconds of loading time for an issue with around 200 comments.
-
- 28 Mar, 2016 1 commit
-
-
Stan Hu authored
Closes #14676
-
- 08 Mar, 2016 1 commit
-
-
James Lopez authored
-
- 03 Mar, 2016 1 commit
-
-
Rubén Dávila authored
-
- 02 Mar, 2016 1 commit
-
-
James Lopez authored
-
- 29 Feb, 2016 1 commit
-
-
Dmitriy Zaporozhets authored
This reverts merge request !2992
-
- 27 Feb, 2016 1 commit
-
-
Rubén Dávila authored
-
- 16 Feb, 2016 1 commit
-
-
Rémy Coutable authored
-
- 19 Jan, 2016 1 commit
-
-
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
-
- 12 Jan, 2016 1 commit
-
-
Landon authored
Per this issue: https://gitlab.com/esr/irker/issues/2 A documentation update was added to irkerd (https://gitlab.com/esr/irker/commit/190808c37d4ab5f0f16fe35352ff36863c2732d5) but the bug is still there. Making a note of it here could save someone a lot of hassle. This could probably be worded better if someone else wants to take a stab at it.
-