- 17 Sep, 2018 40 commits
-
-
Robert Speicher authored
-
Robert Speicher authored
-
GitLab Bot authored
# Conflicts: # app/models/ci/runner.rb # app/models/project_authorization.rb # app/models/user.rb [ci skip]
-
Douglas Barbosa Alexandre authored
Extract EE specific code to EE::SortingHelper See merge request gitlab-org/gitlab-ee!7389
-
Douglas Barbosa Alexandre authored
Add fixture path argument to `MarkdownFeature.new` See merge request gitlab-org/gitlab-ce!21754
-
Robert Speicher authored
Replace direct use of Gitlab::SQL::Union with a "from_union" method Closes #51307 See merge request gitlab-org/gitlab-ce!21672
-
Robert Speicher authored
EE: Replace direct use of Gitlab::SQL::Union with a "from_union" method Closes gitlab-ce#51307 See merge request gitlab-org/gitlab-ee!7384
-
Bob Van Landuyt authored
CE upstream - 2018-09-17 15:31 UTC Closes gitlab-ce#51093 See merge request gitlab-org/gitlab-ee!7387
-
Douwe Maan authored
Add Gitaly diff stats RPC client See merge request gitlab-org/gitlab-ce!21732
-
Achilleas Pipinellis authored
Extend JUnit XML test report documentation to explicitly mention support for filename patterns. See merge request gitlab-org/gitlab-ce!21619
-
Filipa Lacerda authored
Decouple file row from IDE See merge request gitlab-org/gitlab-ce!21742
-
Lin Jen-Shin authored
-
Annabel Dunstone Gray authored
Add 2fa button Closes #47963 See merge request gitlab-org/gitlab-ce!20117
-
Luke Picciau authored
-
Mek Stittri authored
Update Contribution guidelines via new community contribution flow See merge request gitlab-org/gitlab-ce!21761
-
GitLab Bot authored
-
Oswaldo Ferreira authored
This adds a basic interface to fetch diff statistics given two SHAs. It's a requirement for #49399 #20282 and #19232.
-
Kamil Trzciński authored
Resolve "Add runner JSON schema" Closes #51093 See merge request gitlab-org/gitlab-ce!21525
-
Achilleas Pipinellis authored
CE upstream - 2018-09-17 12:35 UTC Closes gitlab-ce#50460, gitlab-ce#50461, #7019, gitlab-qa#323, gitlab-workhorse#181, and gitlab-org/release/framework#13 See merge request gitlab-org/gitlab-ee!7385
-
Achilleas Pipinellis authored
-
Achilleas Pipinellis authored
Add CI_JOB_TOKEN support to Maven docs See merge request gitlab-org/gitlab-ee!7379
-
Phil Hughes authored
Backport EE changes (missing exports) See merge request gitlab-org/gitlab-ce!21772
-
Lin Jen-Shin authored
-
Lin Jen-Shin authored
-
Lukas Eipert authored
Backport EE changes to `app/assets/javascripts/filtered_search/issuable_filtered_search_token_keys.js`
-
Phil Hughes authored
Include correct CSS file for xterm in environments page Closes #50956 See merge request gitlab-org/gitlab-ce!21768
-
GitLab Bot authored
# Conflicts: # app/models/concerns/protected_branch_access.rb # app/models/concerns/protected_tag_access.rb # changelogs/unreleased/44596-double-title-merge-request-message.yml # doc/user/admin_area/img/admin_area_settings_button.png # doc/user/admin_area/settings/continuous_integration.md # spec/support/helpers/stub_configuration.rb [ci skip]
-
Stan Hu authored
CE upstream - 2018-09-14 09:21 UTC See merge request gitlab-org/gitlab-ee!7374
-
Winnie Hellmann authored
-
Grzegorz Bizon authored
Add aws_signature_version attribute to packages config in gitlab.yml.example See merge request gitlab-org/gitlab-ee!7375
-
Grzegorz Bizon authored
Fix double title in merge request chat messages Closes #44586 See merge request gitlab-org/gitlab-ce!21670
-
Grzegorz Bizon authored
EE port: Fix double title in merge request chat messages See merge request gitlab-org/gitlab-ee!7370
-
Phil Hughes authored
This makes the file row component re-usable ouside of the Web IDE Pre-request for https://gitlab.com/gitlab-org/gitlab-ce/issues/14249
-
Filipa Lacerda authored
When the xterm dependency was moved to a npm dependency the CSS file path was not updated correctly in the environments page. In order for xterm to render properly, it needs the correct CSS path.
-
Douwe Maan authored
Merge branch '50944-unable-to-import-repository-undefined-method-import_file-for-nil-nilclass' into 'master' Resolve "Unable to import repository: undefined method `import_file' for nil:NilClass" Closes #50944 See merge request gitlab-org/gitlab-ce!21765
-
James Lopez authored
-
Yorick Peterse authored
This commit adds the module `FromUnion`, which provides the class method `from_union`. This simplifies the process of selecting data from the result of a UNION, and reduces the likelihood of making mistakes. As a result, instead of this: union = Gitlab::SQL::Union.new([foo, bar]) Foo.from("(#{union.to_sql}) #{Foo.table_name}") We can now write this instead: Foo.from_union([foo, bar]) This commit also includes some changes to make this new setup work properly. For example, a bug in Rails 4 (https://github.com/rails/rails/issues/24193) would break the use of `from("sub-query-here").includes(:relation)` in certain cases. There was also a CI query which appeared to repeat a lot of conditions from an outer query on an inner query, which isn't necessary. Finally, we include a RuboCop cop to ensure developers use this new module, instead of using Gitlab::SQL::Union directly. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/51307
-
Yorick Peterse authored
This commit adds the module `FromUnion`, which provides the class method `from_union`. This simplifies the process of selecting data from the result of a UNION, and reduces the likelihood of making mistakes. As a result, instead of this: union = Gitlab::SQL::Union.new([foo, bar]) Foo.from("(#{union.to_sql}) #{Foo.table_name}") We can now write this instead: Foo.from_union([foo, bar]) This commit also includes some changes to make this new setup work properly. For example, a bug in Rails 4 (https://github.com/rails/rails/issues/24193) would break the use of `from("sub-query-here").includes(:relation)` in certain cases. There was also a CI query which appeared to repeat a lot of conditions from an outer query on an inner query, which isn't necessary. Finally, we include a RuboCop cop to ensure developers use this new module, instead of using Gitlab::SQL::Union directly. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/51307
-
Achilleas Pipinellis authored
-
Winnie Hellmann authored
The class only applies to issues and not to merge requests (which are issuables, too)
-