capistrano 3.8.1 → 3.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 35f2b78fb4e59fac89010f9b933316eaf4d2242c
4
- data.tar.gz: 1e41412f1e55f7e0d94e84acb198b96a29d5d054
3
+ metadata.gz: 7f88f4b773f72433e56b0f290b92e2565952295e
4
+ data.tar.gz: ac9af7055287f89ff36d9a16dd735166a02cdf80
5
5
  SHA512:
6
- metadata.gz: 2786a1cf32881d164cc3836ec986a6e42acb19b8367bec59fa1c6250eb9b82e5e2ccee69f428edfe838f81b894ed96811ea3bcd02c41ca93f50536705596cfe3
7
- data.tar.gz: d166e4c962b78ff8c06e93876283bde101286bc8964ac5b39fcd76f8717273c0b7d90786a5abb909cd96cc0b50ab1d71c1624d1abd3a277945e01a27bca299b2
6
+ metadata.gz: c4f12ab9a1d3c746d969c8c8ea738b9a63978b4e93d0654a9ca0e70d5956eeb7e93061cc258947d15ccb7790bab9554925814c1c3d93f182c7bead906d16791f
7
+ data.tar.gz: 147305f082e0043d2ca4185f23088f90693d9ce31aab3816301e1f2060bc8006c1841f6f09176b6e43af0fdd1aacbd83912840b710862677a1270fb2d014a2ef
@@ -1,6 +1,12 @@
1
1
  # Capistrano 3.x Changelog
2
2
 
3
- All notable changes to this project will be documented in this file, in reverse chronological order. This project adheres to [Semantic Versioning](http://semver.org).
3
+ All notable changes to this project will be documented in this file, in reverse chronological order.
4
+
5
+ **Capistrano follows a modified version of [SemVer](http://semver.org)**, similar to the Ruby on Rails project. For a `X.Y.Z` release:
6
+
7
+ * `Z` indicates bug fixes only; no breaking changes and no new features, except as necessary for security fixes.
8
+ * `Y` is bumped when we add new features. Occasionally a `Y` release may include small breaking changes. We will notify via CHANGELOG entries and/or deprecation notices if there are breaking changes.
9
+ * `X` is incremented for significant breaking changes. This is reserved for special occasions, like a complete rewrite.
4
10
 
5
11
  **Capistrano uses a six-week release cadence.** Every six weeks, give or take, any changes in master will be published as a new rubygems version. If you'd like to use a feature or fix that is in master and you can't wait for the next planned release, put this in your project's Gemfile to use the master branch directly:
6
12
 
@@ -14,6 +20,18 @@ https://github.com/capistrano/capistrano/compare/v3.8.1...HEAD
14
20
 
15
21
  * Your contribution here!
16
22
 
23
+ ## `3.8.2` (2017-06-16)
24
+
25
+ https://github.com/capistrano/capistrano/compare/v3.8.1...v3.8.2
26
+
27
+ ### Breaking changes:
28
+
29
+ * None
30
+
31
+ ### Other changes:
32
+
33
+ * [#1882](https://github.com/capistrano/capistrano/pull/1882): Explain where to add new Capfile lines in scm deprecation warning - [@robd](https://github.com/robd)
34
+
17
35
  ## `3.8.1` (2017-04-21)
18
36
 
19
37
  https://github.com/capistrano/capistrano/compare/v3.8.0...v3.8.1
@@ -112,7 +112,8 @@ module Capistrano
112
112
  $stderr.puts(<<-MESSAGE)
113
113
  [Deprecation Notice] `set :scm, #{scm_name.inspect}` is deprecated.
114
114
  To ensure your project is compatible with future versions of Capistrano,
115
- remove the :scm setting and instead add these lines to your Capfile:
115
+ remove the :scm setting and instead add these lines to your Capfile after
116
+ `require "capistrano/deploy"`:
116
117
 
117
118
  require "capistrano/scm/#{scm_name}"
118
119
  install_plugin #{built_in_scm_plugin_class_name}
@@ -124,7 +125,7 @@ MESSAGE
124
125
  $stderr.puts(<<-MESSAGE)
125
126
  [Deprecation Notice] Future versions of Capistrano will not load the Git SCM
126
127
  plugin by default. To silence this deprecation warning, add the following to
127
- your Capfile:
128
+ your Capfile after `require "capistrano/deploy"`:
128
129
 
129
130
  require "capistrano/scm/git"
130
131
  install_plugin Capistrano::SCM::Git
@@ -29,5 +29,8 @@ set :repo_url, "git@example.com:me/my_repo.git"
29
29
  # Default value for default_env is {}
30
30
  # set :default_env, { path: "/opt/ruby/bin:$PATH" }
31
31
 
32
+ # Default value for local_user is ENV['USER']
33
+ # set :local_user, -> { `git config user.name`.chomp }
34
+
32
35
  # Default value for keep_releases is 5
33
36
  # set :keep_releases, 5
@@ -1,3 +1,3 @@
1
1
  module Capistrano
2
- VERSION = "3.8.1".freeze
2
+ VERSION = "3.8.2".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.8.1
4
+ version: 3.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Clements
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-04-21 00:00:00.000000000 Z
12
+ date: 2017-06-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: airbrussh