- 24 Jan, 2018 37 commits
-
-
Yorick Peterse authored
Use limit for search count queries See merge request gitlab-org/gitlab-ce!16502
-
Robert Speicher authored
Use the DatabaseCleaner 'deletion' strategy instead of 'truncation' Closes #30783 See merge request gitlab-org/gitlab-ce!16516
-
Robert Speicher authored
Migrate .batch_lfs_pointers to Gitaly Closes gitaly#921 See merge request gitlab-org/gitlab-ce!16517
-
Robert Speicher authored
Execute system hooks after-commit when executing project hooks See merge request gitlab-org/gitlab-ce!16673
-
Nick Thomas authored
-
Ahmad Sherif authored
Closes gitaly#921
-
Robert Speicher authored
Resolve "Spec failure in ./spec/features/issues/spam_issues_spec.rb" Closes #42361 See merge request gitlab-org/gitlab-ce!16671
-
Nick Thomas authored
-
Nick Thomas authored
-
Robert Speicher authored
Remove one Spinach job and add one RSpec job See merge request gitlab-org/gitlab-ce!16675
-
Robert Speicher authored
Migrate repository bundling to Gitaly Closes gitaly#929 See merge request gitlab-org/gitlab-ce!16563
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Robert Speicher authored
Fix typo in `.gitlab-ci.yml` heading See merge request gitlab-org/gitlab-ce!16668
-
Douwe Maan authored
Return more consistent values for merge_status on V4 MR APIs Closes #20639 See merge request gitlab-org/gitlab-ce!16626
-
Rémy Coutable authored
Add application create API Closes #24035 See merge request gitlab-org/gitlab-ce!16643
-
Douwe Maan authored
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Oswaldo Ferreira authored
-
Filipa Lacerda authored
Added dispatcher imports for groups webpack bundle See merge request gitlab-org/gitlab-ce!16644
-
Mathijs de Kruyf authored
-
Ahmad Sherif authored
Closes gitaly#929
-
Rémy Coutable authored
Return a blank JSON response for a missing .js file to prevent Rails CSRF errors Closes #40771 See merge request gitlab-org/gitlab-ce!16664
-
Filipa Lacerda authored
Added imports for dispatcher routes See merge request gitlab-org/gitlab-ce!16640
-
Filipa Lacerda authored
Use restore() instead of reset() for removing axios MockAdapter See merge request gitlab-org/gitlab-ce!16647
-
Grzegorz Bizon authored
Speed-up setup-test-env See merge request gitlab-org/gitlab-ce!16621
-
Grzegorz Bizon authored
GitalyClient::ConflictsService#conflicts? should return true for conflicts with missing side See merge request gitlab-org/gitlab-ce!16655
-
Grzegorz Bizon authored
Scrap the deploy key title and match it in test See merge request gitlab-org/gitlab-ce!16554
-
Phil Hughes authored
Resolve "Cannot copy/paste on iOS" Closes #32546 See merge request gitlab-org/gitlab-ce!15804
-
Phil Hughes authored
-
Phil Hughes authored
-
Phil Hughes authored
-
Toon Claes authored
To make it more clear to developers that the entity exposes the application secret, define a separate entity that only should be used when the secret is needed (probably only on creation).
-
Toon Claes authored
-
Nicolas MERELLI authored
-
Stan Hu authored
The default 404 handler would return the Content-Type format based on the given format extension. This would cause the Rails CSRF protection to flag an error, since the .js extension gets mapped to text/javascript format. Closes #40771
-
Mike Greiling authored
-
Mike Greiling authored
-
- 23 Jan, 2018 3 commits
-
-
Mike Greiling authored
Set timezone for karma CI job to Etc/UTC (UTC+0) Closes #42251 See merge request gitlab-org/gitlab-ce!16602
-
Jan Provaznik authored
Search query is especially slow if a user searches a generic string which matches many records, in such case search can take tens of seconds or time out. To speed up the search query, we search only for first 1000 records, if there is >1000 matching records we just display "1000+" instead of precise total count supposing that with such amount the exact count is not so important for the user. Because for issues even limited search was not fast enough, 2-phase approach is used for issues: first we use simpler/faster query to get all public issues, if this exceeds the limit, we just return the limit. If the amount of matching results is lower than limit, we re-run more complex search query (which includes also confidential issues). Re-running the complex query should be fast enough in such case because the amount of matching issues is lower than limit. Because exact total_count is now limited, this patch also switches to to "prev/next" pagination. Related #40540
-
Oswaldo Ferreira authored
-