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/config
AgeCommit message (Collapse)Author
2018-06-04Update validatorKamil Trzciński
2018-06-04Support presigned multipart uploadsKamil Trzciński
2018-06-02Fix attr_encryption key settingsStan Hu
attr_encrypted does different things with `key` depending on what mode you are using: 1. In `:per_attribute_iv_and_salt` mode, it generates a hash with the salt: https://github.com/attr-encrypted/encryptor/blob/c3a62c4a9e74686dd95e0548f9dc2a361fdc95d1/lib/encryptor.rb#L77. There is no need to truncate the key to 32 bytes here. 2. In `:per_attribute_iv` mode, it sets the key directly to the password, so truncation to 32 bytes is necessary. Closes #47166
2018-06-01Add comment about the need for truncating keys in Ruby 2.4Stan Hu
[ci skip]
2018-06-01Merge branch 'sh-bump-ruby-2.4' into 'master'Stan Hu
Upgrade to Ruby 2.4.4 See merge request gitlab-org/gitlab-ce!19055
2018-06-01Add "deny disk access" Gitaly feature (tripswitch)Jacob Vosmaer (GitLab)
2018-06-01Merge branch '46481-preserve-warnings-even-if-passed' into 'master'Douwe Maan
Resolve "A lot of constants redefinition warnings" Closes #46481 See merge request gitlab-org/gitlab-ce!19286
2018-06-01Merge branch 'add-moneky-patch-for-using-stream-upload-with-carrierwave' ↵Kamil Trzciński
into 'master' Add a monkey patch of https://github.com/carrierwaveuploader/carrierwave/pull/2314 See merge request gitlab-org/gitlab-ce!19102
2018-06-01Introduce Gitlab::Auth.omniauth_setup_providersLin Jen-Shin
Which could extend from EE
2018-06-01Eliminate constants warnings by:Lin Jen-Shin
* Replace `require` or `require_relative` with `require_dependency` * Remove unneeded `autoload`
2018-06-01Update 404 and 403 pagesPaul Slaughter
2018-05-31Export assigned issues in iCalendar feedImre Farkas
2018-05-30better handle a missing gitlab-shell versionBrett Walker
2018-05-30Merge branch 'sh-use-grape-path-helpers' into 'master'Sean McGivern
Replace grape-route-helpers with our own grape-path-helpers Closes #45718 See merge request gitlab-org/gitlab-ce!19240
2018-05-30Replace grape-route-helpers with our own grape-path-helpersStan Hu
This gem (https://gitlab.com/gitlab-org/grape-path-helpers) makes a number of changes: 1. Brings in @mdelaossa's changes in https://github.com/reprah/grape-route-helpers/pull/21 2. Fixes some broken specs and code for Grape 1.0+ 3. Optimizes the generation of paths by bringing in @dblessing's HashWithIndifferentAccess changes in https://gitlab.com/gitlab-org/gitlab-ce/issues/45718#note_70123793 Closes #45718
2018-05-30Upgrade to Ruby 2.4.4Stan Hu
Fixes that make this work: * A change in Ruby (https://github.com/ruby/ruby/commit/ce635262f53b760284d56bb1027baebaaec175d1) requires passing in the exact required length for OpenSSL keys and IVs. * Ensure the secrets.yml is generated before any prepended modules are loaded. This is done by renaming the `secret_token.rb` initializer to `01_secret_token.rb`, which is a bit ugly but involves the least impact on other files.
2018-05-29Add `shared_projects` endpointBob Van Landuyt
This endpoint lists projects shared with a group visible to the current user. The `filter` and `sort` params are supported like on the `children` endpoint.
2018-05-28Merge branch '45190-create-notes-diff-files' into 'master'Douwe Maan
Persist and use truncated note diffs instead requesting Gitaly in a N+1 manner on MR page Closes #45190 See merge request gitlab-org/gitlab-ce!18991
2018-05-28Revise commentsShinya Maeda
2018-05-28Clean up patchShinya Maeda
2018-05-28Fix rubocop namespaceShinya Maeda
2018-05-28Reload remote file the cacheds file is already removedShinya Maeda
2018-05-28Use prepend to correctly use the monketpatch's methodShinya Maeda
2018-05-28Fix static analysisShinya Maeda
2018-05-28Add a monkey pach of ↵Shinya Maeda
https://github.com/carrierwaveuploader/carrierwave/pull/2314
2018-05-25Merge branch '46600-fix-gitlab-revision-when-not-in-git-repo' into 'master'Rémy Coutable
Resolve "gitlab 10.8 assumes that installation is a git working copy." Closes #46600 See merge request gitlab-org/gitlab-ce!19125
2018-05-25Merge branch 'sh-disable-background-metrics-in-tests' into 'master'Robert Speicher
Disable the background Prometheus sampler in tests See merge request gitlab-org/gitlab-ce!19130
2018-05-24Persist truncated note diffs on a new tableOswaldo Ferreira
We request Gitaly in a N+1 manner to build discussion diffs. Once the diffs are from different revisions, it's hard to make a single request to the service in order to build the whole response. With this change we solve this problem and simplify a lot fetching this piece of info.
2018-05-24Merge branch '46741-add-access-control-allow-headers-wds' into 'master'Mike Greiling
Add `Access-Control-Allow-Headers` to Webpack Dev Server config Closes #46741 See merge request gitlab-org/gitlab-ce!19131
2018-05-24Add `Access-Control-Allow-Headers` to Webpack Dev Server configKushal Pandya
2018-05-24Disable the background Prometheus sampler in testsStan Hu
This sampler can interfere with tests and cause transient build failures, such as https://gitlab.com/gitlab-org/gitlab-ce/-/jobs/70241683.
2018-05-24Replace Gitlab::REVISION with Gitlab.revision and handle installations ↵Rémy Coutable
without a .git directory Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-05-23Merge branch ↵Douwe Maan
'45175-cache-json-instead-of-activerecord-objects-in-appearance-and-applicationsetting' into 'master' Resolve "Cache JSON instead of ActiveRecord objects in `Appearance` and `ApplicationSetting`" Closes #45175 See merge request gitlab-org/gitlab-ce!18754
2018-05-23Merge branch '46259-prometheus-integration-fails-on-kube-1-10' into 'master'Rémy Coutable
Resolve "Prometheus integration fails on k8s 1.10" Closes #46259 See merge request gitlab-org/gitlab-ce!19082
2018-05-23Don't expire the current ApplicationSetting in config/initializers/1_settings.rbRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-05-23Fix rubocopTiago Botelho
2018-05-23add file cache to vue-loader to speed up compilationMike Greiling
2018-05-22Monkey patches Kubeclient::Client#proxy_url in order to make it compliant ↵Tiago Botelho
with version 1.10 of kubernetes API
2018-05-22Merge branch '45532-upgrade-vue-loader' into 'master'Phil Hughes
Resolve "Upgrade vue-loader for bug fixes and a simpler webpack config" Closes #45532 See merge request gitlab-org/gitlab-ce!19052
2018-05-19simplify and reorganize webpack configMike Greiling
2018-05-19move devtool setting into main config objectMike Greiling
2018-05-19upgrade to vue-loader 15.0.11 and update webpack configMike Greiling
2018-05-18Ensure Flipper memoizer is used in Sidekiq's contextRémy Coutable
Also, don't use the provided Middleware, which isn't thread-safe, and instantiate a new Flipper instance per thread instead. Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-05-17Conditionally add Gitaly deprecation warnings based on ENV variableStan Hu
2018-05-14More verbose logging for deprecated path accessZeger-Jan van de Weg
Current logging tells us we've isolated the calls to about 5 call sites, now we'd like to know what is calling these methods.
2018-05-11Merge branch 'zj-validation-initializer' into 'master'Kamil Trzciński
Remove method call to deprecated method See merge request gitlab-org/gitlab-ce!18815
2018-05-11Remove method call to deprecated methodZeger-Jan van de Weg
Given the settings initializer creates Gitaly Storage Settings objects already, the calls to path can be moved to that initializer.
2018-05-09Fix finding wiki pages when they have invalidly-encoded contentAhmad Sherif
Fixes #43715
2018-05-07Merge branch 'upgrade-to-webpack-v4' into 'master'Clement Ho
Upgrade to Webpack 4 Closes #43400 See merge request gitlab-org/gitlab-ce!17218
2018-05-07Merge branch 'master' into upgrade-to-webpack-v4Mike Greiling
* master: (252 commits) Upgrade underscore.js Enable prometheus metrics by default Add signature verification badge to compare view Add Changelog Update instalation from source guide fix Web IDE file tree scroll issue Enable quick support actions default Backport of 4084-epics-username-autocomplete Remove top margin on the terms page with performance bar Backports every CE related change from ee-44542 to CE Fix typo in changelog entry fix missing space Backport IdentityLinker#failed? from GroupSaml callback flow Add ci_cd_settings delete_all dependency on project AutoDevOps Docs fix invalid external link Ignore knapsack and rspec_flaky Ensure web hook 'blocked URL' errors are stored in as web hook logs and properly surfaced to the user Partially revert ebcd5711c5ff937bf925002bf9a5b636b037684e to fix runner pages Reuses `InternalRedirect` when possible Enforces terms in the web application ...