diff --git a/CHANGELOG.md b/CHANGELOG.md index cc88142..f601e63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,11 @@ ## 5.0.1 (March 2021) +- Adds full support for deploy (but not config creation) without sudo access - Refactor config files to use single array of hashes with flags - Refactor Sidekiq and Monit configurations to copy files directly rather than using symlinks to avoid potential root access leak - Fixes bug where object identifier was outputted in logs rather than filename +- Fixes nginx not being reloaded after `setup_config` due to shared log directory not yet existing ## 5.0.0 (March 2021) diff --git a/capistrano-cookbook.gemspec b/capistrano-cookbook.gemspec index 5cc1bba..94ff666 100644 --- a/capistrano-cookbook.gemspec +++ b/capistrano-cookbook.gemspec @@ -19,6 +19,7 @@ Gem::Specification.new do |spec| spec.add_dependency 'capistrano', '~> 3.16' spec.add_dependency 'capistrano3-puma', '~> 5.0.4' + spec.add_dependency 'capistrano-sidekiq', '~> 2.0' spec.add_development_dependency "bundler", "~> 1.5" spec.add_development_dependency "rake" diff --git a/lib/capistrano/cookbook/version.rb b/lib/capistrano/cookbook/version.rb index 3cd8a3d..cda9c52 100644 --- a/lib/capistrano/cookbook/version.rb +++ b/lib/capistrano/cookbook/version.rb @@ -1,5 +1,5 @@ module Capistrano module Cookbook - VERSION = "5.0.0" + VERSION = "5.0.1" end end