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-04-12Merge branch 'master' into bootstrap4Clement Ho
2018-04-12Renamed 'Overview' to 'Project' in the contextual navigation at a project levelConstance Okoghenun
2018-04-12Merge branch 'dm-archived-read-only' into 'master'Robert Speicher
Make archived projects completely read-only Closes #44788 See merge request gitlab-org/gitlab-ce!18136
2018-04-12Spec improvements for speed, reliability and readabilityBob Van Landuyt
2018-04-12Resolve "Clean up old project permissions frontend code"Mike Greiling
2018-04-12Merge branch ↵Douwe Maan
'backport-of-rd-3429-enabling-maximum-file-size-limit-in-repository-causes-pushes-to-fail' into 'master' Backport of EE !4989 See merge request gitlab-org/gitlab-ce!18238
2018-04-12Merge branch 'rendering-markdown-multiple-projects' into 'master'Douwe Maan
Optimise rendering of Markdown documents that belong to different projects See merge request gitlab-org/gitlab-ce!18157
2018-04-12Merge branch 'fix/gb/fix-pipeline-statuses-illustrations' into 'master'Marin Jankovski
Fix empty state for build that does not have a trace Closes #45204 See merge request gitlab-org/gitlab-ce!18278
2018-04-12Backport of EE !4989Rubén Dávila
2018-04-11Merge branch 'fix/wiki-find-file-gitaly' into 'master'Robert Speicher
Fix finding wiki file when Gitaly is enabled Closes gitaly#1126 See merge request gitlab-org/gitlab-ce!18317
2018-04-11Merge branch 'mk/geo/backport-broadcast-message-cache-expiration-hook' into ↵Nick Thomas
'master' [CE Backport] Propagate broadcast messages to secondaries See merge request gitlab-org/gitlab-ce!18324
2018-04-11Backport: Propagate broadcast messages to secondariesMichael Kozono
2018-04-11[skip ci] .help-block to .form-text.text-mutedClement Ho
2018-04-11Merge branch 'unresolved-discussions-vue-component-i18n-and-tests' into 'master'Clement Ho
Add i18n and update specs for UnresolvedDiscussions vue component See merge request gitlab-org/gitlab-ce!17866
2018-04-11Merge branch '41748-vertical-misalignment-login-box' into 'master'Clement Ho
Vertical misalignment of login box header Closes #41748 See merge request gitlab-org/gitlab-ce!16275
2018-04-11Merge branch 'winh-single-karma-test' into 'master'Clement Ho
Add possibility to filter Karma spec files by path Closes #40899 See merge request gitlab-org/gitlab-ce!16102
2018-04-11Refactor CSS to eliminate vertical misalignment of login navTakuya Noguchi
2018-04-11Fix finding wiki file when Gitaly is enabledAhmad Sherif
Fixes gitaly#1126
2018-04-11Resolve "tree/master shows incorrect CI build status"Lin Jen-Shin
2018-04-11Replace vue resource with axios for pipeline details pageFilipa Lacerda
2018-04-11Merge branch 'zj-info-attributes' into 'master'Douwe Maan
Client implementation for InfoAttributes See merge request gitlab-org/gitlab-ce!18261
2018-04-11Client implementation for InfoAttributesZeger-Jan van de Weg
Clients can now request the attributes from `$GIT_DIR/info/attributes` through Gitaly. The Gitaly migration is described in gitlab-org/gitaly#1082. The parser algorithm was implemented in a way it could handle both file contents or a File handle, and both were already tested. Other than that, using the boy scout rule, I've removed a class, InfoAttributes, as it was delegating everything to the parser and therefor wasn't really needed in my opinion.
2018-04-11Support Markdown rendering using multiple projectsYorick Peterse
This refactors the Markdown pipeline so it supports the rendering of multiple documents that may belong to different projects. An example of where this happens is when displaying the event feed of a group. In this case we retrieve events for all projects in the group. Previously we would group events per project and render these chunks separately, but this would result in many SQL queries being executed. By extending the Markdown pipeline to support this out of the box we can drastically reduce the number of SQL queries. To achieve this we introduce a new object to the pipeline: Banzai::RenderContext. This object simply wraps two other objects: an optional Project instance, and an optional User instance. On its own this wouldn't be very helpful, but a RenderContext can also be used to associate HTML documents with specific Project instances. This work is done in Banzai::ObjectRenderer and allows us to reuse as many queries (and results) as possible.
2018-04-11Merge branch '37721-clean-outdated-flaky-specs-from-the-flaky-specs-report' ↵Grzegorz Bizon
into 'master' Resolve "Clean outdated flaky specs from the flaky specs report" Closes #37721 See merge request gitlab-org/gitlab-ce!18196
2018-04-11Replace the `project/issues/milestones.feature` spinach test with an rspec ↵blackst0ne
analog
2018-04-11Replace the `project/commits/branches.feature` spinach test with an rspec analogblackst0ne
2018-04-11Resolve "When editing a comment in an issue, the preview mode is toggled in ↵Simon Knox
the main textarea"
2018-04-11Fix tests for job empty states for a failed buildGrzegorz Bizon
2018-04-11Add a test for job empty state with missing traceGrzegorz Bizon
2018-04-11Revert adding `Empty` extended status to avoid N+1 queriesGrzegorz Bizon
2018-04-11Extend specs for detailed build extended statusesGrzegorz Bizon
2018-04-11Add matcher for emojiBob Van Landuyt
2018-04-11Show `New Issue` link for projectsBob Van Landuyt
When a user is not logged in, we want to show the `New Issue` link so he gets directed to the login flow first. When a project is archived, we never want to show the link.
2018-04-11Prevent awarding emoji when a project is archivedBob Van Landuyt
This prevents performing the requests, and disables all emoji reaction buttons
2018-04-11Correct permissions for creating merge requests from issuesBob Van Landuyt
This could only be possible for users that can create merge requests within a project. So they need to be a allowed to create a branch and create a merge request.
2018-04-11Hide file/directory creation buttonsBob Van Landuyt
2018-04-11Hide `new merge request` button from index pageBob Van Landuyt
When a project is archived, don't show the button on the index page of merge requests
2018-04-11Hide new mr from dropdown for archived projectsBob Van Landuyt
2018-04-11Share collaboration check between view and presenterBob Van Landuyt
2018-04-11Rename `create_merge_request` permissionsBob Van Landuyt
So we can distinguish between the permissions on the source and the target project. - `create_merge_request_from` indicates a user can create a merge request with the project as a source_project - `create_merge_request_in` indicates a user can create a merge request with the project as a target_project
2018-04-11Prevent new merge requests for archived projectsBob Van Landuyt
This prevents creating merge requests targeting archived projects. This could happen when a project was already forked, but then the source was archived.
2018-04-11Fix file-specific variables collection item optionGrzegorz Bizon
2018-04-11Merge branch 'ide-markdown-temp-file-fix' into 'master'Tim Zallmann
Fixed markdown preview in IDE not working for new files See merge request gitlab-org/gitlab-ce!18287
2018-04-11Fix email handler spec for EEMichael Kozono
2018-04-11remove `instanceof Array` testLukas Eipert
2018-04-10move TEST_FILES variable to `process.env`Lukas Eipert
2018-04-10[skip ci] Add nav converted classesClement Ho
2018-04-10[skip ci] Convert img-responsive to img-fluidClement Ho
2018-04-10correctly dispose editor instance in specsPhil Hughes
2018-04-10[skip ci] Convert panel related class names to cardClement Ho