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
AgeCommit message (Collapse)Author
2018-07-19Merge branch 'add-total-time-flat-printer-for-profiling' into 'master'Rémy Coutable
Add a Gitlab::Profiler.print_by_total_time convenience method See merge request gitlab-org/gitlab-ce!20715
2018-07-19Merge branch '49413-test-action-no-return' into 'master'Filipa Lacerda
Allow testAction to work for async actions that don't return a Promise Closes #49413 See merge request gitlab-org/gitlab-ce!20718
2018-07-19Add a Gitlab::Profiler.print_by_total_time convenience methodSean McGivern
This method uses Gitlab::Profiler::TotalTimeFlatPrinter internally, which is the same as RubyProf::FlatPrinter, but the min_percent option (and new max_percent option) applies to the _total_ time, not the _self_ time. This helps us figure out if we're calling a library inefficiently, for instance.
2018-07-19Merge branch 'frozen-string-enable-apps-services-inner-even-more' into 'master'Rémy Coutable
Enable more frozen string in app/services/**/*.rb See merge request gitlab-org/gitlab-ce!20702
2018-07-19allow for testAction to wait until all promises are resolvedLukas Eipert
2018-07-19Merge branch 'remove-duplicated-include' into 'master'Rémy Coutable
Remove duplicated include IgnorableColumn in user model See merge request gitlab-org/gitlab-ce!20710
2018-07-19Merge branch 'sh-normalize-urls' into 'master'Grzegorz Bizon
Escape username and password in UrlSanitizer#full_url See merge request gitlab-org/gitlab-ce!20684
2018-07-19Merge branch 'use-rugged-for-reference-validator' into 'master'Douwe Maan
Use rugged to validate ref name Closes #49043 See merge request gitlab-org/gitlab-ce!20669
2018-07-19Merge branch 'rails5-fix-revert-modal-spec' into 'master'Rémy Coutable
Rails5 fix user sees revert modal spec See merge request gitlab-org/gitlab-ce!20706
2018-07-19Merge branch '43312-remove_user_activity_workers' into 'master'Rémy Coutable
Delete UserActivities and related workers Closes #43312 See merge request gitlab-org/gitlab-ce!20597
2018-07-19Merge branch 'regen-2fa-codes' into 'master'Douwe Maan
Add button to regenerate 2FA codes. Closes #48408 See merge request gitlab-org/gitlab-ce!20295
2018-07-19Add button to regenerate 2FA codes.Luke Picciau
2018-07-19Use rugged to validate ref nameAhmad Hassan
2018-07-19Escape username and password in UrlSanitizer#full_urlStan Hu
If a user uses a password with certain characters (e.g. /, #, +, etc.) UrlSanitizer#full_url will generate an invalid URL that cannot be parsed properly by Addressable::URI. If used with UrlBlocker, this will be flagged as an invalid URI.
2018-07-19Merge branch 'accept-rf3-2822-compliant-addresses' into 'master'Sean McGivern
Improve email address parsing Closes #44676 See merge request gitlab-org/gitlab-ce!18192
2018-07-19Remove duplicated include IgnorableColumnLin Jen-Shin
It's probably duplicated during resolving a conflict?
2018-07-19Merge branch 'gitaly-remote-branches' into 'master'Douwe Maan
Incorporate Gitaly's RefService.FindAllRemoteBranches RPC See merge request gitlab-org/gitlab-ce!20701
2018-07-19Rails5 fix user sees revert modal specJasper Maes
2018-07-19Improve email address parsingGeorge Thomas
If you enter the following RFC 2822 compliant address: `John Doe <john@doe.com>` Gitlab will attempt to send three emails: 1) John 2) Doe 3) john@doe.com With this change given the following: `John Doe <johndoe@example.com>` `Jane Doe <janedoe@example.com>` Gitlab will send emails to `johndoe@example.com` and `janedoe@example.com`
2018-07-19Merge branch 'sh-limit-unauthenticated-session-times' into 'master'Robert Speicher
Limit the TTL for anonymous sessions to 1 hour Closes #48101 See merge request gitlab-org/gitlab-ce!20700
2018-07-19Enable more frozen string in app/services/**/*.rbgfyoung
Partially addresses #47424.
2018-07-18Incorporate Gitaly's RefService.FindAllRemoteBranches RPCAlejandro Rodríguez
2018-07-18Limit the TTL for anonymous sessions to 1 hourStan Hu
By default, all sessions are given the same expiration time configured in the session store (e.g. 1 week). However, unauthenticated users can generate a lot of sessions, primarily for CSRF verification. It makes sense to reduce the TTL for unauthenticated to something much lower than the default (e.g. 1 hour) to limit Redis memory. In addition, Rails creates a new session after login, so the short TTL doesn't even need to be extended. Closes #48101
2018-07-18Merge branch 'leipert-proper-icon-validator' into 'master'Mike Greiling
Proper icon validator Closes #49236 See merge request gitlab-org/gitlab-ce!20620
2018-07-18Proper icon validatorLukas Eipert
2018-07-18Merge branch 'toggle-password-cluster' into 'master'Annabel Gray
Toggle Show / Hide Button for Kubernetes Password Closes #49193 See merge request gitlab-org/gitlab-ce!20659
2018-07-18Merge branch '41784-monitoring-graph-popovers' into 'master'Clement Ho
Resolve "Fix arrow for popovers on monitoring graph" Closes #41784 See merge request gitlab-org/gitlab-ce!20655
2018-07-18Resolve "Fix arrow for popovers on monitoring graph"Annabel Gray
2018-07-18Merge branch '_acet-fix-expanding-context-lines' into 'master'Tim Zallmann
Fix rendering context lines on MR diffs Closes #49242 and #49343 See merge request gitlab-org/gitlab-ce!20642
2018-07-18Toggle Show / Hide Button for Kubernetes Passwordgfyoung
Closes #49193.
2018-07-18Merge branch '49324-add-support-for-tar-gz-autodevops-charts' into 'master'Kamil Trzciński
Resolve "Add support for tar.gz AUTO_DEVOPS_CHART charts" Closes #49324 See merge request gitlab-org/gitlab-ce!20691
2018-07-18Merge branch '_acet-fix-mr-autosave' into 'master'Tim Zallmann
Fix autosave issues for MR discussions Closes #48876 and #48877 See merge request gitlab-org/gitlab-ce!20569
2018-07-18Merge branch ↵Sean McGivern
'49369-failure-in-qa-specs-features-ee-geo-attachment_replication_spec-rb' into 'master' Resolve "Failure in qa/specs/features/ee/geo/attachment_replication_spec.rb" Closes #49369 See merge request gitlab-org/gitlab-ce!20692
2018-07-18Merge branch 'docs-update-chart-docs' into 'master'Marin Jankovski
Point to charts docs for beta limitations of the gitlab chart. See merge request gitlab-org/gitlab-ce!20690
2018-07-18Merge branch 'jprovazn-fix-diff-note' into 'master'Sean McGivern
Fix serialization of LegacyDiffNote Closes #49355 See merge request gitlab-org/gitlab-ce!20685
2018-07-18Fix serialization of LegacyDiffNoteJan Provaznik
2018-07-18Merge branch 'update-card-body-style' into 'master'Annabel Gray
Remove background color from card-body style Closes #49350 See merge request gitlab-org/gitlab-ce!20689
2018-07-18Merge branch 'jprovazn-fix-filename' into 'master'Kamil Trzciński
Fix filename for accelerated uploads See merge request gitlab-org/gitlab-ce!20672
2018-07-18Fix filename for accelerated uploadsJan Provaznik
2018-07-18Delete UserActivities and related workersImre Farkas
2018-07-18Merge branch 'zj-rev-list-removal' into 'master'Douwe Maan
Remove RevList class See merge request gitlab-org/gitlab-ce!20087
2018-07-18Disambiguate 'File' under qa/ since we have a QA::Factory::Resource::File ↵Rémy Coutable
class as well Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-07-18Merge branch 'deploy_tokens_view_improvement' into 'master'Phil Hughes
Update _form.html.haml (deploy tokens) to improve display of scopes See merge request gitlab-org/gitlab-ce!20578
2018-07-18Update _form.html.haml (deploy tokens) to improve display of scopesMarcel Amirault
2018-07-18Merge branch '4525-fix-project-indexes' into 'master'Yorick Peterse
Improve projects indexes See merge request gitlab-org/gitlab-ce!20377
2018-07-18Client implementation for Repository#new_commitsZeger-Jan van de Weg
After trying to remove the whole method in 8f69014af2902d8d53fe931268bec60f6858f160, this is a more gentle approach to the method. :) Prior to this change, new commit detection wasn't implemented in Gitaly, this was done through: https://gitlab.com/gitlab-org/gitaly/merge_requests/779 As the new implemented got moved around a bit, the whole RevList class got removed. Part of https://gitlab.com/gitlab-org/gitaly/issues/1233
2018-07-18Add support for tar.gz AUTO_DEVOPS_CHART charts (#49324)Dylan Griffith
2018-07-18Merge branch '_acet-fix-outdated-discussions' into 'master'Tim Zallmann
Fix showing outdated discussions on Changes tab. Closes #48167 See merge request gitlab-org/gitlab-ce!20445
2018-07-18Merge branch '27456-improve-feedback-when-dev-cannot-push-to-empty-repo' ↵Douwe Maan
into 'master' Improve feedback when a developer cannot push in an empty repository Closes #27456 See merge request gitlab-org/gitlab-ce!20519
2018-07-18Merge branch 'rd-48920-backend-support-for-clarifying-search-bar' into 'master'Douwe Maan
Add avatar_url attr to the response of the autocomplete endpoint Closes #48920 See merge request gitlab-org/gitlab-ce!20661