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-02-21Sort labels alphabeticallyDmitriy Zaporozhets
Sorts labels alphabetically on issues (and merge requests) list. Before it was order id desc. Now it will be consistent with sidebar and labels page. Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2019-02-21Merge branch ↵Douglas Barbosa Alexandre
'ce-9858-follow-up-on-a-bug-that-happens-when-using-a-factory-built-object-in-the-where-block-of-rspec-parameterized-tablesyntax' into 'master' Fix and document an RSpec::Parameterized::TableSyntax edge-case See merge request gitlab-org/gitlab-ce!25438
2019-02-21Merge branch ↵Robert Speicher
'56492-implement-new-arguments-state-closed_before-and-closed_after-for-issuesresolver-in-graphql' into 'master' Implement new arguments `state`, `closed_before` and `closed_after` for `IssuesResolver` in GraphQL Closes #56492 See merge request gitlab-org/gitlab-ce!24910
2019-02-21Merge branch 'winh-deterministic-frontend-fixtures' into 'master'Rémy Coutable
Make frontend fixtures deterministic See merge request gitlab-org/gitlab-ce!23705
2019-02-21Properly implement API pagination headers and add specsAdam Mulvany
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-02-21Make fixtures/u2f.rb deterministicWinnie Hellmann
2019-02-21Make fixtures/snippet.rb deterministicWinnie Hellmann
2019-02-21Make fixtures/projects.rb deterministicWinnie Hellmann
2019-02-21Make fixtures/merge_requests.rb deterministicWinnie Hellmann
2019-02-21Make fixtures/issues.rb deterministicWinnie Hellmann
2019-02-21Merge branch ↵Filipa Lacerda
'57784-make-closed-duplicate-and-closed-moved-button-a-link-to-target' into 'master' Add Link from Closed (moved) Issues to Moved Issue Closes #57784 See merge request gitlab-org/gitlab-ce!25300
2019-02-21Make fixtures/groups.rb deterministicWinnie Hellmann
2019-02-21Make fixtures/deploy_keys.rb deterministicWinnie Hellmann
2019-02-21Make fixtures/commit.rb deterministicWinnie Hellmann
2019-02-21Make fixtures/blob.rb deterministicWinnie Hellmann
2019-02-21Port EE System Header And Footer feature to CEDouwe Maan
remove EE specific code remove EE licence checks move migration from EE to CE folder structure move specs from EE to CE folder structure remove EE specific flag specs
2019-02-21Add spec/frontend/ to frontend rouletteWinnie Hellmann
2019-02-21Make "moved" Link to Moved IssueAndrew Fontaine
The text "moved" now links to the issue the closed issue was moved to.
2019-02-21Move gfm_auto_complete_spec.js to JestWinnie Hellmann
2019-02-21Add confidential_only scop to issue modelRobert Schilling
2019-02-21Add API support for filtering confidential issuesRobert Schilling
2019-02-21Add specs for filtering confidential issuesRobert Schilling
2019-02-21Ability to filter confidential issuesRobert Schilling
Add a new search bar filter for confidential issues. Add filtering support to the IssuesFinder.
2019-02-21Merge branch ↵James Lopez
'57867-accessing-issue-1-of-gitlab-ce-via-the-api-results-in-500-internal-server-error' into 'master' Speed up find_by when used on finders Closes #57867 See merge request gitlab-org/gitlab-ce!25421
2019-02-21Merge branch 'winh-jest-gitlab-ui' into 'master'Kushal Pandya
Make Jest work with gitlab-ui Closes #56689 See merge request gitlab-org/gitlab-ce!25440
2019-02-21Catch exception in calculate reactive cacheReuben Pereira
Return the exception as an error.
2019-02-21Remove convertPermissionToBoolean() from common_utils.jsWinnie Hellmann
2019-02-21Add snapshot test to discussion_jump_to_next_button_spec.jsWinnie Hellmann
2019-02-21Remove localVue from discussion_jump_to_next_button_spec.jsWinnie Hellmann
2019-02-21Load i18n Vue plugin for Jest testsWinnie Hellmann
2019-02-21Merge branch 'design-management-issue-tab-ce' into 'master'Filipa Lacerda
CE backport of design-management-issue-tab See merge request gitlab-org/gitlab-ce!25429
2019-02-21Move discussion_jump_to_next_button_spec.js to JestWinnie Hellmann
2019-02-21Merge branch 'winh-jest-ajax' into 'master'Phil Hughes
Fail for unmocked axios requests in Jest Closes #33715 See merge request gitlab-org/gitlab-ce!23965
2019-02-21Add GraphQL filters for issuables (state, labels, time fields)Rémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-02-21Allow IssuableFinder to filter by closed_atRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-02-21Fail tests for unmocked axios requestsWinnie Hellmann
2019-02-21Move ajax_cache_spec.js to JestWinnie Hellmann
2019-02-21Move language setting to preferencesFabian Schneider
2019-02-21Move ChatOps to CoreJames Fargher
ChatOps used to be in the Ultimate tier.
2019-02-20Fix and document an RSpec::Parameterized::TableSyntax edge-caseRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-02-20Allow users to compare branches on a read-only instanceDouglas Barbosa Alexandre
2019-02-20CE backport of design-management-issue-tabPhil Hughes
Backports template and Vue changes from https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/9632 to CE
2019-02-20Delegate last_pipeline to ProjectMatija Čupić
2019-02-20Merge branch 'gitlab_kubernetes_helm_bump' into 'master'Nick Thomas
Bump helm and kubectl for Kubernetes integration See merge request gitlab-org/gitlab-ce!25268
2019-02-20Remove undigested token column from personal_access_tokens tableImre Farkas
Token column are no longer used as token values are stored digested in token_digest.
2019-02-20Ignore ordering when calling find_by on findersSean McGivern
We shouldn't care about the ordering here; if we did, it would be more appropriate to use `take` or `first`. Having the ordering can result in the database picking a bad query plan, as it might think sorting the whole table first is the best option.
2019-02-20Merge branch 'sh-fix-web-hook-spec-ruby-2.6' into 'master'Rémy Coutable
Fix WebHookService spec failing in Ruby 2.6 See merge request gitlab-org/gitlab-ce!25317
2019-02-20Merge branch 'sh-upgrade-webmock-ruby-2.6' into 'master'James Lopez
Upgrade Webmock to 3.5.1 See merge request gitlab-org/gitlab-ce!25318
2019-02-20Merge branch ↵Robert Speicher
'ce-return-entity-type-for-project-autocomplete-sources-members' into 'master' Add a type property to project autocomplete members Closes #57771 See merge request gitlab-org/gitlab-ce!25296
2019-02-20Make Admin::UsersController work with Ruby 2.6Stan Hu
Ruby 2.6 introduced `Enumerable#filter`, which takes no arguments. Attempting to call `filter` on an `ActiveRecord::Relation` with a scope will fail with a `wrong number of arguments (given 1, expected 0)` message because the `Enumerable#filter` implementation overrides the delegated `ActiveRecord::Relation#filter` method. To make Admin::UsersController compatible with Ruby 2.6, rename `User.filter` to `User.filter_items`.