こんにちは。Takitaです。
[capistrano] Future versions of Capistrano will not load the Git SCM plugin by default
capistranoのバージョンをあげると Future versions of Capistrano will not load the Git SCM plugin by default...というワーニングが出るようになったので対応しました。
capistranoのバージョンを上げてログを見ていると以下のようにdeprecationのワーニングが出ていました。
[Deprecation Notice] Future versions of Capistrano will not load the Git SCM
plugin by default. To silence this deprecation warning, add the following to
your Capfile after `require "capistrano/deploy"`:
ワーニングの内容通り Capfile
の require "capistrano/deploy"
の後に以下を追記するだけでOKです。
+require 'capistrano/scm/git'
+install_plugin Capistrano::SCM::Git