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-06-23Merge branch 'hot-reload' into 'master'Tim Zallmann
hot reloading for .vue files Closes #33729 See merge request !12180
2017-06-23Merge branch '31574-bootstrap-form-builder' into 'master'Phil Hughes
Add bootstrap_form gem See merge request !10985
2017-06-22Merge branch 'rs-revert-bootsnap' into 'master'Stan Hu
Revert "Merge branch 'rs-bootsnap' into 'master'" Closes #34134, #34106, and #34084 See merge request !12389
2017-06-22Merge branch 'mk-add-datetime-with-timezone-table-definition' into 'master'Yorick Peterse
Add `datetime_with_timezone` to table definition See merge request !12292
2017-06-22Merge branch '33940-cache-flipper_gate-query' into 'master'Robert Speicher
Add the Flipper::Middleware::Memoizer middleware Closes #33940 See merge request !12359
2017-06-22Revert "Merge branch 'rs-bootsnap' into 'master'"Robert Speicher
This reverts commit 95138a9c16a2d1905354d0f46381b3822b37863d, reversing changes made to 66aad16d1aaa426237e52ef19385385566f194dc.
2017-06-22Fix MySQL schema dump for `timestamp`Michael Kozono
2017-06-22Fix PostgreSQL schema dump for `timestamptz`Michael Kozono
2017-06-22Add `datetime_with_timezone` to table definitionMichael Kozono
So the method can be used in a `create_table` block. There is a new Rubocop style cop that requires the usage of `datetime_with_timezone`.
2017-06-22Convert app/views/profiles/show.html.haml to bootstrap_formNick Thomas
2017-06-22Merge remote-tracking branch 'upstream/master' into ↵Pawel Chojnacki
28717-additional-metrics-review-branch
2017-06-21Add the Flipper::Middleware::Memoizer middlewareRémy Coutable
This ensures we make maximum one call per feature per request. See https://github.com/jnunemaker/flipper/blob/v0.10.2/docs/Optimization.md#memoizing-middleware Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-06-21Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon
2017-06-21Merge branch 'gitaly-auth-token' into 'master'Sean McGivern
Pass Gitaly token on Ruby gRPC requests See merge request !12228
2017-06-20Enable gitaly token auth when testingJacob Vosmaer
2017-06-20Rubocop and comment fixesJacob Vosmaer
2017-06-20Merge branch 'master' of github.com:gitlabhq/gitlabhqkushalpandya
2017-06-19Do not enable prometheus metrics when data folder is not present.Pawel Chojnacki
+ Set defaults correctly only for when not in production or staging + set ENV['prometheus_multiproc_dir'] in config/boot.rb instead of config.ru Test prometheus metrics unmemoized
2017-06-19Pass Gitaly token on Ruby gRPC requestsJacob Vosmaer
2017-06-18Merge branch 'fix-atom-eslint' into 'master'Tim Zallmann
Fix eslint import resolver in Atom v1.18.0 See merge request !12238
2017-06-17refactor zopfli fallback configMike Greiling
2017-06-17don't make assumptions about command line arguments invoking webpack configMike Greiling
2017-06-16Increase karma socket timeoutMike Greiling
2017-06-16move additional_metrics.yaml into prometheus/ config folderPawel Chojnacki
2017-06-16Merge remote-tracking branch 'upstream/master' into ↵Pawel Chojnacki
28717-additional-metrics-review-branch
2017-06-16Merge branch 'bvl-missing-translations' into 'master'Douwe Maan
Missing translations for the project & repository pages. Closes #33420 See merge request !12052
2017-06-16Merge branch 'speed-up-graphs' into 'master'Rémy Coutable
Speed up used languages calculation on charts page See merge request !12212
2017-06-16Merge branch 'set_proper_defaults_for_metric_paths' into 'master'Robert Speicher
set ENV['prometheus_multiproc_dir'] in config/boot.rb instead of config.ru See merge request !12201
2017-06-16Speed up used languages calculation on charts pageSean McGivern
We removed calls from our code to Rugged::Repository#fetch_attributes: <https://gitlab.com/gitlab-org/gitlab_git/commit/340e111e040ae847b614d35b4d3173ec48329015> However, we didn't remove calls from within Linguist. This method is only called when calculating the languages for a repository on the Charts page: <https://github.com/github/linguist/blob/v4.7.0/lib/linguist/lazy_blob.rb#L33-L36> We can safely use our own Gitlab::Git::Attributes here. On staging, for the GitLab CE repo, this makes the calculation take about a third of the time: # Before Benchmark.realtime do Linguist::Repository.new(repository.rugged, repository.rugged.head.target_id).languages end #=> 23.67193900188431 # After Benchmark.realtime do Linguist::Repository.new(repository.rugged, repository.rugged.head.target_id).languages end #=> 8.945212290156633
2017-06-16Merge branch 'karma-headless-chrome-redux' into 'master'Tim Zallmann
Replace PhantomJS with Chrome in Karma test runner (2nd attempt) Closes #33633 See merge request !12144
2017-06-16set ENV['prometheus_multiproc_dir'] in config/boot.rb instead of config.ruPawel Chojnacki
2017-06-15Merge branch 'sh-support-cdns' into 'master'Robert Speicher
Support a configurable Rails asset_host to allow for CDNs See merge request !12102
2017-06-15Rename CDN_HOST to GITLAB_CDN_HOSTStan Hu
2017-06-15Take timezone into account when comparing dates in the UIBob Van Landuyt
2017-06-15Update timeago tooltips for SpanishBob Van Landuyt
2017-06-15Use the same time format as beforeBob Van Landuyt
2017-06-15Re-add time_ago_in_wordsBob Van Landuyt
2017-06-15Make sure there's only 1 `errors.messages` definition in en.ymlBob Van Landuyt
2017-06-15Translate time tooltips.Bob Van Landuyt
Let the backend do the translation.
2017-06-15Merge branch 'instrument-merge-request-diff-load-commits' into 'master'Sean McGivern
Instrument MergeRequestDiff#load_commits See merge request !12162
2017-06-15hot reloading for .vue filesSimon Knox
2017-06-15Support a configurable Rails asset_host to allow for CDNsStan Hu
Adds support for https://gitlab.com/gitlab-com/infrastructure/issues/57
2017-06-14add DEBUG flag option to karma configMike Greiling
2017-06-14Move vue components to vue files and match docsFilipa Lacerda
2017-06-14Instrument MergeRequestDiff#load_commitsSean McGivern
This instrumentation isn't needed strictly for performance measurements, but just to see which controller actions call this method at all. See <https://gitlab.com/gitlab-org/gitlab-ce/issues/30224#note_32306159> for more details.
2017-06-14run chrome with --no-sandbox flag to get around docker privilege limitationsMike Greiling
2017-06-14force chrome to produce debug output as it runs in CIMike Greiling
2017-06-14replace PhantomJS with headless Chrome as karma test runnerMike Greiling
2017-06-13Revert "Merge branch 'karma-headless-chrome' into 'master'"Mike Greiling
This reverts merge request !12036
2017-06-13Merge branch ↵Yorick Peterse
'32054-rails-should-use-timestamptz-database-type-for-postgresql' into 'master' Add database helpers 'add_timestamps_with_timezone' and 'timestamps_with_timezone' Closes #32054 See merge request !11229