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
AgeCommit message (Collapse)Author
2018-11-27Merge branch 'lock-trace-writes' into 'master'Stan Hu
Lock writes to trace stream Closes #51502 See merge request gitlab-org/gitlab-ce!23332
2018-11-27Lock writes to trace streamKamil Trzciński
2018-11-27Merge branch '53778-remove-site-statistics' into 'master'Sean McGivern
Remove Site Statistic Closes #53778 See merge request gitlab-org/gitlab-ce!23314
2018-11-27Merge branch 'if-ce-54109-fix_user_by_any_email' into 'master'Grzegorz Bizon
User#find_by_any_email to respect confirmed flag on secondary emails See merge request gitlab-org/gitlab-ce!23181
2018-11-27Merge branch 'triggermesh-phase2-external-ip' into 'master'Kamil Trzciński
Expose External IP address for Knative's gateway See merge request gitlab-org/gitlab-ce!23162
2018-11-27Merge branch 'bvl-use-shell-writeref' into 'master'Douwe Maan
Don't use rugged write-ref anymore See merge request gitlab-org/gitlab-ce!23286
2018-11-27Remove Site StatisticGabriel Mazetto
This approach caused many different problems as we tightened the query execution timeout.
2018-11-26Expose external_ip to knative cluster applicationChris Baumbauer
2018-11-26Don't specify `shell` for Gitaly write-refBob Van Landuyt
Use shelling out to git to write refs instead of rugged, hoping to avoid creating invalid refs. To update HEAD we switched to using `git symbolic-ref`.
2018-11-26Passing an argument to force an association to reload is now deprecatedJasper Maes
2018-11-26Merge branch 'dm-batch-loader-key' into 'master'Stan Hu
Batch load only data from same repository when lazy object is accessed See merge request gitlab-org/gitlab-ce!23309
2018-11-26User#find_by_any_email to respect confirmed flag on secondary emailsImre Farkas
2018-11-26Treat Repository instances with the same disk path as the same hash keyDouwe Maan
2018-11-26Batch load only data from same repository when lazy object is accessedDouwe Maan
By specifying `key`, we get a different lazy batch loader for each repository, which means that accessing a lazy object from one repository will only result in that repository's objects being fetched, not those of other repositories, saving us some unnecessary Gitaly lookups.
2018-11-23Merge branch 'speed-up-relative-positioning' into 'master'Douglas Barbosa Alexandre
Speed up setting of relative position See merge request gitlab-org/gitlab-ce!23324
2018-11-23Merge branch '52371-filter-by-none-any-for-labels-in-issues-mrs-api' into ↵Nick Thomas
'master' Resolve "Filter by `None`/`Any` for labels in issues/mrs API" Closes #52371 See merge request gitlab-org/gitlab-ce!22622
2018-11-23Merge branch 'certmanager-temp' into 'master'Kamil Trzciński
Deploy cert-manager to managed cluster for SSL certificates See merge request gitlab-org/gitlab-ce!23036
2018-11-23Filter by `None`/`Any` for labels in issues/mrs APIJacopo
By using the parameters `?labels=None|Any` the user can filter issues/mrs from the API that has `none/any` label. Affected endpoints are: - /api/issues - /api/projects/:id/issues - /api/groups/:id/issues - /api/merge_requests - /api/projects/:id/merge_requests - /api/groups/:id/merge_requests
2018-11-23Speed up setting of relative positionSean McGivern
1. When every issue has a relative position set, we don't need to perform any updates, or calculate the maximum position in the parent. 2. If we do need to calculate the maximum position in the parent, many parents (specifically, groups with lots of projects) leads to a slow query where only the index on issues.relative_position is used, not the index on issues.project_id. Adding the GROUP BY forces Postgres to use both indices.
2018-11-22Fix failign testsAmit Rathi
2018-11-22change load_file to safe_loadAmit Rathi
2018-11-22cert manager changes based on review commentsAmit Rathi
2018-11-22Addressing review commentsAmit Rathi
2018-11-22Update used version of Runner Helm Chart to 0.1.38Tomasz Maczukin
2018-11-21Eliminate duplicated wordsTakuya Noguchi
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
2018-11-21Fix typo in cert_managerAmit Rathi
2018-11-21Cert manager model spec and email presence validationAmit Rathi
2018-11-20Merge branch '49565-ssh-push-mirroring' into 'master'Robert Speicher
SSH public-key authentication for push mirroring Closes #49565 See merge request gitlab-org/gitlab-ce!22982
2018-11-20Merge branch 'master' into certmanager-tempAmit Rathi
2018-11-20Merge branch '3062-improve-project-cache' into 'master'Douwe Maan
Change project cache key to depend on ID instead of full path Closes #42191 See merge request gitlab-org/gitlab-ce!23135
2018-11-20Merge branch 'rails5-active-record-class-value' into 'master'Stan Hu
Rails5 deprecation: Passing a class as a value in an Active Record query is deprecated See merge request gitlab-org/gitlab-ce!23164
2018-11-19Remove linter complaints from cert_manager.rbAmit Rathi
2018-11-19Merge branch 'master' into certmanager-tempAmit Rathi
2018-11-19Cleaned up cert_managerAmit Rathi
2018-11-19Merge branch '54046-fix-by-any-email-for-private-commit-emails' into 'master'Douwe Maan
Match users better by their private commit email Closes #54046 See merge request gitlab-org/gitlab-ce!23080
2018-11-19Merge branch 'improve-variables-support' into 'master'Sean McGivern
Improve variables support See merge request gitlab-org/gitlab-ce!23077
2018-11-19Add support for surfacing a link to the branch or tag name in push message…Tony Castrogiovanni
2018-11-19Improve variables supportKamil Trzciński
This ensures that variables accept only string, alongside also improves kubernetes_namespace, improving validation and default value being set.
2018-11-19Match users better by their private commit emailNick Thomas
Private commit emails were introduced in !22560, but some parts of GitLab were not updated to take account of them. This commit adds support in places that were missed.
2018-11-19Merge branch 'refactor-member-add-user-for-ee' into 'master'Robert Speicher
Refactor Member#add_user for GitLab EE See merge request gitlab-org/gitlab-ce!23119
2018-11-19SSH public-key authentication for push mirroringNick Thomas
2018-11-17Rails5: Passing a class as a value in an Active Record query is deprecatedJasper Maes
2018-11-17Merge branch '53700-hashed-storagemigration' into 'master'Stan Hu
Hashed Storage: allow migration to be retried in partially migrated projects Closes #53700 See merge request gitlab-org/gitlab-ce!23087
2018-11-16Add `wiki` extra namespace when repository is_wiki: trueGabriel Mazetto
2018-11-16Merge branch 'refactor-enums-for-ee' into 'master'Robert Speicher
Refactor how a few ActiveRecord enums are defined See merge request gitlab-org/gitlab-ce!23024
2018-11-16Merge branch '49726-upgrade-helm-to-2-11' into 'master'Kamil Trzciński
Resolve "Upgrade Helm Tiller Version Used By GitLab Managed Apps" Closes #49726 See merge request gitlab-org/gitlab-ce!22693
2018-11-16Extract Helm::ClientCommand for shared commandsDylan Griffith
2018-11-16Merge branch '28682-can-merge-branch-before-build-is-started' into 'master'Grzegorz Bizon
Resolve "Can merge branch before build is started" Closes #28682 See merge request gitlab-org/gitlab-ce!22911
2018-11-16Upgrade helm to 2.11.0 and upgrade on every installDylan Griffith
2018-11-16Merge branch 'backport-service-hook-execute-arguments' into 'master'Robert Speicher
Backport ServiceHook#execute from EE See merge request gitlab-org/gitlab-ce!23122