- 17 Jan, 2019 1 commit
-
-
Mark Lapierre authored
Now that Resources don't share attributes, Fork doesn't have Project attributes. That caused the merge fork test to fail because it no longer had access to repository_http_location via Fork. Rather than give Fork Project attributes directly, we add a project attribute to Fork and populate it via the API at the end of the fabricate! method after the fork has been created via the UI. We also update the merge fork test to be slightly more concise and consistent with newer tests by using perform with proc coercion instead of act or perform with the full block syntax.
-
- 15 Jan, 2019 39 commits
-
-
Mark Lapierre authored
Allow Resources to have the same attribute name but different attribute values
-
Robert Speicher authored
Allow to quarantine tests See merge request gitlab-org/gitlab-ce!24369
-
Nick Thomas authored
API: Fix default branch protection setting for Admin API Closes #55111 See merge request gitlab-org/gitlab-ce!24398
-
Robert Schilling authored
-
Achilleas Pipinellis authored
Add more information and refactor format of branch-related API topics See merge request gitlab-org/gitlab-ce!24290
-
Evan Read authored
-
Achilleas Pipinellis authored
Add more information and refactor format of Avatar API topic See merge request gitlab-org/gitlab-ce!24258
-
Evan Read authored
-
Annabel Dunstone Gray authored
Increase line height of project summaries See merge request gitlab-org/gitlab-ce!24341
-
Lin Jen-Shin authored
i18n: externalize strings from 'app/views/search' See merge request gitlab-org/gitlab-ce!24297
-
Douwe Maan authored
Support Wiki pages with dots in slugs Closes #44780 See merge request gitlab-org/gitlab-ce!24383
-
Douwe Maan authored
Only send one notification for failed remote mirror Closes #56222 See merge request gitlab-org/gitlab-ce!24381
-
Douwe Maan authored
Fix duplicate project disk path in BackfillLegacyProjectRepositories Closes #56061 See merge request gitlab-org/gitlab-ce!24213
-
Tao Wang authored
Signed-off-by: Tao Wang <twang2218@gmail.com> Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
Kushal Pandya authored
Add syntax highlighting to suggestion preview Closes #55945 See merge request gitlab-org/gitlab-ce!24358
-
Jacques Erasmus authored
-
Achilleas Pipinellis authored
Document four backticks feature in markdown See merge request gitlab-org/gitlab-ce!24349
-
Evan Read authored
-
Nick Thomas authored
Add clear_credentials method to ProjectImportData See merge request gitlab-org/gitlab-ce!24373
-
Phil Hughes authored
Optimization of setup of Main Nav Layout, Contextual Sidebar and Fly Out Nav Closes #56257 See merge request gitlab-org/gitlab-ce!24362
-
Tim Zallmann authored
-
Kamil Trzciński authored
Refactor only/except configuration policies See merge request gitlab-org/gitlab-ce!24359
-
Rémy Coutable authored
Fix failing MySQL spec due to deadlock condition Closes #55161 See merge request gitlab-org/gitlab-ce!24378
-
Grzegorz Bizon authored
-
Lin Jen-Shin authored
Ignore Repository::AmbiguousRefError in db/fixtures/development See merge request gitlab-org/gitlab-ce!24366
-
Grzegorz Bizon authored
Introduce `default:` configuration entry setting that makes it possible to configure a default value of an entry, what overrides class-level `def self.default` value.
-
Filipa Lacerda authored
Backporting a change in ee branch See merge request gitlab-org/gitlab-ce!23559
-
Phil Hughes authored
Resolve "When merging an MR, the squash checkbox isn't always supported" Closes #52278 See merge request gitlab-org/gitlab-ce!24296
-
Natalia Tepluhina authored
-
Grzegorz Bizon authored
Remove cancel all jobs button in general jobs list view Closes #34665 See merge request gitlab-org/gitlab-ce!24010
-
Stan Hu authored
Retries in Sidekiq and in the remote mirror scheduler can cause repeated attempts in quick succession if the sync fails. Each failure will then send an e-mail to all project maintainers, which can spam users unnecessarily. Modify the logic to send one notification the first time the mirror fails by setting `error_notification_sent` to `true` and reset the flag after a successful sync. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/56222
-
Robert Schilling authored
-
gfyoung authored
Taller letters like "g" were getting slightly cutoff before.
-
Kushal Pandya authored
Make parseBoolean idempotent See merge request gitlab-org/gitlab-ce!24365
-
Winnie Hellmann authored
-
Stan Hu authored
`spec/features/uploads/user_uploads_file_to_note_spec.rb` was failing in master because MySQL detected a deadlock when a DELETE and INSERT for the same indexed item occurred within a transaction in the `uploads` table. Due to InnoDB's next-key locking algorithm (innodb_locks_unsafe_for_binlog in https://dev.mysql.com/doc/refman/5.5/en/innodb-parameters.html), InnoDB sets an exclusive lock for any of the indexed records it encounters, so the INSERT will fail until the DELETE is committed. To fix this, we just disable the transaction for MySQL and keep it for PostgreSQL. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/55161
-