summaryrefslogtreecommitdiff
path: root/spec
Commit message (Collapse)AuthorAgeFilesLines
* expose metrics in merge request apihaseeb2018-03-021-0/+40
|
* Merge branch '33570-slack-notify-default-branch' into 'master'Sean McGivern2018-03-021-0/+18
|\ | | | | | | | | | | | | Slack notifications - Respect "Notify only default branch" for push events Closes #33570 See merge request gitlab-org/gitlab-ce!17345
| * SlackService - respect `notify_only_default_branch` for push eventsMario de la Ossa2018-03-021-0/+18
| |
* | Merge branch 'feature/fetch-commit-signs-from-gitaly-in-batch' into 'master'Sean McGivern2018-03-024-65/+95
|\ \ | | | | | | | | | | | | | | | | | | Fetch commit signatures from Gitaly in batches Closes gitaly#1046 See merge request gitlab-org/gitlab-ce!17456
| * | Fetch commit signatures from Gitaly in batchesfeature/fetch-commit-signs-from-gitaly-in-batchAhmad Sherif2018-03-014-65/+95
| | | | | | | | | | | | Closes gitaly#1046
* | | Merge branch 'jprovazn-ancestor-labels' into 'master'Grzegorz Bizon2018-03-022-2/+50
|\ \ \ | | | | | | | | | | | | | | | | Support additional LabelsFinder parameters for group labels See merge request gitlab-org/gitlab-ce!17447
| * | | Allow to include also descendant group labelsJan Provaznik2018-03-022-7/+26
| | | | | | | | | | | | | | | | | | | | | | | | Because epic index page includes also epics from subgroups it's necessary to also get descendant group labels for filtering. https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/4773#note_61236542
| * | | Support additional LabelsFinder parameters for group labelsJan Provaznik2018-03-021-0/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In some situations (listing labels for epics) we want to list only group ancestor labels, this is already supported in LabelsFinder we just need to enable additional parameters. Also `set_issuables_index` method now loads project labels only if @project is set (which is not used for epic group labels).
* | | | Merge branch 'zj-version-string-grouping-ci' into 'master'Grzegorz Bizon2018-03-021-1/+3
|\ \ \ \ | |/ / / |/| | | | | | | | | | | Allow CI/CD Jobs being grouped on version strings See merge request gitlab-org/gitlab-ce!17455
| * | | Allow CI/CD Jobs being grouped on version stringsZeger-Jan van de Weg2018-03-011-1/+3
| | | | | | | | | | | | | | | | | | | | This makes grouping on version number available. In general I'd like to group based on MAJOR.MINOR version numbers for Gitaly.
* | | | Extend Cluster Applications to install GitLab Runner to Kubernetes clusterMayra Cabrera2018-03-0116-326/+412
| | | |
* | | | Remove u2f webpack bundleMike Greiling2018-03-016-58/+51
| | | |
* | | | Merge branch 'feature/move_oauth_modules_to_auth_dir_structure' into 'master'Douwe Maan2018-03-0119-97/+97
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Moved o_auth/saml/ldap modules under gitlab/auth See merge request gitlab-org/gitlab-ce!17359
| * | | | Moved o_auth/saml/ldap modules under gitlab/authHoratiu Eugen Vlad2018-02-2819-97/+97
| | | | |
* | | | | Merge branch '41777-include-cycle-time-in-usage-ping' into 'master'Douwe Maan2018-03-0118-86/+279
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolve "Include cycle time in usage ping" Closes #41777 See merge request gitlab-org/gitlab-ce!16793
| * | | | | Adapt cycle analytics spec helper and cycle analytics usage data spec41777-include-cycle-time-in-usage-pingTiago Botelho2018-03-0117-106/+215
| | | | | |
| * | | | | Refactors median code to work with both single and multiple projectsTiago Botelho2018-02-286-13/+96
| | | | | |
| * | | | | Restrict cycle analytics usage data to instances that use postgres onlyTiago Botelho2018-02-282-1/+2
| | | | | |
* | | | | | Merge branch '42643-persist-external-ip-of-ingress-controller-gke' into 'master'Kamil Trzciński2018-03-0110-14/+266
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Display ingress IP address in the Kubernetes page See merge request gitlab-org/gitlab-ce!17052
| * | | | | | Fix feature spec Clusters Applications (#17052)42643-persist-external-ip-of-ingress-controller-gkeDylan Griffith2018-03-011-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | We need to actually wait for the "Install" button to be enabled before clicking it otherwise we have a race condition where it sometimes works. Also change the `expect(page.find(...))` to `expect(page).to have_css` as this is prefered to avoid race conditions
| * | | | | | Remove redundant code and increase delay for ↵Dylan Griffith2018-02-252-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | ClusterWaitForIngressIpAddressWorker (#42643)
| * | | | | | Increase lease timeout for CheckIngressIpAddressService to reduce polling ↵Dylan Griffith2018-02-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | frequency (#42643)
| * | | | | | Fix spec/features/projects/clusters/applications_spec.rb (#42643)>Dylan Griffith2018-02-231-10/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also remove the flakiness by using `expect(page).to have_css(..., exact_text: '')` instead of `expect(page.find(...).text).to eq('')` since the former will wait until the text has this value while the latter will only wait for the element to exist then test its text straight away which introduces a race condition if the element is already there with a previous text value. This test was failing locally most of the time because of this other way of asserting.
| * | | | | | Merge branch 'master' into 42643-persist-external-ip-of-ingress-controller-gkeDylan Griffith2018-02-2363-1018/+2001
| |\ \ \ \ \ \
| * | | | | | | Fix clusters_controller_spec (#42643)Dylan Griffith2018-02-231-2/+2
| | | | | | | |
| * | | | | | | Simplify retrying for ClusterWaitForIngressIpAddressWorker and style changesDylan Griffith2018-02-233-89/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (#42643)
| * | | | | | | Use value attribute in ip inputFilipa Lacerda2018-02-222-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removes double quoted string
| * | | | | | | Changes after reviewFilipa Lacerda2018-02-211-5/+1
| | | | | | | |
| * | | | | | | Remove duplicate IDFilipa Lacerda2018-02-202-5/+5
| | | | | | | |
| * | | | | | | Merge branch 'master' into 42643-persist-external-ip-of-ingress-controller-gkeFilipa Lacerda2018-02-2013-139/+269
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (30 commits) Docs: Pages - clean up articles Only use features for events Put all event metrics exposed to prometheus behind a feature flag Add version which LFS lock was introduced Remove unecessary validate: true from belongs_to :project fix broken specs remove common_d3 bundle remove graphs_show webpack bundle Chart.html.haml refactor Remove extraneous tests from Issues API spec [GH Import] Create an empty wiki if wiki import failed Resolve "group request membership mail with too long list of "To:"" Add changelog entry Fix single digit value clipping specify date format Increase feature flag cache TTL to one hour Convert Gitaly commit parent IDs to array as early as possible Clarify changelog for squash encoding fix Avoid slow File Lock checks when not used Fix squash rebase not working when diff contained encoded data ...
| * | | | | | | | Adds missing links, uses value instead of placeholder in input field and ↵Filipa Lacerda2018-02-203-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | properly sets the ip key
| * | | | | | | | Update feature spec for kubernetes applications ingress IP address (#42643)Dylan Griffith2018-02-201-0/+10
| | | | | | | | |
| * | | | | | | | Schedule Ingress IP address fetch from K8s after clusters page load (#42643)Dylan Griffith2018-02-202-0/+35
| | | | | | | | |
| * | | | | | | | Refactor ingress IP address waiting code (#42643)Dylan Griffith2018-02-204-44/+109
| | | | | | | | |
| * | | | | | | | Adds support to render the IP address in the application ingress rowFilipa Lacerda2018-02-191-0/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updates components to use a slot to allow to reuse the clipboard button Adds tests
| * | | | | | | | [ci skip] Merge branch 'master' into ↵Filipa Lacerda2018-02-1940-142/+1206
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 42643-persist-external-ip-of-ingress-controller-gke * master: (114 commits) Fix Error 500 when viewing a commit with a GPG signature in Geo Remember assignee when moving an issue Add changelog entry Allow oxford commas and spaces before commas in MR issue closing pattern. Don't cache a nil repository root ref to prevent caching issues Add back database changes for Ci::Build Revert "Merge branch 'expired-ci-artifacts' into 'master'" Fix order dependencies in some specs migrate admin:users:* to static bundle correct for missing break statement in dispatcher.js alias create and update actions to new and edit migrate projects:merge_requests:edit to static bundle migrate projects:merge_requests:creations:diffs to static bundle migrate projects:merge_requests:creations:new to static bundle migrate projects:issues:new and projects:issues:edit to static bundle migrate projects:branches:index to static bundle migrate projects:branches:new to static bundle migrate projects:compare:show to static bundle migrate projects:environments:metrics to static bundle migrate projects:milestones:* and groups:milestones:* to static bundle ...
| * | | | | | | | | Fix rubocop warning (#42643)Dylan Griffith2018-02-161-1/+1
| | | | | | | | | |
| * | | | | | | | | Ensure CheckIngressIpAddressService obtains exclusive lease per ingress ↵Dylan Griffith2018-02-151-0/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | controller (#42643)
| * | | | | | | | | Persist external IP of ingress controller created for GKE (#42643)Dylan Griffith2018-02-155-1/+131
| | | | | | | | | |
* | | | | | | | | | Merge branch 'zj-licensee-key' into 'master'43548-update-language-about-usage-ping-in-admin-settings-and-docsSean McGivern2018-03-011-0/+29
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Client implementation for Licensee#key See merge request gitlab-org/gitlab-ce!17449
| * | | | | | | | | | Client implementation for Licensee#keyZeger-Jan van de Weg2018-03-011-0/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Part of the migration as tracked in: gitlab-org/gitaly#1026
* | | | | | | | | | | Removing the two factor check when the user sets a new passwordFrancisco Javier López2018-03-011-0/+10
| | | | | | | | | | |
* | | | | | | | | | | Merge branch 'dz-namespace-id-not-null' into 'master'Yorick Peterse2018-03-014-6/+11
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make project#namespace_id not null Closes #26052 See merge request gitlab-org/gitlab-ce!17448
| * | | | | | | | | | | Update specs to respect Project#namespace_id not null constraintDmitriy Zaporozhets2018-03-014-6/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | | | | | | | | | | Merge branch '42434-allow-commits-endpoint-to-work-over-all-commits' into ↵Douwe Maan2018-03-013-16/+80
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'master' Resolve "Allow API method /projects/:id/repository/commits to work over all commits" Closes #42434 See merge request gitlab-org/gitlab-ce!17182
| * | | | | | | | | | | | Add specs42434-allow-commits-endpoint-to-work-over-all-commitsTiago Botelho2018-03-013-16/+80
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge branch 'feature/gb/pipeline-variable-expressions' into 'master'Kamil Trzciński2018-03-018-0/+423
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Pipeline variables expressions See merge request gitlab-org/gitlab-ce!17261
| * | | | | | | | | | | | | Make max tokens in expressions lexer a class-level attributeGrzegorz Bizon2018-03-011-2/+2
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Improve pipeline expressions lexerGrzegorz Bizon2018-03-011-2/+2
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Do not use keyword args to pass expression variablesGrzegorz Bizon2018-02-271-0/+7
| | | | | | | | | | | | | |