Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-07-12Merge branch 'qa-nightly-115-fix-retry-until' into 'master'12-1-auto-deploy-0011943Dan Davison
CE port of "Fix page refresh in retry_until" See merge request gitlab-org/gitlab-ce!30656 (cherry picked from commit d32cdb840f8ebb9ada32f428bede4db637287516) f4a4f6e2 Fix page refresh in retry_until
2019-07-12Merge branch '63667-hashed-storage-migration-count-correctly' into 'master'Douglas Barbosa Alexandre
Display the amount for Hashed Storage migration/rollback correctly Closes #63667 See merge request gitlab-org/gitlab-ce!29996 (cherry picked from commit 06b8fe5607f2419f0171da8d4c3149b006ee9736) c1fe76f1 Added the `abort_execution` matcher d8cad883 Display the amount for Hashed Storage migration/rollback correctly
2019-07-12Merge branch 'id-clean-up-mr-assignees-migration' into 'master'Andreas Brandl
Add cleanup migration for MR's multiple assignees See merge request gitlab-org/gitlab-ce!30269 (cherry picked from commit 5ea899d34f6332733bb5aee225c5f3ced340cb24) 184807b2 Add cleanup migration for MR's mutliple assignees
2019-07-12Merge branch 'id-clean-up-mr-assignees' into 'master'Douwe Maan
Backports of "Remove feature flag behind MR's multiple assignees" See merge request gitlab-org/gitlab-ce!30261 (cherry picked from commit ae944b362b8e7efa2c40c0ce8e9354d5fe5dbbaa) 921314d7 Backports of removing feature flag for multiple MR assignees
2019-07-11Merge branch 'banzai-avoid-redis-if-db-cache' into 'master'Douwe Maan
Banzai - avoid redis if attr is in DB cache See merge request gitlab-org/gitlab-ce!30334 (cherry picked from commit 92fac459533d5afeea3b302ca7634767e0ff110b) e5705f5c Banzai - avoid redis if attr is in DB cache
2019-07-11Merge branch 'sl-stablise-basic-login-spec' into 'master'Dan Davison
Fix basic login test stability Closes gitlab-org/quality/staging#57 See merge request gitlab-org/gitlab-ce!30446 (cherry picked from commit 2233e27b31b37d43ca8116ebc31a21dc09b190db) e16f224e Retry sign out if unsuccessful d920f705 Use retry on exception d4466ea9 Revert to using retry_until
2019-07-10Merge branch 'fixed-dropdown-hover-styles' into 'master'Annabel Dunstone Gray
Fixed dropdown hover styles Closes #64330 and #64340 See merge request gitlab-org/gitlab-ce!30534 (cherry picked from commit 473d36d1acc016b6cc494d1568bc31371531c724) 91fff39e Fixed dropdown hover styles
2019-07-09Merge branch 'osw-bypass-push-rules-for-merge-to-ref' into 'master'Stan Hu
[CE port] Bypass push rules for merge to ref service See merge request gitlab-org/gitlab-ce!30426 (cherry picked from commit b2ecc8098a4dce8d1e3d8adfaadec91ad54b0585) 84dd3149 [CE port] Bypass push rules for merge to ref service
2019-07-09Merge branch 'dropdown-styling-fixes' into 'master'Mike Greiling
Fix dropdown styling issues Closes #64250 See merge request gitlab-org/gitlab-ce!30477 (cherry picked from commit 54820ac996f29c4c6af084def7d5efdaf70b3f05) 63c84a9a Fix dropdown styling issues
2019-07-09Merge branch 'pb-fix-confidential-mr-dropdown-typo' into 'master'Phil Hughes
Fix typo on confidential MR dropdown See merge request gitlab-org/gitlab-ce!30499 (cherry picked from commit da642f80820eb5604684d8fcbb99a69cadd3b84e) f47ad4d6 Fix typo on confidential MR dropdown
2019-07-09Merge branch 'allow-reactive-caching-of-nil' into 'master'Stan Hu
Allow ReactiveCaching to support nil value See merge request gitlab-org/gitlab-ce!30456 (cherry picked from commit 56e3fc40b80b8f2231f15d57c73d3f5995f01eca) 67de299b Allow ReactiveCaching to support nil value 020289fa Change changelog type to performance
2019-07-09Merge branch '64134-edit-comment' into 'master'Kushal Pandya
Resolve "Clicking edit button in a thread reply doesn’t work" Closes #64134 See merge request gitlab-org/gitlab-ce!30424 (cherry picked from commit bf172b115c206cb6ed6c2b271fad600f1548b43c) 15f54835 Fixed editing form
2019-07-08Merge branch 'run-pipeline-for-merge-train-at-train-ref-ce' into 'master'Kamil Trzciński
CE Port: Fix race condition of `refs/merge` competing overwrite See merge request gitlab-org/gitlab-ce!30308 (cherry picked from commit 734f0240cc0eb8a86b0eab33f1abfe6db207669e) f8d6f732 Fix race condition on merge train ref generation
2019-07-06Merge branch 'sh-disable-reactive-caching-automatic-retries' into 'master'Nick Thomas
Prevent amplification of ReactiveCachingWorker jobs upon failures Closes #64176 See merge request gitlab-org/gitlab-ce!30432
2019-07-06Merge branch 'sh-upgrade-rouge-3.5.1' into 'master'Grzegorz Bizon
Upgrade Rouge to 3.5.1 See merge request gitlab-org/gitlab-ce!30431
2019-07-06Merge branch 'revert-01c917e3' into 'master'Thong Kuah
Revert "Increase rspec parallelism" See merge request gitlab-org/gitlab-ce!30429
2019-07-06Upgrade Rouge to 3.5.1Stan Hu
This release includes continued improvements to the library, fixes for a number of lexers and support for three new languages: https://github.com/rouge-ruby/rouge/releases
2019-07-06Prevent amplification of ReactiveCachingWorker jobs upon failuresStan Hu
When `ReactiveCachingWorker` hits an SSL or other exception that occurs quickly and reliably, automatically rescheduling a new worker could lead to excessive number of jobs being scheduled. This happens because not only does the failed job get rescheduled in a minute, but each Sidekiq retry will also add even more rescheduled jobs. In busy instances, this can become an issue because large numbers of `ReactiveCachingWorker` running can cause high rates of `ExclusiveLease` reads to occur and possibly saturate the Redis server with queries. We now disable this automatic retry and rely on Sidekiq to perform its 3 retries with a backoff period. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/64176
2019-07-06Merge branch 'winh-notes-service-applySuggestion' into 'master'Fatih Acet
Remove applySuggestion from notes service See merge request gitlab-org/gitlab-ce!30399
2019-07-06Remove applySuggestion from notes serviceWinnie Hellmann
2019-07-06Revert "Merge branch '63825-increase-rspec-parallelism' into 'master'"Nick Thomas
This reverts merge request !30130
2019-07-06Merge branch '64176-fix-error-handling' into 'master'Mayra Cabrera
Fix invalid SSL certificate errors on Drone CI service See merge request gitlab-org/gitlab-ce!30422
2019-07-06Add OpenSSL::OpenSSLError to HTTP_ERRORSDouglas Barbosa Alexandre
Some services can raise OpenSSL::X509::CertificateError due to an invalid SSL certificates, with OpenSSL::OpenSSLError we can handle these errors.
2019-07-05Merge branch 'dm-queue-mirror-jobs-in-batches-drain-ce' into 'master'Bob Van Landuyt
Add queue_size method to ApplicationWorker See merge request gitlab-org/gitlab-ce!30416
2019-07-05Merge branch 'docs/edit-job-artifacts-text' into 'master'Achilleas Pipinellis
Edit text, using correct terms See merge request gitlab-org/gitlab-ce!30382
2019-07-05Edit text, using correct termsEvan Read
2019-07-05Merge branch 'update-license-management-docs' into 'master'Achilleas Pipinellis
Added experimental languages to license management docs. See merge request gitlab-org/gitlab-ce!29932
2019-07-05Added experimental languages to license management docs.Zachary Knight
2019-07-05Merge branch 'qa-fix-issue-resource' into 'master'Walmyr
Fix failing e2e tests - initialize Issue labels See merge request gitlab-org/gitlab-ce!30375
2019-07-05Add queue_size method to ApplicationWorkerDouwe Maan
2019-07-05Merge branch '63976-discussion-sticky-header' into 'master'Phil Hughes
Fix top position of sticky file header on discussion tab Closes #63976 See merge request gitlab-org/gitlab-ce!30410
2019-07-05Merge branch 'docs/edit-gitlab-com-visibility-text' into 'master'Achilleas Pipinellis
Edit new text on visibility setting See merge request gitlab-org/gitlab-ce!30281
2019-07-05Edit new text on visibility settingEvan Read
2019-07-05Merge branch 'fix_document_for_install_from_source-docs' into 'master'Achilleas Pipinellis
Documentation: Update installation from source document See merge request gitlab-org/gitlab-ce!30380
2019-07-05Update installation.mdKyohei Uemura
Line 170(make install) causes permission error. This command should execute with sudo.
2019-07-05Merge branch 'issue-61565' into 'master'Annabel Dunstone Gray
Remove unresolved class and fixed height in discussion header See merge request gitlab-org/gitlab-ce!28440
2019-07-05Remove unresolved class and fixed height in discussion headerDavid Palubin
2019-07-05Merge branch 'docs-its-relative-8' into 'master'Achilleas Pipinellis
Docs: Change even more absolute links to relative See merge request gitlab-org/gitlab-ce!30387
2019-07-05Change absolute links to relativeMarcel Amirault
Change assorted absolute links to ce and ee docs to relative links
2019-07-05Fix top position of sticky file header on discussion tabAnnabel Dunstone Gray
2019-07-05Merge branch '12550-fullscrean' into 'master'Phil Hughes
Removes EE differences for app/views/layouts/fullscreen.html.haml Closes gitlab-ee#12550 See merge request gitlab-org/gitlab-ce!30403
2019-07-05Merge branch '51794-add-ordering-to-runner-jobs-api' into 'master'Lin Jen-Shin
Adding order by to list runner jobs api. Closes #51794 See merge request gitlab-org/gitlab-ce!29629
2019-07-05Merge branch 'ce-10283-notifications-for-ci-minutes-quota-limit-approaching' ↵James Lopez
into 'master' Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14328 See merge request gitlab-org/gitlab-ce!30003
2019-07-05Merge branch 'zj-remove-stale-feature-flag-keys' into 'master'Andreas Brandl
Remove unused Gitaly feature flags See merge request gitlab-org/gitlab-ce!30302
2019-07-05Merge branch 'create-merge-train-ref-ce' into 'master'Douwe Maan
CE Port: Extend `MergeToRefService` to create merge ref from an arbitrary ref See merge request gitlab-org/gitlab-ce!30361
2019-07-05Merge branch 'make-explicit-endpoint-abort-in-auto-merge-ce' into 'master'Kamil Trzciński
CE Port: Split AutoMergeService interfaces into two `cancel` and `abort` See merge request gitlab-org/gitlab-ce!30249
2019-07-05Merge branch 'fetch-forked-projects-create-mr' into 'master'Filipa Lacerda
Create private merge requests in forks Closes #58583 See merge request gitlab-org/gitlab-ce!29984
2019-07-05Merge branch 'ce-12464-remove-gitpushservice' into 'master'Lin Jen-Shin
Fix call to removed GitPushService See merge request gitlab-org/gitlab-ce!30222
2019-07-05Merge branch '12553-preferences' into 'master'Phil Hughes
Removes EE differences for app/views/profiles/preferences/show.html.haml Closes gitlab-ee#12553 See merge request gitlab-org/gitlab-ce!30397
2019-07-05Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14328Rubén Dávila