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-30Ignore Gitaly errors if cache flushing fails on project destructionStan Hu
We should just ignore these errors and move along with the deletion since the repositories are going to be trashed anyway. Closes https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/31164
2019-07-30Merge branch 'determinstic_dns_specs' into 'master'Douglas Barbosa Alexandre
Have deterministic DNS for specs See merge request gitlab-org/gitlab-ce!31086
2019-07-30Merge branch 'sh-update-rouge-3.7.0' into 'master'Thong Kuah
Update rouge to v3.7.0 Closes #64625 See merge request gitlab-org/gitlab-ce!31254
2019-07-30Merge branch ↵Robert Speicher
'63547-add-system-notes-for-when-a-zoom-call-was-added-removed-from-an-issue' into 'master' Resolve "Add system notes for when a zoom call was added/removed from an issue" Closes #63547 See merge request gitlab-org/gitlab-ce!30857
2019-07-30Move BaseService to Services directorySarah Yasonik
In preparation for embedding specific metrics in issues https://gitlab.com/gitlab-org/gitlab-ce/issues/62971, this commit moves the BaseService for metrics dashboards to a new services subdirectory. This is purely for the sake of organization and maintainability.
2019-07-30Update rouge to v3.7.0Stan Hu
This adds support for a number of new languages (e.g. Ada) and fixes a number of lexers: https://github.com/rouge-ruby/rouge/compare/v3.5.1..v3.7.0 Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/64625
2019-07-30Make quick action "commands applied" banner more useful🙈 jacopo beschi 🙉
Extends the quick actions "commands applied" banner to show the quick action preview text, but with everything in past tense.
2019-07-30Stub DNS to return IPv4 addressThong Kuah
Otherwise certain machines return IPv6 first, which is non-deterministic
2019-07-30Explicitly reject non http(s) schemesThong Kuah
Rather than relying on NoMethodError deep inside faraday
2019-07-30Write out sham_rack gemThong Kuah
This means we have one less Net::HTTP monkeypatch. sham_rack cannot handle IPv6 addresses which means it breaks Net::HTTP connections because it monkey-patches Net::HTTP
2019-07-29Add system notes for when a zoom call was added/removed from an issueJacopo
Add a zoom link added / removed system note when a zoom link is being added / removed to the issue description.
2019-07-29Merge branch 'tp-qtt182-6' into 'master'Mayra Cabrera
Change qa-merge-request-settings to rspec-merge-request-settings Closes gitlab-org/quality/team-tasks#182 See merge request gitlab-org/gitlab-ce!31207
2019-07-29Change qa-* class references to js-* for suggestionsTanya Pazitny
2019-07-29Change qa-* class references to js-* for squash-checkboxTanya Pazitny
2019-07-29Change qa-reverse-sort class references to rspec-reverse-sortTanya Pazitny
2019-07-29Change qa-* class references to rspec-* in ↵Tanya Pazitny
spec/features/contextual_sidebar_spec.rb
2019-07-29Merge branch 'tp-qtt182-7' into 'master'Mayra Cabrera
Change qa-issuable-form-description to rspec-issuable-form-description Closes gitlab-org/quality/team-tasks#182 See merge request gitlab-org/gitlab-ce!31209
2019-07-29Change qa-full-name to rspec-full-nameTanya Pazitny
2019-07-29Change qa-* class references to rspec-* for repository settingsTanya Pazitny
2019-07-29Merge branch 'tp-qtt182-3' into 'master'Mayra Cabrera
Change qa-create-page-button to rspec-create-page-button Closes gitlab-org/quality/team-tasks#182 See merge request gitlab-org/gitlab-ce!31204
2019-07-29Merge branch 'tp-qtt182-4' into 'master'Mayra Cabrera
Change qa-* to rspec-* for save-merge-request-changes Closes gitlab-org/quality/team-tasks#182 See merge request gitlab-org/gitlab-ce!31205
2019-07-29Merge branch 'tp-qtt182-2' into 'master'Mayra Cabrera
Change qa-* class references to rspec-* for `allowed-to-{push|merge}-dropdown` Closes gitlab-org/quality/team-tasks#182 See merge request gitlab-org/gitlab-ce!31203
2019-07-29Migrations for adding issue_id to versions tableLuke Duncalfe
These migrations do the following: - Adds a new `issue_id` column to `versions`. This fixes an n+1 problem when loading versions for an issue in GraphQL as AR can now load from cache - Change the unique restraint on versions.sha to be scoped to `issue_id` as in order to import version data, we need to allow duplicate `sha` values for versions - Update all versions with an `issue_id` https://gitlab.com/gitlab-org/gitlab-ee/issues/11090
2019-07-29Merge branch 'master' of dev.gitlab.org:gitlab/gitlabhqRobert Speicher
2019-07-29Merge branch 'resolve-spec-differences' into 'master'Lin Jen-Shin
Resolve EE specific differences in the spec/ directory See merge request gitlab-org/gitlab-ce!31109
2019-07-29Merge branch 'remove-peek-pg' into 'master'Stan Hu
Replace peek-pg with our own implementation Closes #44441 See merge request gitlab-org/gitlab-ce!31187
2019-07-29Merge branch 'resolve-scripts-differences' into 'master'Lin Jen-Shin
Backport EE changes made to the scripts/ directory See merge request gitlab-org/gitlab-ce!31015
2019-07-29Merge branch 'ab-remove-postgresql-switches' into 'master'Nick Thomas
Further remove `if postgresql?` branches Closes #65054 See merge request gitlab-org/gitlab-ce!31102
2019-07-29Fix whitespace in wiki link filtering specsYorick Peterse
This ensures this spec is the same in both CE and EE.
2019-07-29Make usage content spec the same for CE and EEYorick Peterse
This changes the spec in question so that it is the same for both CE and EE. This requires an `if Gitlab.ee?` since EE requires that we stub an EE specific module, but doing so in CE will break the spec there.
2019-07-29Make protected tags spec the same for CE and EEYorick Peterse
This changes a protected tags feature spec so that it is the same in both CE and EE. This requires the use of a `if Gitlab.ee?` check, as the added lines don't work in CE but do work in EE. Removing them entirely in turn breaks the EE spec.
2019-07-29Backport ToDo feature specs from EEYorick Peterse
This ensures that both CE and EE have the same specs.
2019-07-29Backport EE changes for the schema specsYorick Peterse
This backports two EE specific changes made to the schema changes. We do not yet backport the EE prepend, as this will/can be done when https://gitlab.com/gitlab-org/gitlab-ce/issues/58170 is implemented.
2019-07-29Backport EE changes made to the scripts/ directoryYorick Peterse
This backport changes made by EE to the files in the scripts/ directory. This comes with a few changes to some scripts to make them work in the single codebase setup.
2019-07-29Adds direct monitoring for sidekiq metricsRyan Cobb
This adds diirect monitoring for sidekiq metrics. This is done via sidekiq middleware and a sampler to pull from sidekiqs api.
2019-07-29Merge branch 'add-git-blame-api' into 'master'Nick Thomas
Expose git blame in api Closes #51345 See merge request gitlab-org/gitlab-ce!30675
2019-07-29Further remove code branches by database typeAndreas Brandl
We dropped MySQL support and a lot of mysql specific code has been removed in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/29608. This comes in from the other direction and removes any `if postgresql?` branches.
2019-07-29Added navbar searches usage ping counterFrancisco Javier López
Added usage ping counter when the user makes a search through the navbar search component.
2019-07-29Merge branch 'frozen_string_spec_features' into 'master'Rémy Coutable
Add frozen_string_literal to spec/features See merge request gitlab-org/gitlab-ce!31131
2019-07-29Add Job specific variablesMatija Čupić
Adds Job specific variables to facilitate specifying variables when running manual jobs.
2019-07-29Merge branch ↵Kushal Pandya
'61787-the-colour-selector-for-broadcast-messages-should-provide-a-few-default-options-with-descriptive-labels-like-red-green-blue' into 'master' Resolve "Add color selector for broadcast messages" Closes #61787 See merge request gitlab-org/gitlab-ce!30988
2019-07-29Remove unused Clusters::RefreshServiceTiger
Also removes all logic from ClusterConfigureWorker and ClusterProjectConfigureWorker, which are also no longer used.
2019-07-27Revert "Merge branch '52123-issuable-actions-notesfinder-pderichs' into ↵Stan Hu
'master'" This reverts merge request !29733
2019-07-27Merge branch '52123-issuable-actions-notesfinder-pderichs' into 'master'Stan Hu
Use NotesFinder to fetch notes in module IssuableActions Closes #52123 See merge request gitlab-org/gitlab-ce!29733
2019-07-27Change qa-* class references to rspec-*Tanya Pazitny
2019-07-27Change qa-* class references to rspec-*Tanya Pazitny
2019-07-27Change qa-* class references to rspec-*Tanya Pazitny
2019-07-27Change qa-* class references to rspec-*Tanya Pazitny
2019-07-27Change qa-* class references to rspec-*Tanya Pazitny
2019-07-27Merge branch '19186-redirect-wiki-git-route-to-wiki' into 'master'Stan Hu
Redirect project.wiki.git to project wiki home See merge request gitlab-org/gitlab-ce!31085