Hello community,
here is the log from the commit of package rubygem-actioncable-5.2 for
openSUSE:Factory checked in at 2018-08-12 20:53:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-actioncable-5.2 (Old)
and /work/SRC/openSUSE:Factory/.rubygem-actioncable-5.2.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-actioncable-5.2"
Sun Aug 12 20:53:06 2018 rev:2 rq:628578 version:5.2.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-actioncable-5.2/rubygem-actioncable-5.2.changes
2018-07-18 22:47:02.468333312 +0200
+++
/work/SRC/openSUSE:Factory/.rubygem-actioncable-5.2.new/rubygem-actioncable-5.2.changes
2018-08-12 20:53:10.541199687 +0200
@@ -1,0 +2,7 @@
+Wed Aug 8 14:40:25 UTC 2018 - [email protected]
+
+- updated to version 5.2.1 (boo#1104209)
+
+ * No changes / Just a version bump to match with Rails 5.2.1
+
+-------------------------------------------------------------------
Old:
----
actioncable-5.2.0.gem
New:
----
actioncable-5.2.1.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-actioncable-5.2.spec ++++++
--- /var/tmp/diff_new_pack.3G7Ci2/_old 2018-08-12 20:53:11.065200750 +0200
+++ /var/tmp/diff_new_pack.3G7Ci2/_new 2018-08-12 20:53:11.065200750 +0200
@@ -24,7 +24,7 @@
#
Name: rubygem-actioncable-5.2
-Version: 5.2.0
+Version: 5.2.1
Release: 0
%define mod_name actioncable
%define mod_full_name %{mod_name}-%{version}
++++++ actioncable-5.2.0.gem -> actioncable-5.2.1.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md 2018-04-09 22:04:38.000000000 +0200
+++ new/CHANGELOG.md 2018-08-07 23:42:18.000000000 +0200
@@ -1,3 +1,8 @@
+## Rails 5.2.1 (August 07, 2018) ##
+
+* No changes.
+
+
## Rails 5.2.0 (April 09, 2018) ##
* Removed deprecated evented redis adapter.
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_cable/channel/broadcasting.rb
new/lib/action_cable/channel/broadcasting.rb
--- old/lib/action_cable/channel/broadcasting.rb 2018-04-09
22:04:38.000000000 +0200
+++ new/lib/action_cable/channel/broadcasting.rb 2018-08-07
23:42:18.000000000 +0200
@@ -9,7 +9,7 @@
delegate :broadcasting_for, to: :class
- class_methods do
+ module ClassMethods
# Broadcast a hash to a unique broadcasting for this <tt>model</tt> in
this channel.
def broadcast_to(model, message)
ActionCable.server.broadcast(broadcasting_for([ channel_name, model
]), message)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_cable/channel/callbacks.rb
new/lib/action_cable/channel/callbacks.rb
--- old/lib/action_cable/channel/callbacks.rb 2018-04-09 22:04:38.000000000
+0200
+++ new/lib/action_cable/channel/callbacks.rb 2018-08-07 23:42:18.000000000
+0200
@@ -13,7 +13,7 @@
define_callbacks :unsubscribe
end
- class_methods do
+ module ClassMethods
def before_subscribe(*methods, &block)
set_callback(:subscribe, :before, *methods, &block)
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_cable/channel/naming.rb
new/lib/action_cable/channel/naming.rb
--- old/lib/action_cable/channel/naming.rb 2018-04-09 22:04:38.000000000
+0200
+++ new/lib/action_cable/channel/naming.rb 2018-08-07 23:42:18.000000000
+0200
@@ -5,7 +5,7 @@
module Naming
extend ActiveSupport::Concern
- class_methods do
+ module ClassMethods
# Returns the name of the channel, underscored, without the
<tt>Channel</tt> ending.
# If the channel is in a namespace, then the namespaces are
represented by single
# colon separators in the channel name.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_cable/connection/identification.rb
new/lib/action_cable/connection/identification.rb
--- old/lib/action_cable/connection/identification.rb 2018-04-09
22:04:38.000000000 +0200
+++ new/lib/action_cable/connection/identification.rb 2018-08-07
23:42:18.000000000 +0200
@@ -11,7 +11,7 @@
class_attribute :identifiers, default: Set.new
end
- class_methods do
+ module ClassMethods
# Mark a key as being a connection identifier index that can then be
used to find the specific connection again later.
# Common identifiers are current_user and current_account, but could
be anything, really.
#
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_cable/gem_version.rb
new/lib/action_cable/gem_version.rb
--- old/lib/action_cable/gem_version.rb 2018-04-09 22:04:38.000000000 +0200
+++ new/lib/action_cable/gem_version.rb 2018-08-07 23:42:18.000000000 +0200
@@ -9,7 +9,7 @@
module VERSION
MAJOR = 5
MINOR = 2
- TINY = 0
+ TINY = 1
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2018-04-09 22:04:38.000000000 +0200
+++ new/metadata 2018-08-07 23:42:18.000000000 +0200
@@ -1,7 +1,7 @@
--- !ruby/object:Gem::Specification
name: actioncable
version: !ruby/object:Gem::Version
- version: 5.2.0
+ version: 5.2.1
platform: ruby
authors:
- Pratik Naik
@@ -9,7 +9,7 @@
autorequire:
bindir: bin
cert_chain: []
-date: 2018-04-09 00:00:00.000000000 Z
+date: 2018-08-07 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: actionpack
@@ -17,14 +17,14 @@
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 5.2.0
+ version: 5.2.1
type: :runtime
prerelease: false
version_requirements: !ruby/object:Gem::Requirement
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 5.2.0
+ version: 5.2.1
- !ruby/object:Gem::Dependency
name: nio4r
requirement: !ruby/object:Gem::Requirement
@@ -118,8 +118,8 @@
licenses:
- MIT
metadata:
- source_code_uri: https://github.com/rails/rails/tree/v5.2.0/actioncable
- changelog_uri:
https://github.com/rails/rails/blob/v5.2.0/actioncable/CHANGELOG.md
+ source_code_uri: https://github.com/rails/rails/tree/v5.2.1/actioncable
+ changelog_uri:
https://github.com/rails/rails/blob/v5.2.1/actioncable/CHANGELOG.md
post_install_message:
rdoc_options: []
require_paths: