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-01-11Filter out build traces from logged parametersStan Hu
2018-01-09Fixing bug related to wiki last versionFrancisco Javier López
2018-01-08Merge branch 'winh-webpack-concatenated-module' into 'master'Jacob Schatz
Fix Webpack config for ConcatenatedModule Closes #41649 See merge request gitlab-org/gitlab-ce!16219
2018-01-05Change reset_cache action from get to postMatija Čupić
2018-01-05Merge branch 'master' into 41249-clearing-the-cacheMatija Čupić
2018-01-05Backport 'Rebase' feature from EE to CEJan Provaznik
When a project uses fast-forward merging strategy user has to rebase MRs to target branch before it can be merged. Now user can do rebase in UI by clicking 'Rebase' button instead of doing rebase locally. This feature was already present in EE, this is only backport of the feature to CE. Couple of changes: * removed rebase license check * renamed migration (changed timestamp) Closes #40301
2018-01-05Merge branch 'master' into 41249-clearing-the-cacheMatija Čupić
2018-01-05Fix Webpack config for ConcatenatedModuleWinnie Hellmann
2018-01-05Move cache reset to ci_cd_settings controllerMatija Čupić
2018-01-02Merge branch ↵Sean McGivern
'39289-local-schema-rb-automatically-reverts-datetime-to-datetime_with_timezone-after-migrations' into 'master' Prevent schema.rb reverting from datetime_with_timezone to datetime Closes #39289 See merge request gitlab-org/gitlab-ce!14956
2018-01-01Rename asset sync related AWS variablesBalasankar "Balu" C
2017-12-27Add pause/resume button to specific project runnersMario de la Ossa
2017-12-22Merge branch 'master' into 41249-clearing-the-cacheMatija Čupić
2017-12-22Merge branch 'dm-issue-move-transaction-error' into 'master'Robert Speicher
Execute project hooks and services after commit when moving an issue Closes #41324 See merge request gitlab-org/gitlab-ce!16108
2017-12-22Execute project hooks and services after commit when moving an issueDouwe Maan
2017-12-22Use gitlab-stylesRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-12-22Make webpack fail for missing exportsWinnie Hellmann
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
2017-12-21Merge branch 'master' into fix-webpack-chunk-namingClement Ho
2017-12-21Resolve "Decouple multi-file editor from file list"Tim Zallmann
2017-12-21Stub out project#reset_cacheMatija Čupić
2017-12-21properly handle naming for dispatcher route chunksMike Greiling
2017-12-21Merge branch 'jivl-replace-d3-v3-v4' into 'master'Mike Greiling
Update d3 to v4 to enable tree shaking (and reduce the size of our webpack bundles) Closes #37013 See merge request gitlab-org/gitlab-ce!15585
2017-12-19Fix shortcut links on help pageClement Ho
2017-12-19added minChunks to the common_d3 bundleJose Ivan Vargas
2017-12-19Refactored d3 modules to instead of having a common_d3 dir, to use the micro ↵Jose Ivan Vargas
modules instead
2017-12-19optimized d3 v4 with a custom made bundleJose Ivan Vargas
2017-12-18Merge branch 'sh-add-schedule-pipeline-run-now' into 'master'Kamil Trzciński
Add button to run scheduled pipeline immediately Closes #38741 See merge request gitlab-org/gitlab-ce!15700
2017-12-16changed webpack configPhil Hughes
2017-12-15Merge branch 'no-ivar-in-modules' into 'master'Robert Speicher
Add cop to make sure we don't use ivar in a module See merge request gitlab-org/gitlab-ce!12800
2017-12-15Merge branch 'rc/use-factory_bot_rails' into 'master'Robert Speicher
Replace factory_girl_rails with factory_bot_rails See merge request gitlab-org/gitlab-ce!15919
2017-12-15Merge 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
2017-12-15Make sure user email is read only when synced with LDAPDouwe Maan
2017-12-15Merge branch 'backport-ee-3706' into 'master'Dmitriy Zaporozhets
Add eager-load paths to autoload paths to fix Rake tasks See merge request gitlab-org/gitlab-ce!15940
2017-12-15Merge remote-tracking branch 'upstream/master' into no-ivar-in-modulesLin Jen-Shin
* upstream/master: (671 commits) Make rubocop happy Use guard clause Improve language Prettify Use temp branch Pass info about who started the job and which job triggered it Docs: add indexes for monitoring and performance monitoring clearer-documentation-on-inline-diffs Add docs for commit diff discussion in merge requests sorting for tags api Clear BatchLoader after each spec to prevent holding onto records longer than necessary Include project in BatchLoader key to prevent returning blobs for the wrong project moved lfs_blob_ids method into ExtractsPath module Converted JS modules into exported modules spec fixes Bump gitlab-shell version to 5.10.3 Clear caches before updating MR diffs Use new Ruby version 2.4 in GitLab QA images moved lfs blob fetch from extractspath file Update GitLab QA dependencies ...
2017-12-14Merge branch 'rc/update-flipper' into 'master'Robert Speicher
Update flipper to 0.11.0 and take advantage of the new features See merge request gitlab-org/gitlab-ce!15920
2017-12-14Add eager-load paths to autoload paths to fix Rake tasksNick Thomas
Rake doesn't respect eager-loading, so to avoid explicit requires we have to duplicate the eager-load config into the auto-load config. This backports an EE change made in https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/3706
2017-12-14Replace factory_girl_rails with factory_bot_railsRémy Coutable
I've followed the [upgrade guide](https://github.com/thoughtbot/factory_bot/blob/4-9-0-stable/UPGRADE_FROM_FACTORY_GIRL.md) and ran these two commands: ``` grep -e FactoryGirl **/*.rake **/*.rb -s -l | xargs sed -i "" "s|FactoryGirl|FactoryBot|" grep -e factory_girl **/*.rake **/*.rb -s -l | xargs sed -i "" "s|factory_girl|factory_bot|" ``` Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-12-14Merge branch 'dm-dedicated-sidekiq-queues' into 'master'Sean McGivern
Use a dedicated queue for each Sidekiq worker See merge request gitlab-org/gitlab-ce!15882
2017-12-14Update flipper to 0.11.0 and take advantage of the new featuresRémy Coutable
- Added an ActiveSupport (using Rails.cache) caching adapter - Overview of the new features can be found at https://johnnunemaker.com/flippin-features-at-runtime/ - Full Changelog can be found at https://github.com/jnunemaker/flipper/blob/v0.11.0/Changelog.md Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-12-13Remove unused queuesDouwe Maan
2017-12-13Address some comments with running a pipeline scheduleStan Hu
2017-12-13Add button to run scheduled pipeline immediatelyStan Hu
Closes #38741
2017-12-12Use a dedicated queue for each workerDouwe Maan
2017-12-12Merge branch 'master' into 40468-empty-statesFilipa Lacerda
* master: (54 commits) Updated image for diff navigation docs Milestone sidebar docs Use app host instead of asset host when rendering image blob or diff ActiveRecord::StaleObjectError: Attempted to update a stale object: Ci::Build Use shared interceptor in note specs Ignore temporary table in schema Check for null in job tooltip title Clarify casing of I18N placeholder names fixes some markup issues in the js style guide docs Fix migration that removes issues.branch_name small change to make less conflict with EE version Add cop for use of remove_column Resolve merge conflicts with dev.gitlab.org/master after security release add index for doc/administration/operations/ Remove RubySampler#sample_objects for performance as well Bugfix: User can't change the access level of an access requester Add spec for removing issues.assignee_id updated imports Keep track of storage check timings Remove a header level in the new 'Automatic CE->EE merge' doc ...
2017-12-11Ignore temporary table in schemaMichael Kozono
2017-12-11Improve empty states for TODOs and issuesFilipa Lacerda
2017-12-08Resolve "Include asset_sync gem"Ian Baum
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