- 03 Mar, 2018 1 commit
-
-
Felipe Artur authored
-
- 22 Feb, 2018 4 commits
-
-
Matija Čupić authored
-
Matija Čupić authored
-
Oswaldo Ferreira authored
-
Bob Van Landuyt authored
-
- 20 Feb, 2018 10 commits
-
-
Oswaldo Ferreira authored
-
Andreas Brandl authored
-
Andreas Brandl authored
-
Andreas Brandl authored
-
Andreas Brandl authored
Immediately using #from here requires a lot of changes in other finders (e.g. IssuableFinder, TodosFinder). In all places where we use #merge, this goes completely the wrong way when passed in a relation that was built with `#from(...)`: The original query's FROM part gets completely replaced. This avoids changing all other places and focuses on improving SnippetFinder with the downside of two (small) codepaths to do the same thing.
-
Andreas Brandl authored
-
Andreas Brandl authored
-
Andreas Brandl authored
-
Andreas Brandl authored
-
Andreas Brandl authored
-
- 13 Feb, 2018 1 commit
-
-
Matija Čupić authored
-
- 09 Feb, 2018 1 commit
-
-
Kamil Trzciński authored
Fix using wildcards in protected tags to expose protected variables
-
- 07 Feb, 2018 1 commit
-
-
Rubén Dávila authored
-
- 06 Feb, 2018 4 commits
-
-
Douwe Maan authored
-
Bastian Blank authored
Signed-off-by:
Bastian Blank <waldi@debian.org>
-
Tiago Botelho authored
-
Tiago Botelho authored
-
- 05 Feb, 2018 2 commits
-
-
Matija Čupić authored
-
Nick Thomas authored
-
- 02 Feb, 2018 1 commit
-
-
Mario de la Ossa authored
-
- 01 Feb, 2018 3 commits
-
-
Matija Čupić authored
-
Matija Čupić authored
-
Micaël Bergeron authored
-
- 31 Jan, 2018 1 commit
-
-
Takuya Noguchi authored
-
- 26 Jan, 2018 2 commits
-
-
James Lopez authored
-
James Lopez authored
-
- 24 Jan, 2018 1 commit
-
-
Douwe Maan authored
-
- 22 Jan, 2018 3 commits
-
-
Mike Greiling authored
-
Matija Čupić authored
This makes Project#auto_devops_variables more performant by evaluating the application settings only if necessary.
-
Matija Čupić authored
-
- 19 Jan, 2018 2 commits
-
-
Kim "BKC" Carlbäcker authored
-
Jan Christophersen authored
Resolve "Projects API: filter 'with_issues_enabled=true' returns projects with 'issues_enabled=false'"
-
- 17 Jan, 2018 1 commit
-
-
Alexis Reigel authored
with .public_send we can't make sure that the scope on the model actually exists.
-
- 14 Jan, 2018 1 commit
-
-
Stan Hu authored
This should reduce the number of SQL queries and lookups needed to look up a project of a build and pipeline and vice versa. Before: ``` [1] pry(main)> Ci::Build.reflect_on_association(:project).has_inverse? => false [2] pry(main)> Project.reflect_on_association(:builds).has_inverse? => false [3] pry(main)> Ci::Pipeline.reflect_on_association(:project).has_inverse? => false [4] pry(main)> Project.reflect_on_association(:pipelines).has_inverse? => :project ``` After: ``` [1] pry(main)> Ci::Build.reflect_on_association(:project).has_inverse? => :builds [2] pry(main)> Project.reflect_on_association(:builds).has_inverse? => :project [3] pry(main)> Ci::Pipeline.reflect_on_association(:project).has_inverse? => :pipelines [4] pry(main)> Project.reflect_on_association(:pipelines).has_inverse? => :project ```
-
- 12 Jan, 2018 1 commit
-
-
Lin Jen-Shin authored
with StrongMemoize
-