Capistrano Versions Save

A deployment automation tool built on Ruby, Rake, and SSH.

v3.13.0

4 years ago

✨ New Features

  • Use env to find ssh path (#2053) @JoeDupuis

🏠 Housekeeping

  • Remove CHANGELOG task from PR template (#2054) @mattbrictson

v3.12.1

4 years ago

🐛 Bug Fixes

  • Change default git_wait_interval to 0 to fix git slowdown introduced in 3.12.0 (#2050) @grzegorzblaszczyk

📚 Documentation

  • Improve misleading example for ssh_options (#2052) @rlisowski

🏠 Housekeeping

  • Bump rubyzip from 1.2.2 to 2.2.0 in /docs (#2051) @dependabot
  • Bump nokogiri from 1.10.4 to 1.10.8 in /docs (#2047) @dependabot

v3.12.0

4 years ago

Note that this release limits the number of concurrent git connections by default. If you use Capistrano to deploy to > 10 servers simultaneously you may want to increase this number. See #2044 for details.

✨ New Features

  • Limit the number of concurrent git connections to 10, and make it configurable (#2044) @grzegorzblaszczyk

📚 Documentation

  • Fix %x typo in local tasks example (#2040) @tiendo1011

v3.11.2

4 years ago

🏠 Housekeeping

  • Eliminate double CI builds on PRs (#2035) @mattbrictson
  • Update gemspec with correct release notes URL, etc. (#2036) @mattbrictson
  • Automatically maintain release notes using GitHub Actions (#2034) @mattbrictson
  • Use a stub for $stdin during testing (#2033) @mattbrictson
  • Upgrade nokogiri to fix security warning (#2031) @mattbrictson
  • Exclude danger to fix Ruby 2.0.0 CI error (#2030) @mattbrictson

v3.11.1

4 years ago
  • #2027: Batch rm -rf calls in deploy:cleanup to fix an error when there are too many old releases @azin634

v3.11.0

5 years ago
  • #1972: fallback ask to default when used in non interactive session

v3.10.2

6 years ago

Breaking changes:

  • None

Fixes:

v3.10.1

6 years ago

Breaking changes:

  • None

Fixes:

  • #1954: Fix Host filtering when multi-host strings contain 0

v3.10.0

6 years ago

As of this release, version 2.x of Capistrano is officially End of Life. No further releases of 2.x series are planned, and pull requests against 2.x are no longer accepted. The maintainers encourage you to upgrade to 3.x if possible.

Breaking changes:

  • None

New features:

  • #1943: Make 'releases' and 'shared' directory names configurable from deployment target
  • #1922: Prevents last good release from being deleted during cleanup if there are too many subsequent failed deploys
  • #1930: Default to locking the version using the pessimistic version operator at the patch level.

Fixes:

  • #1937: Clarify error message when plugin is required in the wrong config file.

v3.9.1

6 years ago

https://github.com/capistrano/capistrano/compare/v3.9.0...v3.9.1

Breaking changes:

  • None

Fixes:

  • #1912: Fixed an issue where questions posed by ask were not printed on certain platforms - @kminiatures