- 24.01.2018 40 коммитов
-
-
tauriedavis создал
Add note within ux documentation that further changes should be made within the design.gitlab project
-
Yorick Peterse создал
Use limit for search count queries See merge request gitlab-org/gitlab-ce!16502
-
Robert Speicher создал
Use the DatabaseCleaner 'deletion' strategy instead of 'truncation' Closes #30783 See merge request gitlab-org/gitlab-ce!16516
-
Robert Speicher создал
Migrate .batch_lfs_pointers to Gitaly Closes gitaly#921 See merge request gitlab-org/gitlab-ce!16517
-
Robert Speicher создал
Execute system hooks after-commit when executing project hooks See merge request gitlab-org/gitlab-ce!16673
-
Nick Thomas создал
-
-
Robert Speicher создал
Resolve "Spec failure in ./spec/features/issues/spam_issues_spec.rb" Closes #42361 See merge request gitlab-org/gitlab-ce!16671
-
Nick Thomas создал
-
Nick Thomas создал
-
Robert Speicher создал
Remove one Spinach job and add one RSpec job See merge request gitlab-org/gitlab-ce!16675
-
Robert Speicher создал
Migrate repository bundling to Gitaly Closes gitaly#929 See merge request gitlab-org/gitlab-ce!16563
-
-
Robert Speicher создал
Fix typo in `.gitlab-ci.yml` heading See merge request gitlab-org/gitlab-ce!16668
-
Douwe Maan создал
Return more consistent values for merge_status on V4 MR APIs Closes #20639 See merge request gitlab-org/gitlab-ce!16626
-
Rémy Coutable создал
Add application create API Closes #24035 See merge request gitlab-org/gitlab-ce!16643
-
Douwe Maan создал
-
-
Oswaldo Ferreira создал
-
Filipa Lacerda создал
Added dispatcher imports for groups webpack bundle See merge request gitlab-org/gitlab-ce!16644
-
Mathijs de Kruyf создал
-
-
Rémy Coutable создал
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 создал
Added imports for dispatcher routes See merge request gitlab-org/gitlab-ce!16640
-
Filipa Lacerda создал
Use restore() instead of reset() for removing axios MockAdapter See merge request gitlab-org/gitlab-ce!16647
-
-
Grzegorz Bizon создал
GitalyClient::ConflictsService#conflicts? should return true for conflicts with missing side See merge request gitlab-org/gitlab-ce!16655
-
Grzegorz Bizon создал
Scrap the deploy key title and match it in test See merge request gitlab-org/gitlab-ce!16554
-
Phil Hughes создал
Resolve "Cannot copy/paste on iOS" Closes #32546 See merge request gitlab-org/gitlab-ce!15804
-
Phil Hughes создал
-
Phil Hughes создал
-
Phil Hughes создал
-
Toon Claes создал
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 создал
-
Nicolas MERELLI создал
-
Stan Hu создал
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 создал
-
Mike Greiling создал
-
Mike Greiling создал
Set timezone for karma CI job to Etc/UTC (UTC+0) Closes #42251 See merge request gitlab-org/gitlab-ce!16602
-
Jan Provaznik создал
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
-