1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

Preparing v3.7.0.beta1

This commit is contained in:
Matt Brictson 2016-11-02 20:44:45 -07:00
parent b7e167a959
commit 5159a6a665
No known key found for this signature in database
GPG key ID: 2F279EAD1F2ACFAF
2 changed files with 20 additions and 4 deletions

View file

@ -4,18 +4,34 @@ Reverse Chronological Order:
## master ## master
https://github.com/capistrano/capistrano/compare/v3.6.1...HEAD https://github.com/capistrano/capistrano/compare/v3.7.0.beta1...HEAD
* Your contribution here! * Your contribution here!
## `3.7.0.beta1` (2016-11-02)
https://github.com/capistrano/capistrano/compare/v3.6.1...v3.7.0.beta1
### Deprecations:
* The `set :scm, ...` mechanism is now deprecated in favor of a new SCM plugin * The `set :scm, ...` mechanism is now deprecated in favor of a new SCM plugin
system. See the [UPGRADING-3.7](UPGRADING-3.7.md) document for details. system. See the [UPGRADING-3.7](UPGRADING-3.7.md) document for details.
### Potentially breaking changes:
* The `:git_strategy`, `:hg_strategy`, and `:svn_strategy` settings have been * The `:git_strategy`, `:hg_strategy`, and `:svn_strategy` settings have been
removed with no replacement. If you have been using these to customize removed with no replacement. If you have been using these to customize
Capistrano's SCM behavior, you will need to rewrite your customization using Capistrano's SCM behavior, you will need to rewrite your customization using
the [new plugin system](http://capistranorb.com/documentation/advanced-features/custom-scm/). the [new plugin system](http://capistranorb.com/documentation/advanced-features/custom-scm/).
* The `tar` used by the Git SCM now honors the SSHKit command map, allowing an alternative tar binary to be used (e.g. gtar) #1787 (@caius)
* Fix test suite to work with Mocha 1.2.0 (@caius)
* `remote_file` feature has been removed and is no longer available to use @SaiVardhan * `remote_file` feature has been removed and is no longer available to use @SaiVardhan
### New features:
* The `tar` used by the Git SCM now honors the SSHKit command map, allowing an alternative tar binary to be used (e.g. gtar) #1787 (@caius)
### Fixes:
* Fix test suite to work with Mocha 1.2.0 (@caius)
* Fix bug where host_filter and role_filter were overly greedy [#1766](https://github.com/capistrano/capistrano/issues/1766) (@cseeger-epages) * Fix bug where host_filter and role_filter were overly greedy [#1766](https://github.com/capistrano/capistrano/issues/1766) (@cseeger-epages)
## `3.6.1` (2016-08-23) ## `3.6.1` (2016-08-23)

View file

@ -1,3 +1,3 @@
module Capistrano module Capistrano
VERSION = "3.6.1".freeze VERSION = "3.7.0.beta1".freeze
end end