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
path: root/spec
AgeCommit message (Collapse)Author
2019-07-26Merge branch 'frozen_string_spec_factories' into 'master'Michael Kozono
Add frozen_string_literal to spec/factories See merge request gitlab-org/gitlab-ce!31129
2019-07-26Fix pid discovery for Unicorn in PidProviderAleksei Lipniagov
2019-07-26Merge branch 'remove-nested-groups-checks' into 'master'Lin Jen-Shin
Remove code related to object hierarchy and MySQL Closes #65056 and #65055 See merge request gitlab-org/gitlab-ce!31095
2019-07-26Merge branch 'mc/feature/find-all-artifacts-for-sha' into 'master'Robert Speicher
Find build by sha from ref Closes #64534 and #45697 See merge request gitlab-org/gitlab-ce!30843
2019-07-26Merge branch 'remove_deployment_metrics_deployment_platform_fallback' into ↵Kamil Trzciński
'master' Remove fallback to deployment_platform_cluster in `DeploymentMetrics` See merge request gitlab-org/gitlab-ce!31126
2019-07-26Add severity for vulnerabilitiesTetiana Chupryna
2019-07-26Merge branch 'dm-submodule-links-nil' into 'master'Nick Thomas
Fix error rendering submodules in MR diffs when there is no .gitmodules See merge request gitlab-org/gitlab-ce!31162
2019-07-26Fix error rendering submodules in MR diffs when there is no .gitmodulesDouwe Maan
Without this change, we get a NoMethodError on nil
2019-07-26Karma: Fix css selector for loading iconLukas 'Eipi' Eipert
The GitLab UI update changed the spinner selector from `spinner` to `gl-spinner`, so we need to update it, so that our tests won't fail.
2019-07-26Add UndoStack class - a custom undo/redo engineMartin Hanzel
It will be hooked up to the markdown editor later
2019-07-26Ensure Warden triggers after_authentication callbackImre Farkas
By not triggering the callback: - ActiveSession lookup keys are not cleaned - Devise also misses its hook related to session cleanup
2019-07-26Merge branch '63568-access-email-notifications-custom-email' into 'master'Lin Jen-Shin
Respect alt email when sending group access notifications See merge request gitlab-org/gitlab-ce!31089
2019-07-26Respect alt email when sending group access notificationsMario de la Ossa
When sending access granted/rejected emails we should also respect custom emails set for groups/sub-groups
2019-07-26Feature test for gfm embedding metricsTristan Read
2019-07-26Add frozen_string_literal to spec/factoriesThong Kuah
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
2019-07-26Extract common spec elements to shared_examplesMatija Čupić
2019-07-26Merge branch '65088-incorrect-message-interpolation-on-project-listing' into ↵Fatih Acet
'master' Resolve "Incorrect message interpolation on project listing" Closes #65088 See merge request gitlab-org/gitlab-ce!31121
2019-07-26Rename latest_successful to be more explicitMatija Čupić
* Reword Project#latest_successful_build_for to Project#latest_successful_build_for_ref * Reword Ci::Pipeline#latest_successful_for to Ci::Pipeline#latest_successful_build_for_ref
2019-07-26Merge branch 'print-sidekiq-class-name-in-memory-killer' into 'master'Stan Hu
Logging sidekiq worker class name in SidekiqMemoryKiller See merge request gitlab-org/gitlab-ce!30996
2019-07-25Add default for outbound_local_requests_whitelistThong Kuah
It needs to default to an empty array logically.
2019-07-25Update namespace label text for managed clustersJacques Erasmus
Added the ability to update the namespace label text for gitlab-managed
2019-07-25Merge branch 'frozen_string_spec_support' into 'master'Douwe Maan
Add frozen_string_literal to spec/support See merge request gitlab-org/gitlab-ce!31132
2019-07-25Merge branch 'label-descr-push-opts' into 'master'Lin Jen-Shin
Support title and desc on merge w/ push option See merge request gitlab-org/gitlab-ce!31068
2019-07-25Merge branch '54478-table_exists-not-compatible-with-rails-5-1' into 'master'Douglas Barbosa Alexandre
Resolve "table_exists? not compatible with Rails 5.1" Closes #54478 See merge request gitlab-org/gitlab-ce!30832
2019-07-25Merge branch 'sh-support-docker-oci-images' into 'master'Dmitriy Zaporozhets
Support Docker OCI images Closes gitlab-ee#12877 and #58685 See merge request gitlab-org/gitlab-ce!31127
2019-07-25Merge branch 'refactor-redis-usage-counter-specs' into 'master'Nick Thomas
Refactor usage data counters specs See merge request gitlab-org/gitlab-ce!31013
2019-07-25Frozen string cannot change encodingThong Kuah
This was shown in specs but surely this will be happening in application code as well if this method is passes a frozen string. We were also trying to force_encode a OmniAuth::AuthHash which had the very confusing behaviour of returning nil when it was sent a method that it did not define. Fix that by only force_encoding a String.
2019-07-25Support Docker OCI imagesStan Hu
Docker Distribution v2.7.0 shipped with OCI support, but our container registry client was not updated to handle the manifest format in the HTTP `Accept` header. As a result, API calls to retrieve a manifest would return with an error, "OCI manifest found, but accept header does not support OCI manifests". This would result in blank fields in the container registry page and prevent tags from being deleted. To fix this, we just need to add `application/vnd.oci.image.manifest.v1+json` to the `Accept` header and configure Faraday to parse the response as JSON. The response structure is the same as the standard Docker Distribution V2 manifest. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/58685 Closes https://gitlab.com/gitlab-org/gitlab-ee/issues/12877
2019-07-25Merge branch 'add-caching-to-archive-endpoint' into 'master'Grzegorz Bizon
Return an ETag header for the archive endpoint See merge request gitlab-org/gitlab-ce!30581
2019-07-25Logging sidekiq worker class name in SidekiqMemoryKillerShinya Maeda
Currently, SidekiqMemoryKiller does not feed worker class name in the json structured logging. This commit extends the json parameter.
2019-07-25Fix frozen string errorThong Kuah
2019-07-25Merge branch 'rs-spec-parity' into 'master'Lin Jen-Shin
Partial CE-EE parity for specs See merge request gitlab-org/gitlab-ce!31119
2019-07-25Remove code related to object hierarchy in MySQLHeinrich Lee Yu
These are not required because MySQL is not supported anymore
2019-07-25Merge branch 'make-relative-positioning-module-reusable' into 'master'Bob Van Landuyt
Make RelativePositioning reusable See merge request gitlab-org/gitlab-ce!30993
2019-07-25Add frozen_string_literal to spec/supportThong Kuah
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
2019-07-25Removes potentially incorrect, and slow fallbackThong Kuah
Deployment_platform is relatively expensive and calling this after the fact means that this may not be the cluster that was deployed to. Correspondingly reduce the leeway given in the related N+1 spec
2019-07-25Remove unneeded monkey-patchHeinrich Lee Yu
Changes all calls to data_source_exists? to table_exists? since that is the intent of these calls
2019-07-25Fix incorrect use of message interpolationAlex Kalderimis
Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/65088
2019-07-24Copy private_access_spec from EERobert Speicher
2019-07-24Copy dashboard fixture schema from EERobert Speicher
2019-07-24CE-EE parity for spec/viewsRobert Speicher
2019-07-24CE-EE parity for interpret_service_specRobert Speicher
2019-07-24Add RateLimiter to RawControllerMayra Cabrera
* Limits raw requests to 300 per minute and per raw path. * Add a new attribute to ApplicationSettings so user can change this value on their instance. * Uses Gitlab::ActionRateLimiter to limit the raw requests. * Add a new method into ActionRateLimiter to log the event into auth.log Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/48717
2019-07-24Merge branch '63730-fix-500-status-labels-pd' into 'master'Robert Speicher
Add where condition to filter out labels with type here Closes #63730 See merge request gitlab-org/gitlab-ce!30885
2019-07-24Merge branch 'cleanup/spec-tasks' into 'master'Douwe Maan
Resolves confusion within spec rake tasks. See merge request gitlab-org/gitlab-ce!31073
2019-07-24Merge branch '62217-follow-up-from-fix-display-of-promote-to-group-label' ↵Douwe Maan
into 'master' Remove project param from `#show_label_issuables_link?` Closes #62217 See merge request gitlab-org/gitlab-ce!31038
2019-07-24Merge branch '62128-remove-ignore-rule-for-project-auto-devops-domain' into ↵Douwe Maan
'master' Remove ignore rule for ProjectAutoDevops#domain See merge request gitlab-org/gitlab-ce!30989
2019-07-24Merge branch 'optimise-import-performance' into 'master'Stan Hu
Optimise import performance Closes #64924 See merge request gitlab-org/gitlab-ce!31045
2019-07-24[ADD] outbound requests whitelistReuben Pereira
Signed-off-by: Istvan szalai <istvan.szalai@savoirfairelinux.com>
2019-07-24Merge branch 'sh-peek-cleanup' into 'master'Douglas Barbosa Alexandre
Use a base class for Peek views See merge request gitlab-org/gitlab-ce!31108