summaryrefslogtreecommitdiff
path: root/spec/features/projects
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '38668-revert-copied-kubernetesservice-logic' into 'master'Grzegorz Bizon2017-11-303-29/+71
|\ | | | | | | | | Copy `KubernetesService` logic in `Clusters::Platforms::Kubernetes` to make it interchangeable. And implement a selector. See merge request gitlab-org/gitlab-ce!15515
| * Fix feature spec38668-revert-copied-kubernetesservice-logicShinya Maeda2017-11-281-1/+1
| |
| * Fix static analysysShinya Maeda2017-11-282-4/+4
| |
| * Aling shared_exmaples to "same behavior between KubernetesService and ↵Shinya Maeda2017-11-282-6/+6
| | | | | | | | Platform::Kubernetes"
| * Replce kubernetes_service and deployment_service to deployment_platformShinya Maeda2017-11-281-29/+0
| |
| * Add test for checking interchangeability between KubernetesService and ↵Shinya Maeda2017-11-281-0/+45
| | | | | | | | Clusters::Platform::Kubernetes
| * Add test suit for platform::kubernetesShinya Maeda2017-11-282-29/+55
| |
* | Merge branch 'bvl-double-fork' into 'master'Phil Hughes2017-11-291-1/+16
|\ \ | | | | | | | | | | | | Redirect to an already forked project if it exists See merge request gitlab-org/gitlab-ce!15653
| * | Redirect to an already forked project if it existsBob Van Landuyt2017-11-291-1/+16
| | | | | | | | | | | | | | | | | | | | | | | | Before the we would try to `POST` to the project path, which would result in a 404, because that `POST` is not supported. By changing this back to a normal link, not not handled in JS, we can immeadiatly redirect.
* | | Merge branch 'remove-mr-diff-serialised-columns' into 'master'Yorick Peterse2017-11-291-0/+0
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Remove serialised diff and commit columns Closes #39533 See merge request gitlab-org/gitlab-ce!15582
| * | | Remove serialised diff and commit columnsSean McGivern2017-11-281-0/+0
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The st_commits and st_diffs columns on merge_request_diffs historically held the YAML-serialised data for a merge request diff, in a variety of formats. Since 9.5, these have been migrated in the background to two new tables: merge_request_diff_commits and merge_request_diff_files. That has the advantage that we can actually query the data (for instance, to find out how many commits we've stored), and that it can't be in a variety of formats, but must match the new schema. This is the final step of that journey, where we drop those columns and remove all references to them. This is a breaking change to the importer, because we can no longer import diffs created in the old format, and we cannot guarantee the export will be in the new format unless it was generated after this commit.
* | | Merge branch 'multi-file-editor-css-fixes' into 'master'Tim Zallmann2017-11-293-4/+8
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | Added IDE commit panel Closes #40041 See merge request gitlab-org/gitlab-ce!15583
| * | fixed rspecmulti-file-editor-css-fixesPhil Hughes2017-11-243-4/+8
| |/ | | | | | | added getter specs
* | Merge branch 'fix_invalid_new_pipeline_form' into 'master'Filipa Lacerda2017-11-291-0/+12
|\ \ | | | | | | | | | | | | | | | | | | initializes the branches dropdown upon invalid entry Closes #40012 See merge request gitlab-org/gitlab-ce!15588
| * | initializes the branches dropdown upon invalid entryChristiaan Van den Poel2017-11-271-0/+12
| |/ | | | | | | | | Added Changelog added feature spec
* | Add checkboxes to automatically run AutoDevops pipelineEric Eastwood2017-11-281-8/+118
|/ | | | Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/38962
* Allow password authentication to be disabled entirelyMarkus Koller2017-11-231-1/+1
|
* Improve environments performanceFilipa Lacerda2017-11-231-6/+29
|
* Add edit button to mobile file viewTravis Miller2017-11-221-0/+12
|
* Merge branch 'bvl-subgroup-in-dropdowns' into 'master'Sean McGivern2017-11-143-1/+85
|\ | | | | | | | | | | | | Include child projects a user can manage in namespace dropdowns Closes #39987 See merge request gitlab-org/gitlab-ce!15294
| * Include child projects a user can manage in namespace dropdownsBob Van Landuyt2017-11-143-1/+85
| | | | | | | | These dropdown options are used for creating and transfering projects.
* | Stops page reload when changing tabs or pages - uses API requests insteadFilipa Lacerda2017-11-141-6/+20
|/
* Don't perform a JS request when deleting a membership.bvl-refresh-member-listing-on-removalBob Van Landuyt2017-11-131-0/+16
|
* Add feature spec for IngressEric Eastwood2017-11-071-16/+60
|
* Merge branch 'master' into 38464-k8s-appsShinya Maeda2017-11-083-5/+7
|\
| * Merge branch '39878-commit-pipeline-reads-wrong-key' into 'master'Tim Zallmann2017-11-071-0/+7
| |\ | | | | | | | | | | | | | | | | | | Fix commit pipeline showing wrong status Closes #39878 See merge request gitlab-org/gitlab-ce!15238
| | * Fix commit pipeline showing wrong status39878-commit-pipeline-reads-wrong-keyFilipa Lacerda2017-11-071-0/+7
| | |
| * | Merge branch 'fix/import-export-arguments' into 'master'Douwe Maan2017-11-071-0/+0
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | Fix arguments error on Import/Export fetch_ref method Closes #39541 See merge request gitlab-org/gitlab-ce!15241
| | * | Fix arguments error on Import/Export fetch_ref methodJames Lopez2017-11-071-0/+0
| | |/ | | | | | | | | | Added unit test and updated integration spec to test for this as well.
| * | Merge branch 'multi-file-editor-separate-commits-call' into 'master'Filipa Lacerda2017-11-071-5/+0
| |\ \ | | |/ | |/| | | | | | | | | | | | | Multi-file editor fetch log data from a different endpoint Closes #38360 See merge request gitlab-org/gitlab-ce!15132
| | * fixed specsPhil Hughes2017-11-061-5/+0
| | |
* | | Add feature spec for app installationShinya Maeda2017-11-081-0/+42
|/ /
* | Fix spec35616-move-gke-form-1st-iterationShinya Maeda2017-11-071-2/+1
| |
* | Merge remote-tracking branch ↵Kamil Trzcinski2017-11-0643-134/+251
|\ \ | | | | | | | | | 'origin/move-kubernetes-from-service-to-clusters-page-10-2-ver' into 35616-move-gke-form-1st-iteration
| * \ Merge branch 'refactor-clusters' into ↵Shinya Maeda2017-11-0540-119/+155
| |\ \ | | | | | | | | | | | | move-kubernetes-from-service-to-clusters-page-10-2-ver
| | * \ Merge branch 'master' into refactor-clustersShinya Maeda2017-11-0540-119/+155
| | |\ \ | | | |/
| | | * Merge branch 'master' into sh-headless-chrome-supportMike Greiling2017-11-031-0/+40
| | | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (33 commits) Ignore SQL CACHE hits in Sherlock Fix SQL timings for the performance bar Find the LFS-objects for a fork within a the fork network Remove bottom-border from last responsive table row Add system hooks user_rename and group_rename Unlink a project from a fork network when it's source was deleted. Make sure the settings page renders when root of a fork is deleted Remove Peek's original keyboard shortcut (numpad 0, keycode 96) Add application setting to Auto DevOps docs Enable MergeableSelector in scss-lint (for !14567) Enable MergeableSelector in scss-lint (for !14055) Enable MergeableSelector in scss-lint (for !14062) Enable MergeableSelector in scss-lint (for !14398) Enable MergeableSelector in scss-lint (for !13480) Enable MergeableSelector in scss-lint (for !13473) Enable MergeableSelector in scss-lint (for !13600) Enable MergeableSelector in scss-lint Resolve ""To do" should be "Todos" on Todos list page" Avoid regenerating the ref path for the environment Remove white space at bottom of issue boards ...
| | | | * Merge branch 'bvl-unlink-fixes' into 'master'Douwe Maan2017-11-031-0/+40
| | | | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes some bugs related to forked projects of which the source was deleted. Closes #39667 See merge request gitlab-org/gitlab-ce!15150
| | | | | * Make sure the settings page renders when root of a fork is deletedBob Van Landuyt2017-11-031-0/+40
| | | | | |
| | | * | | replace use of unsupported trigger method with clickMike Greiling2017-11-031-1/+1
| | | | | |
| | | * | | Merge branch 'master' into sh-headless-chrome-supportMike Greiling2017-11-023-12/+17
| | | |\ \ \ | | | | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (109 commits) Remove Filesystem check metrics that use too much CPU to handle requests Set merge_request_diff_id on MR when creating Add a column linking an MR to its diff Remove useless closeReopenReport specs Clarify external artifacts only working when GitLab pages is enabled Send SIGSTP before SIGTERM to actually give Sidekiq jobs 30s to finish when the memory killer kicks in Remove an exception from the git user default SSH config check Geo route whitelisting is too optimistic Update .nvmrc to current stable (v9.0.0) Update documentation Address Douwe's feedback Refactor responsive table styles to support nested error block Add changelog items Update specs for sudo behavior Move RSS and incoming email tokens from User Settings > Accounts to User Settings > Access Tokens Remove user authentication_token column Migrate user private tokens to personal access tokens Add sudo API scope Consistently use PersonalAccessToken instead of PersonalToken Remove User#private_token ...
| | | * | | refactor wait_for_requests, add slow_requests block helperMike Greiling2017-11-021-1/+1
| | | | | |
| | | * | | scroll to top before attempting to click the "Side-by-side" buttonMike Greiling2017-11-021-3/+2
| | | | | |
| | | * | | remove out-of-date comments about webdriver compatabilityMike Greiling2017-11-021-5/+1
| | | | | |
| | | * | | add InspectRequests helper automatically to :js testsMike Greiling2017-11-022-4/+0
| | | | | |
| | | * | | add CookieHelper and InputHelper automatically to :js testsMike Greiling2017-11-024-11/+0
| | | | | |
| | | * | | explicitly check innerText since selenium webdriver only looks at visible textMike Greiling2017-11-011-1/+1
| | | | | |
| | | * | | Added cookie_helper to the upload_file_specJose Ivan Vargas2017-10-311-1/+2
| | | | | |
| | | * | | Merge branch 'master' into sh-headless-chrome-supportMike Greiling2017-10-315-3/+74
| | | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (84 commits) Migrate Gitlab::Git::Wiki#page to Gitaly Load participants async Normalize LDAP DN when looking up identity Improve the maintenance policy page add changelog fix spec failure Allow promoting project milestones to group milestones fix specs Be able to bundle gems with newer rubies Upgrade Ruby to 2.3.5 fixed up upload feature after master merge fix missing issue assignees Migrate Gitlab::Git::Wiki#delete_page to Gitaly Enable eslint Make `#hashed_storage?` require feature argument Adds callback function to inital cluster request Fix example typo. Upload files through the multi-file editor get branch name from the DOM Resolve "Convert autosize.js library to be a Yarn managed library" ...
| | | * | | | remove "command" key from test since it only applies on macOSMike Greiling2017-10-311-3/+3
| | | | | | |