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
2017-12-21Merge branch 'diff-worker-js-fix' into 'master'Jacob Schatz
Fixed diff_worker not compiling correctly Closes #41182 See merge request gitlab-org/gitlab-ce!15966 (cherry picked from commit baa6438b966a3f96041c8069a81836a7cd1e9a65) df4fe43d Fixed diff_worker not compiling correctly a69e7aff changed webpack config
2017-12-19Merge branch 'dm-ldap-email-readonly' into 'master'Sean McGivern
Make sure user email is read only when synced with LDAP Closes #41033 See merge request gitlab-org/gitlab-ce!15915 (cherry picked from commit d39d968ba4100be3e77e9d02af6ce10ff18ca508) 481b8a71 Make sure user email is read only when synced with LDAP
2017-12-13Merge branch 'mk-fix-schema-dump-of-untracked-files-for-uploads' into 'master'Stan Hu
Ignore temporary table in schema Closes #40976 See merge request gitlab-org/gitlab-ce!15866 (cherry picked from commit 9e9d33134632618b135dc7f6f6e3f0d3d8ab5cdd) 61267ca9 Ignore temporary table in schema
2017-12-08Move the circuitbreaker check out in a separate processBob Van Landuyt
Moving the check out of the general requests, makes sure we don't have any slowdown in the regular requests. To keep the process performing this checks small, the check is still performed inside a unicorn. But that is called from a process running on the same server. Because the checks are now done outside normal request, we can have a simpler failure strategy: The check is now performed in the background every `circuitbreaker_check_interval`. Failures are logged in redis. The failures are reset when the check succeeds. Per check we will try `circuitbreaker_access_retries` times within `circuitbreaker_storage_timeout` seconds. When the number of failures exceeds `circuitbreaker_failure_count_threshold`, we will block access to the storage. After `failure_reset_time` of no checks, we will clear the stored failures. This could happen when the process that performs the checks is not running.
2017-12-07Merge branch 'pawel/update-prometheus_gem_to_highly_optimized_version' into ↵Stan Hu
'master' Update prometheus-client-mmap gem to highly optimized version See merge request gitlab-org/gitlab-ce!15796
2017-12-07Update prometheus-client-mmap gem to highly optimized versionPawel Chojnacki
+ change string concatenation to help with GC pressure. + fix metric producing incompatible label sets
2017-12-07Support uploads for groupsJarka Kadlecova
2017-12-05Merge branch 'feature/custom-text-for-new-projects' into 'master'Rémy Coutable
Add custom brand text on new project pages Closes #15265 See merge request gitlab-org/gitlab-ce!15541
2017-12-05Merge branch 'zj-multiple-artifacts' into 'master'Grzegorz Bizon
Multiple artifacts See merge request gitlab-org/gitlab-ce!14367
2017-12-05Merge branch 'dm-application-worker' into 'master'Sean McGivern
Add ApplicationWorker and make every worker include it See merge request gitlab-org/gitlab-ce!15632
2017-12-05Merge branch '32878-merge-request-from-email' into 'master'Sean McGivern
Create merge request from email Closes #32878 See merge request gitlab-org/gitlab-ce!13817
2017-12-05Second iteration of Move Kubernetes from service to Cluster pageFilipa Lacerda
2017-12-05Consistently schedule Sidekiq jobsDouwe Maan
2017-12-05Add ApplicationWorker and make every worker include itDouwe Maan
2017-12-05Create merge request from emailJan Provaznik
* new merge request can be created by sending an email to the specific email address (similar to creating issues by email) * for the first iteration, source branch must be specified in the mail subject, other merge request parameters can not be set yet * user should enable "Receive notifications about your own activity" in user settings to receive a notification about created merge request Part of #32878
2017-12-04Add custom brand text on new project pagesMarkus Koller
2017-12-04Merge branch 'gollum-initializer-warning' into 'master'Rémy Coutable
Add notice to Gollum initializer See merge request gitlab-org/gitlab-ce!15713
2017-12-04Add notice to gollum initializerJacob Vosmaer
2017-12-03Use tmp/test/artifacts for filesKamil Trzcinski
2017-11-30Merge branch 'master' into multi-file-editor-dirty-diff-indicatorPhil Hughes
2017-11-28BE for automatic pipeline when enabling Auto DevOpsMatija Čupić
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/38962
2017-11-28fixed web worker performancePhil Hughes
[ci skip]
2017-11-24Update svg external dependencyFilipa Lacerda
2017-11-24Merge branch 'pawel/update_prometheus_gem_to_well_tested_version' into 'master'Douwe Maan
Update Prometheus Gem version and disable Prometheus method call instrumentation by default. Closes gitlab-ee#4139 and #40457 See merge request gitlab-org/gitlab-ce!15558
2017-11-24Rename wip to worker_idPawel Chojnacki
2017-11-24Move prometheus middle ware to prometheus initialized.Pawel Chojnacki
2017-11-23Allow password authentication to be disabled entirelyMarkus Koller
2017-11-22Speed up Unicorn specs by using a dummy Rack application instead of GitLabNick Thomas
2017-11-22Merge branch 'feature_add_mermaid' into 'master'Phil Hughes
Add support of Mermaid Closes #3711 See merge request gitlab-org/gitlab-ce!15107
2017-11-22Add support of MermaidVitaliy @blackst0ne Klachkov
2017-11-21Set the default gitlab-shell timeout to 3 hoursNick Thomas
2017-11-21Batchload blobs for diff generationZeger-Jan van de Weg
After installing a new gem, batch-loader, a construct can be used to queue data to be fetched in bulk. The gem was also introduced in both gitlab-org/gitlab-ce!14680 and gitlab-org/gitlab-ce!14846, but those mrs are not merged yet. For the generation of diffs, both the old blob and the new blob need to be loaded. This for every file in the diff, too. Now we collect all these so we do 1 fetch. Three `.allow_n_plus_1_calls` have been removed, which I expect to be valid, but this needs to be confirmed by a full CI run. Possibly closes: - https://gitlab.com/gitlab-org/gitlab-ce/issues/37445 - https://gitlab.com/gitlab-org/gitlab-ce/issues/37599 - https://gitlab.com/gitlab-org/gitlab-ce/issues/37431
2017-11-20Fix offense to the LineBreakAfterGuardClauses copRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-11-20Merge branch '18040-rubocop-line-break-after-guard-clause' into 'master'Rémy Coutable
Adds Rubocop rule for line break after guard clause Closes #18040 See merge request gitlab-org/gitlab-ce!15188
2017-11-17Merge branch 'mk-add-user-rate-limits' into 'master'Douwe Maan
Add request rate limits Closes #30053 See merge request gitlab-org/gitlab-ce!14708
2017-11-17Resolve "Performance issues when loading large number of wiki pages"Francisco Javier López
2017-11-17Don't add methods to Rack::AttackMichael Kozono
2017-11-17Fix OAuth API and RSS rate limitingMichael Kozono
2017-11-17Allow throttling code in test environmentMichael Kozono
This code should not break other tests because the rate limits are off by default.
2017-11-17Add request throttlesMichael Kozono
2017-11-16Adds Rubocop rule for line break after guard clauseJacopo
Adds a rubocop rule (with autocorrect) to ensure line break after guard clauses.
2017-11-16Update license_finder to 3.1.1Winnie Hellmann
2017-11-15Resolve "npm list errors for gitlab-svgs and node-pre-gyp"Tim Zallmann
2017-11-12Change label to be more consistent, not a series.Joshua Lambert
2017-11-12Fix CPU metricJoshua Lambert
2017-11-12Fix to use variableJoshua Lambert
2017-11-12Adjust metrics to ignore Job tag to support k8s 1.7+Joshua Lambert
2017-11-10Revert "Merge branch 'add-typescript' into 'master'"Jacob Schatz
This reverts merge request !15264
2017-11-10Merge branch '32059-fix-oauth-phishing' into 'security-10-1'Douwe Maan
Prevent OAuth phishing attack by presenting detailed wording about app to user during authorization See merge request gitlab/gitlabhq!2205
2017-11-08Merge branch 'github-importer-refactor' into 'master'Douwe Maan
Rewrite the GitHub importer to perform work in parallel and greatly improve performance Closes #33135, #38621, and #39361 See merge request gitlab-org/gitlab-ce!14731