Hello community,
here is the log from the commit of package rubygem-capistrano for
openSUSE:Factory checked in at 2017-07-10 11:07:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-capistrano (Old)
and /work/SRC/openSUSE:Factory/.rubygem-capistrano.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-capistrano"
Mon Jul 10 11:07:09 2017 rev:28 rq:505387 version:3.8.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-capistrano/rubygem-capistrano.changes
2017-06-08 14:59:37.895572920 +0200
+++
/work/SRC/openSUSE:Factory/.rubygem-capistrano.new/rubygem-capistrano.changes
2017-07-10 11:07:09.466215150 +0200
@@ -1,0 +2,6 @@
+Tue Jun 20 06:46:49 UTC 2017 - [email protected]
+
+- updated to version 3.8.2
+ see installed CHANGELOG.md
+
+-------------------------------------------------------------------
Old:
----
capistrano-3.8.1.gem
New:
----
capistrano-3.8.2.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-capistrano.spec ++++++
--- /var/tmp/diff_new_pack.6j66K4/_old 2017-07-10 11:07:10.018137208 +0200
+++ /var/tmp/diff_new_pack.6j66K4/_new 2017-07-10 11:07:10.018137208 +0200
@@ -24,7 +24,7 @@
#
Name: rubygem-capistrano
-Version: 3.8.1
+Version: 3.8.2
Release: 0
%define mod_name capistrano
%define mod_full_name %{mod_name}-%{version}
++++++ capistrano-3.8.1.gem -> capistrano-3.8.2.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md 2017-04-21 17:16:10.000000000 +0200
+++ new/CHANGELOG.md 2017-06-16 17:17:46.000000000 +0200
@@ -1,6 +1,12 @@
# Capistrano 3.x Changelog
-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).
+All notable changes to this project will be documented in this file, in
reverse chronological order.
+
+**Capistrano follows a modified version of [SemVer](http://semver.org)**,
similar to the Ruby on Rails project. For a `X.Y.Z` release:
+
+* `Z` indicates bug fixes only; no breaking changes and no new features,
except as necessary for security fixes.
+* `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.
+* `X` is incremented for significant breaking changes. This is reserved for
special occasions, like a complete rewrite.
**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:
@@ -14,6 +20,18 @@
* Your contribution here!
+## `3.8.2` (2017-06-16)
+
+https://github.com/capistrano/capistrano/compare/v3.8.1...v3.8.2
+
+### Breaking changes:
+
+* None
+
+### Other changes:
+
+* [#1882](https://github.com/capistrano/capistrano/pull/1882): Explain where
to add new Capfile lines in scm deprecation warning -
[@robd](https://github.com/robd)
+
## `3.8.1` (2017-04-21)
https://github.com/capistrano/capistrano/compare/v3.8.0...v3.8.1
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/capistrano/configuration/scm_resolver.rb
new/lib/capistrano/configuration/scm_resolver.rb
--- old/lib/capistrano/configuration/scm_resolver.rb 2017-04-21
17:16:10.000000000 +0200
+++ new/lib/capistrano/configuration/scm_resolver.rb 2017-06-16
17:17:46.000000000 +0200
@@ -112,7 +112,8 @@
$stderr.puts(<<-MESSAGE)
[Deprecation Notice] `set :scm, #{scm_name.inspect}` is deprecated.
To ensure your project is compatible with future versions of Capistrano,
-remove the :scm setting and instead add these lines to your Capfile:
+remove the :scm setting and instead add these lines to your Capfile after
+`require "capistrano/deploy"`:
require "capistrano/scm/#{scm_name}"
install_plugin #{built_in_scm_plugin_class_name}
@@ -124,7 +125,7 @@
$stderr.puts(<<-MESSAGE)
[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:
+your Capfile after `require "capistrano/deploy"`:
require "capistrano/scm/git"
install_plugin Capistrano::SCM::Git
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/capistrano/templates/deploy.rb.erb
new/lib/capistrano/templates/deploy.rb.erb
--- old/lib/capistrano/templates/deploy.rb.erb 2017-04-21 17:16:10.000000000
+0200
+++ new/lib/capistrano/templates/deploy.rb.erb 2017-06-16 17:17:46.000000000
+0200
@@ -29,5 +29,8 @@
# Default value for default_env is {}
# set :default_env, { path: "/opt/ruby/bin:$PATH" }
+# Default value for local_user is ENV['USER']
+# set :local_user, -> { `git config user.name`.chomp }
+
# Default value for keep_releases is 5
# set :keep_releases, 5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/capistrano/version.rb
new/lib/capistrano/version.rb
--- old/lib/capistrano/version.rb 2017-04-21 17:16:10.000000000 +0200
+++ new/lib/capistrano/version.rb 2017-06-16 17:17:46.000000000 +0200
@@ -1,3 +1,3 @@
module Capistrano
- VERSION = "3.8.1".freeze
+ VERSION = "3.8.2".freeze
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2017-04-21 17:16:10.000000000 +0200
+++ new/metadata 2017-06-16 17:17:46.000000000 +0200
@@ -1,7 +1,7 @@
--- !ruby/object:Gem::Specification
name: capistrano
version: !ruby/object:Gem::Version
- version: 3.8.1
+ version: 3.8.2
platform: ruby
authors:
- Tom Clements
@@ -9,7 +9,7 @@
autorequire:
bindir: bin
cert_chain: []
-date: 2017-04-21 00:00:00.000000000 Z
+date: 2017-06-16 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: airbrussh