- 12 Dec, 2018 40 commits
-
-
Yorick Peterse authored
This was added by accident due to a CE and EE MR both modifying this file in a slightly different way.
-
GitLab Bot authored
-
Robert Speicher authored
Refactor Project#create_or_update_import_data See merge request gitlab-org/gitlab-ce!23701
-
Robert Speicher authored
Move more EE specific code out of CE code See merge request gitlab-org/gitlab-ee!8424
-
Douwe Maan authored
Allow matching only the repo-root for CODEOWNERS Closes #8593 See merge request gitlab-org/gitlab-ee!8708
-
GitLab Bot authored
-
Nick Thomas authored
Do not save user preferences on read-only mode Closes #55024 See merge request gitlab-org/gitlab-ce!23698
-
Felipe Artur authored
-
GitLab Bot authored
-
Robert Speicher authored
Move EE code out of app/helpers and into ee/app/helpers See merge request gitlab-org/gitlab-ee!8702
-
-
-
Douglas Barbosa Alexandre authored
Instance level Maven endpoint (second attempt) Closes #7769 See merge request gitlab-org/gitlab-ee!8757
-
Dmitriy Zaporozhets authored
-
GitLab Bot authored
-
Phil Hughes authored
Resolve "Empty state shown when the group security dashboard request fails" Closes #8704 See merge request gitlab-org/gitlab-ee!8703
-
Sam Beckham authored
-
Kamil Trzciński authored
Add basic implementation of CI/CD bridge job See merge request gitlab-org/gitlab-ce!23730
-
GitLab Bot authored
-
Nick Thomas authored
Wait for push before trying to create a new MR See merge request gitlab-org/gitlab-ce!23745
-
GitLab Bot authored
-
Nick Thomas authored
Fix creation query for pools repository See merge request gitlab-org/gitlab-ce!23729
-
Zeger-Jan van de Weg authored
-
Nick Thomas authored
Send a notification email on mirror update errors Closes #54650 See merge request gitlab-org/gitlab-ce!23595
-
Nick Thomas authored
[EE] Send a notification email on mirror update errors See merge request gitlab-org/gitlab-ee!8801
-
GitLab Bot authored
-
Marcia Ramos authored
Update automatic merging documentation See merge request gitlab-org/gitlab-ce!23689
-
GitLab Bot authored
-
Bob Van Landuyt authored
The patterns are now built differently so the specs are updated to reflect that. Added a spec to make sure we're not accidentally matching partial folder names.
-
Mark Chao authored
-
Bob Van Landuyt authored
When wanting to match files in the repo root, but only on the repo's root. Users would supply `/*` as the pattern. In our old implementation we would match this pattern as `*`, but allowing `*` to match directory separators. In this we treat the `/*` pattern as an entirely separate case: Matching all files in the root, but only one level deep.
-
Stan Hu authored
Specify sass ~> 3.5 in Gemfile See merge request gitlab-org/gitlab-ce!23716
-
Marcia Ramos authored
Docs: Add spaces before code snippets in vuex.md See merge request gitlab-org/gitlab-ce!23737
-
Sean McGivern authored
Fix issuables sort direction button parameters Closes #55133 See merge request gitlab-org/gitlab-ce!23744
-
Kamil Trzciński authored
Add license management reports and parser See merge request gitlab-org/gitlab-ee!8032
-
Grzegorz Bizon authored
-
Kamil Trzciński authored
Remove duplicated smartcard login button See merge request gitlab-org/gitlab-ee!8793
-
Marcia Ramos authored
Resolve "Follow-up from "Web IDE terminal documentation"" Closes #8812 See merge request gitlab-org/gitlab-ee!8805
-
Yorick Peterse authored
These lines were not handled by previous work to move EE code out of CE code, in most cases because our scripts did not cover all cases. This commit moves a variety of EE specific Ruby changes, with the exception of `prepend` calls, out of CE code.
-
Yorick Peterse authored
In `Elasticsearch::Git::Repository` we would define `path_to_repo` as follows: unless defined?(path_to_repo) def path_to_repo @path_to_repo.presence || raise(NotImplementedError, ...) end end Prior to this commit, this module would be included into `Repository` before it defined its own `path_to_repo` method, meaning we would not use the above definition as intended. However, this _only_ worked because the module was included before our custom definition. The `defined?(path_to_repo)` call would always return false, because `defined?` here checks for _class methods_, and not instance methods. As a result, when moving `prepend` in `Repository` to the end of the file, the above code would redefine `Repository#path_to_repo`. To resolve this, we use `method_defined?` instead of `defined?`, which allows us to check for the presence of an instance method. This ensures that `Repository#path_to_repo` does not get overwritten when we include this module.
-