summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Use valid data in our GetCommit example responsedocs/zj-patch-jsonZeger-Jan van de Weg2019-03-291-2/+2
| | | | When validating parsing, copy pasting should just work, but instead we created
* Merge branch '59462-applicatonsettings-not-tolerant-of-missing-db-columns' ↵Stan Hu2019-03-292-4/+13
|\ | | | | | | | | | | | | | | | | into 'master' Use a Gitlab::FakeApplicationSettings when migrations are pending Closes #59462 See merge request gitlab-org/gitlab-ce!26601
| * Apply suggestion to spec/lib/gitlab/current_settings_spec.rb59462-applicatonsettings-not-tolerant-of-missing-db-columnsLin Jen-Shin2019-03-281-1/+1
| |
| * Use a Gitlab::FakeApplicationSettings when migrations are pendingRémy Coutable2019-03-262-3/+12
| | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | Merge branch 'ce-1607-elastic_feature_flag_per_group' into 'master'Nick Thomas2019-03-295-2/+4
|\ \ | | | | | | | | | | | | Backport of 1607-elastic_feature_flag_per_group See merge request gitlab-org/gitlab-ce!25825
| * | Backport of 1607-elastic_feature_flag_per_groupce-1607-elastic_feature_flag_per_groupMario de la Ossa2019-03-285-2/+4
| | |
* | | Merge branch 'winh-jest-vue-tips' into 'master'Tim Zallmann2019-03-291-0/+3
|\ \ \ | | | | | | | | | | | | | | | | Disable Vue tips when running Jest See merge request gitlab-org/gitlab-ce!26717
| * | | Disable Vue tips when running Jestwinh-jest-vue-tipsWinnie Hellmann2019-03-281-0/+3
| | | |
* | | | Merge branch 'persist-fulll-ref-path-for-mr-pipelines' into 'master'Kamil Trzciński2019-03-2921-31/+354
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use merge request HEAD ref for detached merge request pipelines Closes #58454 See merge request gitlab-org/gitlab-ce!25504
| * | | | Create detached merge request pipelinespersist-fulll-ref-path-for-mr-pipelinesShinya Maeda2019-03-2921-31/+354
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | By using `refs/merge-requests/:iid/head` ok ok Improve naming nicely Add nice tests add nice tests fix some more revert
* | | | | Merge branch 'refactor/ce_stubbed_worker' into 'master'Douwe Maan2019-03-297-76/+49
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refactor subbed_worker calls Closes #58484 See merge request gitlab-org/gitlab-ce!26708
| * | | | | Refactor subbed_worker callsrefactor/ce_stubbed_workerJoão Cunha2019-03-287-76/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Creates a support/helper file and moves all the duplication defs into it
* | | | | | Merge branch 'sh-fix-gitaly-find-commit-caching' into 'master'Kamil Trzciński2019-03-298-14/+70
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow ref name caching CommitService#find_commit Closes #57083 See merge request gitlab-org/gitlab-ce!26248
| * | | | | | Guard against nested allows with ref name cachingsh-fix-gitaly-find-commit-cachingStan Hu2019-03-272-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This avoids the case: ``` allow_ref_name_caching do allow_ref_name_caching do # using-feature end end ```
| * | | | | | Allow ref name caching CommitService#find_commitStan Hu2019-03-278-14/+69
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For a given merge request, it's quite common to see duplicate FindCommit Gitaly requests because the Gitaly CommitService caches the request by the commit SHA, not by the ref name. However, most of the duplicate requests use the ref name, so the cache is never actually used in practice. This leads to unnecessary requests that slow performance. This commit allows certain callers to bypass the ref name to OID conversion in the cache. We don't do this by default because it's possible the tip of the branch changes during the commit, which would cause the caller to get stale data. This commit also forces the Ci::Pipeline to use the full ref name so that caching can work for merge requests. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/57083
* | | | | | | Merge branch 'add-pluck-primary-key' into 'master'Robert Speicher2019-03-29154-164/+169
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a thin encapsulation around .pluck(:id) See merge request gitlab-org/gitlab-ce!26669
| * | | | | | | Add a thin encapsulation around .pluck(:id)Nick Thomas2019-03-285-14/+19
| | | | | | | |
| * | | | | | | Inherit from ApplicationRecord instead of ActiveRecord::BaseNick Thomas2019-03-28149-150/+150
| | | | | | | |
* | | | | | | | Merge branch 'winh-jest-gon' into 'master'Filipa Lacerda2019-03-295-6/+21
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Set gon.ee in Jest Closes #59634 See merge request gitlab-org/gitlab-ce!26713
| * | | | | | | | Set gon.ee in Jestwinh-jest-gonWinnie Hellmann2019-03-282-9/+10
| | | | | | | | |
| * | | | | | | | Ignore Jest config from ESLintWinnie Hellmann2019-03-282-1/+10
| | | | | | | | |
| * | | | | | | | Extract IS_EE config helperWinnie Hellmann2019-03-282-5/+10
| | |_|_|_|/ / / | |/| | | | | |
* | | | | | | | Merge branch '10735-geo-gitlab-revision-can-return-not-consistent-results' ↵Sean McGivern2019-03-293-2/+7
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into 'master' Use a fixed git abbrev parameter when we fetch a git revision See merge request gitlab-org/gitlab-ce!26707
| * | | | | | | | Use a fixed git abbrev parameter when we fetch a git revision10735-geo-gitlab-revision-can-return-not-consistent-resultsValery Sizov2019-03-283-2/+7
| | |_|_|/ / / / | |/| | | | | |
* | | | | | | | Merge branch 'leipert-port-scsslint' into 'master'Filipa Lacerda2019-03-291-1/+3
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Backport scss-lint config from EE See merge request gitlab-org/gitlab-ce!26711
| * | | | | | | | Backport scss-lint config from EELukas Eipert2019-03-281-1/+3
| | |/ / / / / / | |/| | | | | |
* | | | | | | | Merge branch '10085-resovle-ee-diff' into 'master'Filipa Lacerda2019-03-291-0/+6
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds EE validators to CE file See merge request gitlab-org/gitlab-ce!26736
| * | | | | | | | Adds EE validators to CE fileSarah Groff Hennigh-Palermo2019-03-291-0/+6
|/ / / / / / / /
* | | | | | | | Merge branch 'winh-jest-helpers' into 'master'Phil Hughes2019-03-2911-0/+235
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Copy missing helpers from Karma to Jest See merge request gitlab-org/gitlab-ce!26729
| * | | | | | | | Copy missing helpers from Karma to JestWinnie Hellmann2019-03-2811-0/+235
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | Copy missing helpers from Karma to Jest
* | | | | | | | Merge branch 'tr-add-requested-resource-metric-ce' into 'master'Phil Hughes2019-03-294-6/+14
|\ \ \ \ \ \ \ \ | |_|_|_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | Add requested resources to cluster health - ce port See merge request gitlab-org/gitlab-ce!26326
| * | | | | | | Add requested resources to cluster health - ce portTristan Read2019-03-294-6/+14
|/ / / / / / /
* | | | | | | Merge branch 'patch-30' into 'master'Evan Read2019-03-291-1/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | README.md: fix URL to CI Lint See merge request gitlab-org/gitlab-ce!26580
| * | | | | | | README.md: fix URL to CI LintDamian Nowak2019-03-261-1/+1
| | | | | | | |
* | | | | | | | Merge branch 'docs-ci-intro-illustration' into 'master'Mike Lewis2019-03-293-1/+1
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Docs: Update CI/CD intro - workflow illustration Closes #59108 See merge request gitlab-org/gitlab-ce!26733
| * | | | | | | | Update ci workflow illustrationMarcia Ramos2019-03-283-1/+1
| | |_|_|/ / / / | |/| | | | | |
* | | | | | | | Merge branch '9420-truncate-long-tags' into 'master'Mike Greiling2019-03-281-1/+1
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Truncate long tags in runners table See merge request gitlab-org/gitlab-ce!26666
| * | | | | | | | Truncate long tags in runners tableSarah Groff Hennigh-Palermo2019-03-281-1/+1
|/ / / / / / / /
* | | | | | | | Merge branch 'ce-reduce-diff-with-ce-in-spec-helpers' into 'master'Lin Jen-Shin2019-03-286-7/+15
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [CE] Reduce diff with EE in `spec/helpers` Closes gitlab-ee#10143 See merge request gitlab-org/gitlab-ce!26706
| * | | | | | | | [CE] Reduce the diff with EE in spec/helpers/projects_helper_spec.rbRémy Coutable2019-03-281-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
| * | | | | | | | [CE] Reduce the diff with EE in spec/helpers/merge_requests_helper_spec.rbRémy Coutable2019-03-281-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
| * | | | | | | | [CE] Reduce the diff with EE in spec/helpers/issuables_helper_spec.rbRémy Coutable2019-03-281-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
| * | | | | | | | [CE] Reduce the diff with EE in spec/helpers/group_helper_spec.rbRémy Coutable2019-03-281-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
| * | | | | | | | [CE] Reduce the diff with EE in spec/helpers/auth_helper_spec.rbRémy Coutable2019-03-281-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
| * | | | | | | | [CE] Reduce the diff with EE in spec/helpers/appearances_helper_spec.rbRémy Coutable2019-03-281-5/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | | | | | | | Merge branch 'related-mr-link-cutoff' into 'master'docs-ci-variables-move-9-0-renamingAnnabel Dunstone Gray2019-03-282-0/+6
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | Don't cutoff letters in MR and Issue links See merge request gitlab-org/gitlab-ce!25910
| * | | | | | | | Don't cutoff letters in MR and Issue linksgfyoung2019-03-282-0/+6
|/ / / / / / / /
* | | | | | | | Merge branch 'renovate/gitlab-svgs-1.x' into 'master'Mike Greiling2019-03-282-5/+5
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | Update dependency @gitlab/svgs to ^1.55.0 See merge request gitlab-org/gitlab-ce!26664
| * | | | | | | Merge branch 'master' into 'renovate/gitlab-svgs-1.x'Lukas 'Eipi' Eipert2019-03-282-5/+5
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # package.json
* | | | | | | Merge branch '24936-remove-type-from-review-app-name' into 'master'Mike Greiling2019-03-282-10/+24
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove redundant group name from environment name on the "Environments" page Closes #24936 See merge request gitlab-org/gitlab-ce!25600