Hello community,

here is the log from the commit of package rubygem-actioncable-5_1 for 
openSUSE:Factory checked in at 2018-02-18 11:43:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-actioncable-5_1 (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-actioncable-5_1.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-actioncable-5_1"

Sun Feb 18 11:43:22 2018 rev:3 rq:577548 version:5.1.5

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/rubygem-actioncable-5_1/rubygem-actioncable-5_1.changes
  2017-09-13 22:35:20.137369836 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-actioncable-5_1.new/rubygem-actioncable-5_1.changes
     2018-02-18 11:43:29.007190350 +0100
@@ -1,0 +2,10 @@
+Thu Feb 15 05:28:21 UTC 2018 - [email protected]
+
+- updated to version 5.1.5
+ see installed CHANGELOG.md
+
+  ## Rails 5.1.5 (February 14, 2018) ##
+  
+  *   No changes.
+
+-------------------------------------------------------------------

Old:
----
  actioncable-5.1.4.gem

New:
----
  actioncable-5.1.5.gem

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rubygem-actioncable-5_1.spec ++++++
--- /var/tmp/diff_new_pack.BwFDVX/_old  2018-02-18 11:43:35.358962333 +0100
+++ /var/tmp/diff_new_pack.BwFDVX/_new  2018-02-18 11:43:35.362962189 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-actioncable-5_1
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-actioncable-5_1
-Version:        5.1.4
+Version:        5.1.5
 Release:        0
 %define mod_name actioncable
 %define mod_full_name %{mod_name}-%{version}

++++++ actioncable-5.1.4.gem -> actioncable-5.1.5.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md    2017-09-08 02:49:07.000000000 +0200
+++ new/CHANGELOG.md    2018-02-14 21:01:10.000000000 +0100
@@ -1,3 +1,8 @@
+## Rails 5.1.5 (February 14, 2018) ##
+
+*   No changes.
+
+
 ## Rails 5.1.4 (September 07, 2017) ##
 
 *   No changes.
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/gem_version.rb 
new/lib/action_cable/gem_version.rb
--- old/lib/action_cable/gem_version.rb 2017-09-08 02:49:07.000000000 +0200
+++ new/lib/action_cable/gem_version.rb 2018-02-14 21:01:10.000000000 +0100
@@ -7,7 +7,7 @@
   module VERSION
     MAJOR = 5
     MINOR = 1
-    TINY  = 4
+    TINY  = 5
     PRE   = nil
 
     STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lib/action_cable/subscription_adapter/evented_redis.rb 
new/lib/action_cable/subscription_adapter/evented_redis.rb
--- old/lib/action_cable/subscription_adapter/evented_redis.rb  2017-09-08 
02:49:07.000000000 +0200
+++ new/lib/action_cable/subscription_adapter/evented_redis.rb  2018-02-14 
21:01:10.000000000 +0100
@@ -1,7 +1,7 @@
 require "thread"
 
 gem "em-hiredis", "~> 0.3.0"
-gem "redis", "~> 3.0"
+gem "redis", ">= 3", "< 5"
 require "em-hiredis"
 require "redis"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_cable/subscription_adapter/postgresql.rb 
new/lib/action_cable/subscription_adapter/postgresql.rb
--- old/lib/action_cable/subscription_adapter/postgresql.rb     2017-09-08 
02:49:07.000000000 +0200
+++ new/lib/action_cable/subscription_adapter/postgresql.rb     2018-02-14 
21:01:10.000000000 +0100
@@ -1,4 +1,4 @@
-gem "pg", "~> 0.18"
+gem "pg", ">= 0.18", "< 2.0"
 require "pg"
 require "thread"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_cable/subscription_adapter/redis.rb 
new/lib/action_cable/subscription_adapter/redis.rb
--- old/lib/action_cable/subscription_adapter/redis.rb  2017-09-08 
02:49:07.000000000 +0200
+++ new/lib/action_cable/subscription_adapter/redis.rb  2018-02-14 
21:01:10.000000000 +0100
@@ -1,6 +1,6 @@
 require "thread"
 
-gem "redis", "~> 3.0"
+gem "redis", ">= 3", "< 5"
 require "redis"
 
 module ActionCable
@@ -72,7 +72,7 @@
 
           def listen(conn)
             conn.without_reconnect do
-              original_client = conn.client
+              original_client = conn.respond_to?(:_client) ? conn._client : 
conn.client
 
               conn.subscribe("_action_cable_internal") do |on|
                 on.subscribe do |chan, count|
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2017-09-08 02:49:07.000000000 +0200
+++ new/metadata        2018-02-14 21:01:10.000000000 +0100
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: actioncable
 version: !ruby/object:Gem::Version
-  version: 5.1.4
+  version: 5.1.5
 platform: ruby
 authors:
 - Pratik Naik
@@ -9,7 +9,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2017-09-08 00:00:00.000000000 Z
+date: 2018-02-14 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: actionpack
@@ -17,14 +17,14 @@
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 5.1.4
+        version: 5.1.5
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 5.1.4
+        version: 5.1.5
 - !ruby/object:Gem::Dependency
   name: nio4r
   requirement: !ruby/object:Gem::Requirement
@@ -118,7 +118,9 @@
 homepage: http://rubyonrails.org
 licenses:
 - MIT
-metadata: {}
+metadata:
+  source_code_uri: https://github.com/rails/rails/tree/v5.1.5/actioncable
+  changelog_uri: 
https://github.com/rails/rails/blob/v5.1.5/actioncable/CHANGELOG.md
 post_install_message: 
 rdoc_options: []
 require_paths:
@@ -135,7 +137,7 @@
       version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.6.13
+rubygems_version: 2.7.3
 signing_key: 
 specification_version: 4
 summary: WebSocket framework for Rails.


Reply via email to