- 07 Dec, 2016 3 commits
-
-
Rémy Coutable authored
Use the pagination helper in the API EE port of gitlab-org/gitlab-ce!7920. See merge request !942
-
Marin Jankovski authored
Update Redis Sentinel HA password examples Fix Redis HA documentation to make sure `redis['master_password']` is used instead of the regular `redis['password']` to configure the `gitlab-rails` instance as the first will work in all scenarios. cc @jnijhof See merge request !943
-
Achilleas Pipinellis authored
Add a link to the "Guidelines for implementing Enterprise Edition feature" page See merge request !941
-
- 06 Dec, 2016 2 commits
-
-
Gabriel Mazetto authored
-
Robert Speicher authored
[EE] Update API spec files to describe the correct class Port of gitlab-org/gitlab-ce!7718 to EE. See merge request !940
-
- 05 Dec, 2016 6 commits
-
-
Drew Blessing authored
Include note about using user_filter syntax with special chars Fixes https://gitlab.com/gitlab-org/gitlab-ee/issues/1201 See merge request !882
-
Robert Schilling authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Valery Sizov authored
CE upstream merge - [x] .gitlab-ci.yml - [x] Gemfile.lock - [x] app/assets/stylesheets/pages/issuable.scss - [x] app/controllers/concerns/lfs_request.rb - [x] app/controllers/projects/git_http_controller.rb - [x] app/helpers/issuables_helper.rb - [x] app/models/concerns/protected_branch_access.rb - [x] app/models/protected_branch/merge_access_level.rb - [x] app/models/protected_branch/push_access_level.rb - [x] app/services/system_note_service.rb - [x] app/views/shared/issuable/_filter.html.haml - [x] app/views/shared/issuable/_form.html.haml - [x] app/views/shared/issuable/form/_metadata.html.haml - [x] db/schema.rb - [x] doc/web_hooks/web_hooks.md - [x] features/steps/project/wiki.rb - [x] lib/api/projects.rb - [x] lib/gitlab/git_access.rb - [x] spec/features/security/project/private_access_spec.rb - [x] spec/features/security/project/public_access_spec.rb - [x] spec/mailers/notify_spec.rb - [x] spec/services/merge_requests/merge_service_spec.rb - [x] spec/services/merge_requests/refresh_service_spec.rb - [x] spec/services/projects/destroy_service_spec.rb Merged changes https://gitlab.com/gitlab-org/gitlab-ce/compare/858602ea153056f6cbfeeb4114ea6e29aba03a7a...14046b9c734e5e6506d63276f39f3f9d770c3699 See merge request !937
-
Robert Speicher authored
Prevent remote mirrors from failing when project is in pending_delete We noticed on GitLab.com that remote mirrors were not even running. UpdateAllRemoteMirrorsWorker was failing on a project that was in pending_delete, preventing any workers from running. Closes gitlab-org/gitlab-ce#23650 See merge request !938
-
Valery Sizov authored
-
- 03 Dec, 2016 1 commit
-
-
Timothy Andrew authored
The models were incorrectly merged (this would have been avoided if !927 was merged in, but that MR is still review) leading to a few spec failures.
-
- 02 Dec, 2016 26 commits
-
-
Stan Hu authored
We noticed on GitLab.com that remote mirrors were not even running. UpdateAllRemoteMirrorsWorker was failing on a project that was in pending_delete, preventing any workers from running. Closes gitlab-org/gitlab-ce#23650
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Livier authored
Restore changes for api spec files Fix error in rspec Users Delete extra space Repositories-spec
-
Rémy Coutable authored
Speed up project snippet security request specs Part of https://gitlab.com/gitlab-org/gitlab-ce/issues/24899 See https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/7779 and https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/7813 EE sibling of https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/7890 See merge request !939
-
Sean McGivern authored
Save some queries on issuable dashboard. EE version of https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/7760. See merge request !935
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Valery Sizov authored
-
Valery Sizov authored
-
Valery Sizov authored
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Valery Sizov authored
-
Valery Sizov authored
-
Valery Sizov authored
-
Sean McGivern authored
-
Sean McGivern authored
-
Sean McGivern authored
-
Sean McGivern authored
Instead of doing n queries for n states, do one query to get all the counts grouped by state, and figure out what the count is for each state is from that. We can still cache the individual counts (it can't hurt), but this will help with initial load. Note that the `opened` scope on `Issuable` includes the `opened` and `reopened` states, which is why there's a special case.
-
Sean McGivern authored
`any?` on an AR relation performs a `SELECT COUNT`, which we don't need. 1. We are very likely to have issues or MRs, so the `SELECT COUNT` is often unnecessary. 2. Even where there are no items returned, the overhead of the `SELECT *` instead of `SELECT COUNT` is relatively small. Calling `to_a` on the relation lets us use `Enumerable#any?`, which will return immediately if there are objects returned.
-
Valery Sizov authored
-
Valery Sizov authored
-
Robert Speicher authored
Don't allow to specify a repo or version when installing Workhorse I've also updated the "patch version upgrade" doc since I did forget to update it in !6574. See merge request !7879
-
Douwe Maan authored
Pass commit data to ProcessCommitWorker This changes `ProcessCommitWorker` so that it takes a Hash containing commit data instead of a commit SHA. This means the worker doesn't have to access Git just to process a commit message (and other data it may use). This in turn should solve the problem of ending up with 15 000-something jobs in the `process_commit` queue that take forever to process. See merge request !7744
-
Douwe Maan authored
Allow public access to some Project API endpoints ## What does this MR do? This opens up a few endpoints in the Project API: - `GET /projects/visible` (returns public projects only) - `GET /projects/search/:query` (returns results only for public projects) - `GET /projects/:id` (only if the project is public) - `GET /projects/:id/events` (only if the project is public) - `GET /projects/:id/users` (only if the project is public) ## Are there points in the code the reviewer needs to double check? I've chosen to explicitly add `authenticate!` to GET methods that still need a current user. ## Does this MR meet the acceptance criteria? - [x] [Changelog entry](https://docs.gitlab.com/ce/development/changelog.html) added - [ ] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - [x] API support added - Tests - [x] Added for this feature/bug - [ ] All builds are passing Part of #4269 See merge request !7843
-
Rubén Dávila Santos authored
Expose add-ons associated to the license in /license endpoint. Closes #1286 See merge request !907
-
Alfredo Sumaran authored
Replace static fixture for notes_spec ## What does this MR do? Replace `comments.html.haml` and `issue_note.html.haml` used in `notes_spec.js` by dynamically created fixture. ## What are the relevant issue numbers? #24753 See merge request !7683
-
- 01 Dec, 2016 2 commits
-
-
Annabel Dunstone Gray authored
24726 Remove Across GitLab from side navigation ## What does this MR do? Removes Across GitLab header from side navigation ## Screenshots (if relevant) Before: ![Screen_Shot_2016-12-01_at_11.09.12_AM](/uploads/7a8c32a1736a55e0baedf071c21e98db/Screen_Shot_2016-12-01_at_11.09.12_AM.png) After: ![Screen_Shot_2016-12-01_at_11.09.02_AM](/uploads/4d095ec6e4e756abf0301678bb40d59b/Screen_Shot_2016-12-01_at_11.09.02_AM.png) ## Does this MR meet the acceptance criteria? - [ ] [Changelog entry](https://docs.gitlab.com/ce/development/changelog.html) added - [ ] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md) - [ ] API support added - Tests - [ ] Added for this feature/bug - [ ] All builds are passing - [ ] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html) - [ ] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [ ] Branch has no merge conflicts with `master` (if it does - rebase it please) - [ ] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) ## What are the relevant issue numbers? Closes #24726 See merge request !7883
-
tauriedavis authored
-