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
2018-10-16Merge branch '52477-add-iid-headers-to-emails' into 'master'Sean McGivern
Add IID headers to E-Mail notifications Closes #52477 See merge request gitlab-org/gitlab-ce!22263
2018-10-16Merge branch 'ide-file-templates-clear' into 'master'Filipa Lacerda
Fixed file templates not clearing in Web IDE Closes #52487 See merge request gitlab-org/gitlab-ce!22357
2018-10-16Add IID headers to E-Mail notificationsLukas Eipert
These headers can be used to build URLs for API requests. Good examples would be Issues and Merge Requests
2018-10-16Merge branch 'refactor-project-cluster-controller-specs' into 'master'Grzegorz Bizon
Project::ClustersController spec improvement See merge request gitlab-org/gitlab-ce!22346
2018-10-16Merge branch '51972-prometheus-not-showing-as-installed-even-though-it-is' ↵Sean McGivern
into 'master' Resolve "Prometheus not showing as installed, even though it is" Closes #51972 See merge request gitlab-org/gitlab-ce!22356
2018-10-16Revert back to go but use arguments for some casesThong Kuah
It has been pointed out that `go` is used quite extensively so it's not an unknown idiam here at GitLab. And we have arguments with `go` which is a plus.
2018-10-16Merge branch 'rails5-fix-utf' into 'master'Sean McGivern
Use InvalidUTF8ErrorHandler only for rails 4 Closes #51908 See merge request gitlab-org/gitlab-ce!22340
2018-10-16Show available clusters when installed or updatedPeter Leitzen
Before this commit updating Prometheus (e.g. adding alerts) made it "updated" therefore not installed.
2018-10-16Merge branch 'da-fix-does-not-import-projects-over-ssh' into 'master'Stan Hu
Does not allow a SSH URI when importing a project See merge request gitlab-org/gitlab-ce!22309
2018-10-16Does not allow an import_url with SSH protocolDouglas Barbosa Alexandre
2018-10-15Replace `<i>` in vue components with `<icon>`George Tsiolis
2018-10-15Merge branch 'sh-remove-koding' into 'master'Douwe Maan
Remove Koding integration and documentation Closes #39697 See merge request gitlab-org/gitlab-ce!22334
2018-10-15Merge branch ↵Clement Ho
'52532-unable-to-toggle-issuable-sidebar-out-of-collapsed-state' into 'master' Allow Issue and Merge Request sidebar to be toggled from collapsed state Closes #52532 See merge request gitlab-org/gitlab-ce!22353
2018-10-15Merge branch 'qa-add-a-cop-to-forbit-element-with-pattern' into 'master'Stan Hu
Add a new QA::ElementWithPattern cop Closes #52516 See merge request gitlab-org/gitlab-ce!22298
2018-10-15Merge branch 'bvl-merge-base-multiple-revisions' into 'master'Douwe Maan
Allow getting the merge base of multiple revisions Closes #52573 See merge request gitlab-org/gitlab-ce!22295
2018-10-15Remove unused eslint disableClement Ho
2018-10-15Merge branch 'zj-remove-linguist' into 'master'Robert Speicher
Remove dependencies on Linguist Closes #35450 See merge request gitlab-org/gitlab-ce!21008
2018-10-15Merge branch '34758-refactor-cluster-services' into 'master'Dmitriy Zaporozhets
Refactor Cluster services to enable groups or projects See merge request gitlab-org/gitlab-ce!22181
2018-10-15Merge branch '52669-fixes-quick-actions-preview' into 'master'Douglas Barbosa Alexandre
Fixes close/reopen quick actions preview for issues and merge_requests Closes #52669 See merge request gitlab-org/gitlab-ce!22343
2018-10-15Merge branch '34758-fix-code-reuse-clusters-applications_controller' into ↵Dmitriy Zaporozhets
'master' Fix code reuse issue in Projects::Clusters::ApplicationController#index See merge request gitlab-org/gitlab-ce!22182
2018-10-15Prioritize group settings, improve panel titles, disable submit without changesLuke Bennett
2018-10-15Resolve "Personal projects pagination in Profile Overview tab is broken"Martin Wortschack
2018-10-15Merge branch '52614-bugs-on-deployment-status-in-job-log-page' into 'master'Grzegorz Bizon
Send deployment_status when job starts environment Closes #52614 See merge request gitlab-org/gitlab-ce!22354
2018-10-15Add a new QA::ElementWithPattern copRémy Coutable
This cop forbids the use of `element :foo, 'pattern'` and `element :bar, /pattern/` in QA files. Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-10-15Send deployment_status when job starts environmentSteve Azzopardi
The check was if the job `has_environment` which results into showing the environment information when the job stops the environment. This result into having a blank `deployment_status`. Use `starts_environment?` to be the same as the haml we have in 11.3 https://gitlab.com/gitlab-org/gitlab-ce/blob/30f019dca78bb64bcb8b355a267be006884e6d8f/app/views/projects/jobs/show.html.haml#L28
2018-10-15Fixes close/reopen quick actions preview for issues and merge_requestsJacopo
Close/reopen quick actions preview wasn't shown properly, now the preview is shown as expected.
2018-10-15Fixed file templates not clearing in Web IDEPhil Hughes
This fixes a bug where the file templates would not be cleared after changing the template type. Previously the templates would get pushed into the array creating a list of templates for the different types. This changes that by clearing the templates array when the template type gets changed. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/52487
2018-10-15Merge branch 'improve-spec-for-gitlab-ci-status-pipeline-factory' into 'master'Grzegorz Bizon
Improve spec for Gitlab::Ci::Status::Pipeline::Factory Closes #52280 See merge request gitlab-org/gitlab-ce!22247
2018-10-15Only display merge commit SHA when it existsMark Chao
2018-10-15Remove obsolete usage of gl.lazyLoader.loadCheckLukas Eipert
In [!21565][0] we removed the loadCheck function from the LazyLoader for images. The function seemed to be obsolete before anyhow, because we make use of the MutationObserver in order to detect elements added / removed from the DOM. [0]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/21565
2018-10-15Use subject in controller specThong Kuah
Swap out `go` method with subject which is the convention. Re-organize 'PUT update' to remove un-necessary context nesting. DRY up repeated blocks to `add_maintainer` and `sign_in`
2018-10-15Remove un-used inheritance from serviceThong Kuah
Remove the inheritance from ::BaseService which is causing us to inherit the initializer that has project as the first arg, as we will not have access to project with forthcoming group clusters. Also call install service from create service - 1 less thing to re-use Extract TestRequest code into a spec helper. Given that we need different behaviour for Rails 5.0 (and again in Rails 5.1!), it's handy to have that branching behaviour in one place
2018-10-15Move non-controller code into dedicated serviceThong Kuah
This should help with code re-use when we create applications for group level cluster next. Change `find_or_initialize_by` to explicitly find or build the right association based on the application name. The benefit here is that we use the associations on @cluster rather than querying from the other side of the association.
2018-10-15Pass in project as kwarg for CreateServiceThong Kuah
This enables us to have other options in the future such as passing in `group:`. Also, remove project arg from UpdateService, as un-used. This will help group cluster controller to re-use this services.
2018-10-13Use InvalidUTF8ErrorHandler only for rails 4Jan Provaznik
In Rails 5 catches invalid UTF8 characters in querystring in a params middleware, errors are handled by a params middleware and raises a BadRequest exception. This means that these UTF8 errors are not raised deeper in application stack and these can't also be handled on application level. If we would want to have custom handler for these errors, we would have to create a new middleware and insert it before actionpack's params middleware and rescue BadRequest exceptions there. But there is no need to do this currently (see discussion on https://gitlab.com/gitlab-org/gitlab-ce/issues/51908)
2018-10-13Remove Koding integration and documentationStan Hu
This integration no longer works and does not appear to be supported. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/39697
2018-10-13Remove dependencies on LinguistZeger-Jan van de Weg
This saves about 128 MB of baseline RAM usage per Unicorn and Sidekiq process (!). Linguist wasn't detecting languages anymore from CE/EE since 9ae8b57467ac8b38f1fa9020a466d94a93cbb9dd. However, Linguist::BlobHelper was still being depended on by BlobLike and others. This removes the Linguist gem, given it isn't required anymore. EscapeUtils were pulled in as dependency, but given Banzai depends on it, it is now added explicitly. Previously, Linguist was used to detect the best ACE mode. Instead, we rely on ACE to guess the best mode based on the file extension.
2018-10-12Merge branch '52614-update-job-started-check' into 'master'Tim Zallmann
Updates the check for started in job header See merge request gitlab-org/gitlab-ce!22329
2018-10-12Add stage name in job.json responseSteve Azzopardi
2018-10-12Updates the check for started in job headerFilipa Lacerda
The function that was checking if the job was started or not was expecting a boolean, however it was receiving a null. During the refactor the condition was changed, causing the function to break with null This commit fixes the check
2018-10-12Backport CE changes for Ops Dashboard in EEPeter Leitzen
2018-10-12Hide job sidebar on mobileFilipa Lacerda
This commit adds back `js-` classes needed to automatically collapse the sidebar on resize.
2018-10-12Allow getting the merge base of multiple revisionsBob Van Landuyt
As we now support getting the merge base for multiple revisions in gitaly, we can provide this functionality in our API
2018-10-12Fix broken file name navigation on MRsJacques Erasmus
2018-10-12Merge branch '51712-prefer-jasmine-matcher' into 'master'Mike Greiling
4. enable jasmine/prefer-jasmine-matcher See merge request gitlab-org/gitlab-ce!22236
2018-10-11Merge branch '51712-new-line-between-declarations' into 'master'Mike Greiling
1. enable jasmine/new-line-between-declarations See merge request gitlab-org/gitlab-ce!22230
2018-10-11Fix erased block not being rendered when job was erasedFilipa Lacerda
2018-10-11Merge branch 'sh-fix-project-deletion-with-export' into 'master'Robert Speicher
Fix project deletion when there is a export available Closes #52362 See merge request gitlab-org/gitlab-ce!22276
2018-10-11Merge branch 'frontend-feature-flags' into 'master'Rémy Coutable
Support pushing of feature flags to the frontend Closes gitlab-org/release/framework#17 See merge request gitlab-org/gitlab-ce!22197
2018-10-11Merge branch '52472-pipeline-endpoint-json' into 'master'Tim Zallmann
Adds `.json` to the end of pipelines endpoint Closes #52472 See merge request gitlab-org/gitlab-ce!22293