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/lib
AgeCommit message (Collapse)Author
2018-11-22Add correlation injector middlewarean-grpc-downstream-correlationAndrew Newdigate
2018-11-22Merge branch 'master' into an-grpc-downstream-correlationAndrew Newdigate
2018-11-21Merge branch '54230-eliminate-duplicated-words-in-apps' into 'master'Rémy Coutable
Eliminate duplicated words (in apps) Closes #54230 See merge request gitlab-org/gitlab-ce!23184
2018-11-21Eliminate duplicated wordsTakuya Noguchi
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
2018-11-21Merge branch 'optimise-job-request' into 'master'Grzegorz Bizon
Use cached size when passing artifacts to Runner See merge request gitlab-org/gitlab-ce!23228
2018-11-21Merge branch '52453-show-subgroups-in-group-create-issue' into 'master'Sean McGivern
Resolve "Access project from descendent groups when selecting project to create new issue" Closes #47096 and #52453 See merge request gitlab-org/gitlab-ce!22612
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 'frozen-string-lib-gitlab-even-even-even-more' into 'master'Rémy Coutable
Enable even more frozen string for lib/gitlab See merge request gitlab-org/gitlab-ce!23225
2018-11-20Merge branch 'revert-e2aa2177' into 'master'Sean McGivern
Revert "Merge branch 'zj-improve-gitaly-pb' into 'master'" See merge request gitlab-org/gitlab-ce!23229
2018-11-20Merge branch 'fix/allow-saml2-for-2fa-bypass' into 'master'Douwe Maan
saml/auth_hash: Allow 2FA bypass for SAML 2.0 responses See merge request gitlab-org/gitlab-ce!22568
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-20Revert "Merge branch 'zj-improve-gitaly-pb' into 'master'"Sean McGivern
This reverts merge request !23140
2018-11-20Use cached size when passing artifacts to RunnerKamil Trzciński
2018-11-20Merge branch 'master' of dev.gitlab.org:gitlab/gitlabhqSteve Azzopardi
2018-11-20Merge branch 'zj-improve-gitaly-pb' into 'master'Sean McGivern
Show what RPC is called in the performance bar See merge request gitlab-org/gitlab-ce!23140
2018-11-20Enable even more frozen string for lib/gitlabgfyoung
Enables frozen string for the following: * lib/gitlab/patch/**/*.rb * lib/gitlab/popen/**/*.rb * lib/gitlab/profiler/**/*.rb * lib/gitlab/project_authorizations/**/*.rb * lib/gitlab/prometheus/**/*.rb * lib/gitlab/query_limiting/**/*.rb * lib/gitlab/quick_actions/**/*.rb * lib/gitlab/redis/**/*.rb * lib/gitlab/request_profiler/**/*.rb * lib/gitlab/search/**/*.rb * lib/gitlab/sherlock/**/*.rb * lib/gitlab/sidekiq_middleware/**/*.rb * lib/gitlab/slash_commands/**/*.rb * lib/gitlab/sql/**/*.rb * lib/gitlab/template/**/*.rb * lib/gitlab/testing/**/*.rb * lib/gitlab/utils/**/*.rb * lib/gitlab/webpack/**/*.rb Partially addresses gitlab-org/gitlab-ce#47424.
2018-11-20Merge branch 'frozen-string-lib-gitlab-even-even-more' into 'master'Stan Hu
Enable even more frozen string for lib/gitlab See merge request gitlab-org/gitlab-ce!23161
2018-11-20Prevent templated services from being importedStan Hu
Templated services should only be created by admins and does not apply to project import/export. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/54189
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-19Change param name for consistencyHeinrich Lee Yu
2018-11-19Add group projects API options for including shared and subgroupsHeinrich Lee Yu
2018-11-19Merge branch 'improve-variables-support' into 'master'Sean McGivern
Improve variables support See merge request gitlab-org/gitlab-ce!23077
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-19SSH public-key authentication for push mirroringNick Thomas
2018-11-19Auto DevOps support for Group Security DashboardFabio Busatto
2018-11-17Enable even more frozen string for lib/gitlabgfyoung
Enables frozen string for the following: * lib/gitlab/hook_data/**/*.rb * lib/gitlab/i18n/**/*.rb * lib/gitlab/import/**/*.rb * lib/gitlab/import_export/**/*.rb * lib/gitlab/kubernetes/**/*.rb * lib/gitlab/legacy_github_import/**/*.rb * lib/gitlab/manifest_import/**/*.rb * lib/gitlab/metrics/**/*.rb * lib/gitlab/middleware/**/*.rb Partially addresses gitlab-org/gitlab-ce#47424.
2018-11-16Change project pipeline status cache key to follow project conventionGabriel Mazetto
Old cache key was: `projects/#{id}/pipeline_status/#{sha}` New one is: `project:#{id}:pipeline_status:#{sha}` This allows to delete any project related key just by scanning for: `project:#{id}`.
2018-11-16Change project cache key to depend on ID instead of full pathGabriel Mazetto
Previously, project cache used as part of the namespace the `full_path`, which included namespace and project slug. That meant that anytime a project was renamed or transfered to a different namespace, we would lose the existing cache. This is not necessary, nor desired. I've prefixed cache key with `project:` to make it easy to find in redis if necessary as well as make it possible to purge all project related cache. I've also switched the cache key type to go after the initial namespace and not before.
2018-11-16Merge branch '41875-allow-pipelines-to-be-deleted-by-project-owners' into ↵Grzegorz Bizon
'master' Resolve "Allow pipelines to be deleted by project owners" Closes #41875 See merge request gitlab-org/gitlab-ce!22988
2018-11-16WIPKamil Trzciński
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-16Merge branch ↵Steve Azzopardi
'54011-all-files-named-index-have-their-content-rendered-as-if-they-were-text-files' into 'master' Resolve "All files named `index.*` have their content rendered as if they were text files" Closes #54011 See merge request gitlab-org/gitlab-ce!23063
2018-11-16Merge branch 'sh-use-nokogiri-xml-backend' into 'master'Kamil Trzciński
Use Nokogiri as the ActiveSupport XML backend Closes #54068 See merge request gitlab-org/gitlab-ce!23136
2018-11-16Show what RPC is called in the performance barZeger-Jan van de Weg
Now only the data was shown of the service, which is not valueable at times given some of those expose a lot of RPCs.
2018-11-16Fix rubocop warningJames Lopez
2018-11-16Remove unnecessary --tiller-namespaceDylan Griffith
2018-11-16Use helm version loop instead of sleep in ClientCommandDylan Griffith
2018-11-16Extract Helm::ClientCommand for shared commandsDylan Griffith
2018-11-16Merge branch 'allow-to-use-glob-for-ci-changes-detection' into 'master'Grzegorz Bizon
Add glob for CI changes detection See merge request gitlab-org/gitlab-ce!23128
2018-11-16Merge branch 'gt-fix-typos-in-lib' into 'master'Sean McGivern
Fix typos in lib See merge request gitlab-org/gitlab-ce!23106
2018-11-16Remove redundant end anchorsJames Lopez
2018-11-16Upgrade helm to 2.11.0 and upgrade on every installDylan Griffith
2018-11-16Update regex to use unionJames Lopez
2018-11-16Merge branch 'fj-fix-bug-commit-check' into 'master'Douwe Maan
Fix bug in Gitlab::Checks::CommitCheck See merge request gitlab-org/gitlab-ce!23045
2018-11-16Use Nokogiri as the ActiveSupport XML backendStan Hu
This significantly improves performance and reduces memory consumption when parsing XML files. On a test with 124 JUnit files from a CE build, there was about a 4x reduction in processing time. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/54068
2018-11-16Merge branch 'docs/rs-revert-api-version' into 'master'Evan Read
Revert API is going into 11.5, not 11.6. See merge request gitlab-org/gitlab-ce!23060
2018-11-15Add glob for CI changes detectionKirill Zaitsev
2018-11-15Merge branch 'frozen-string-lib-gitlab-even-more' into 'master'Stan Hu
Enable even more frozen string in lib/gitlab See merge request gitlab-org/gitlab-ce!22959
2018-11-15Merge branch 'if-53347_fix_impersonation_tokens' into 'master'Stan Hu
Display impersonation token value only after creation See merge request gitlab-org/gitlab-ce!22916