Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package rubygem-actioncable-7.0 for
openSUSE:Factory checked in at 2022-05-16 18:08:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-actioncable-7.0 (Old)
and /work/SRC/openSUSE:Factory/.rubygem-actioncable-7.0.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-actioncable-7.0"
Mon May 16 18:08:24 2022 rev:4 rq:977358 version:7.0.3
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-actioncable-7.0/rubygem-actioncable-7.0.changes
2022-04-30 22:52:16.520202944 +0200
+++
/work/SRC/openSUSE:Factory/.rubygem-actioncable-7.0.new.1538/rubygem-actioncable-7.0.changes
2022-05-16 18:10:52.137390375 +0200
@@ -1,0 +2,7 @@
+Sun May 15 15:12:15 UTC 2022 - Manuel Schnitzer <[email protected]>
+
+- updated to version 7.0.3
+
+ * no changes
+
+-------------------------------------------------------------------
Old:
----
actioncable-7.0.2.4.gem
New:
----
actioncable-7.0.3.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-actioncable-7.0.spec ++++++
--- /var/tmp/diff_new_pack.zbuyI9/_old 2022-05-16 18:10:52.573390722 +0200
+++ /var/tmp/diff_new_pack.zbuyI9/_new 2022-05-16 18:10:52.577390725 +0200
@@ -24,7 +24,7 @@
#
Name: rubygem-actioncable-7.0
-Version: 7.0.2.4
+Version: 7.0.3
Release: 0
%define mod_name actioncable
%define mod_full_name %{mod_name}-%{version}
++++++ actioncable-7.0.2.4.gem -> actioncable-7.0.3.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md 2022-04-26 21:32:44.000000000 +0200
+++ new/CHANGELOG.md 2022-05-09 15:40:53.000000000 +0200
@@ -1,3 +1,8 @@
+## Rails 7.0.3 (May 09, 2022) ##
+
+* No changes.
+
+
## Rails 7.0.2.4 (April 26, 2022) ##
* No changes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/app/assets/javascripts/action_cable.js
new/app/assets/javascripts/action_cable.js
--- old/app/assets/javascripts/action_cable.js 2022-04-26 21:32:44.000000000
+0200
+++ new/app/assets/javascripts/action_cable.js 2022-05-09 15:40:53.000000000
+0200
@@ -166,7 +166,7 @@
if (!allowReconnect) {
this.monitor.stop();
}
- if (this.isActive()) {
+ if (this.isOpen()) {
return this.webSocket.close();
}
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/app/assets/javascripts/actioncable.esm.js
new/app/assets/javascripts/actioncable.esm.js
--- old/app/assets/javascripts/actioncable.esm.js 2022-04-26
21:32:44.000000000 +0200
+++ new/app/assets/javascripts/actioncable.esm.js 2022-05-09
15:40:53.000000000 +0200
@@ -172,7 +172,7 @@
if (!allowReconnect) {
this.monitor.stop();
}
- if (this.isActive()) {
+ if (this.isOpen()) {
return this.webSocket.close();
}
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/app/assets/javascripts/actioncable.js
new/app/assets/javascripts/actioncable.js
--- old/app/assets/javascripts/actioncable.js 2022-04-26 21:32:44.000000000
+0200
+++ new/app/assets/javascripts/actioncable.js 2022-05-09 15:40:53.000000000
+0200
@@ -166,7 +166,7 @@
if (!allowReconnect) {
this.monitor.stop();
}
- if (this.isActive()) {
+ if (this.isOpen()) {
return this.webSocket.close();
}
}
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/base.rb
new/lib/action_cable/channel/base.rb
--- old/lib/action_cable/channel/base.rb 2022-04-26 21:32:44.000000000
+0200
+++ new/lib/action_cable/channel/base.rb 2022-05-09 15:40:53.000000000
+0200
@@ -186,7 +186,7 @@
end
# Called by the cable connection when it's cut, so the channel has a
chance to cleanup with callbacks.
- # This method is not intended to be called directly by the user.
Instead, overwrite the #unsubscribed callback.
+ # This method is not intended to be called directly by the user.
Instead, override the #unsubscribed callback.
def unsubscribe_from_channel # :nodoc:
run_callbacks :unsubscribe do
unsubscribed
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 2022-04-26 21:32:44.000000000
+0200
+++ new/lib/action_cable/channel/naming.rb 2022-05-09 15:40:53.000000000
+0200
@@ -18,7 +18,7 @@
end
end
- # Delegates to the class' <tt>channel_name</tt>
+ # Delegates to the class's ::channel_name.
delegate :channel_name, to: :class
end
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_cable/connection/tagged_logger_proxy.rb
new/lib/action_cable/connection/tagged_logger_proxy.rb
--- old/lib/action_cable/connection/tagged_logger_proxy.rb 2022-04-26
21:32:44.000000000 +0200
+++ new/lib/action_cable/connection/tagged_logger_proxy.rb 2022-05-09
15:40:53.000000000 +0200
@@ -3,7 +3,7 @@
module ActionCable
module Connection
# Allows the use of per-connection tags against the server logger. This
wouldn't work using the traditional
- # <tt>ActiveSupport::TaggedLogging</tt> enhanced Rails.logger, as that
logger will reset the tags between requests.
+ # ActiveSupport::TaggedLogging enhanced Rails.logger, as that logger will
reset the tags between requests.
# The connection is long-lived, so it needs its own set of tags for its
independent duration.
class TaggedLoggerProxy
attr_reader :tags
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_cable/connection/test_case.rb
new/lib/action_cable/connection/test_case.rb
--- old/lib/action_cable/connection/test_case.rb 2022-04-26
21:32:44.000000000 +0200
+++ new/lib/action_cable/connection/test_case.rb 2022-05-09
15:40:53.000000000 +0200
@@ -86,7 +86,7 @@
# end
#
# +connect+ accepts additional information about the HTTP request with the
- # +params+, +headers+, +session+ and Rack +env+ options.
+ # +params+, +headers+, +session+, and Rack +env+ options.
#
# def test_connect_with_headers_and_query_string
# connect params: { user_id: 1 }, headers: { "X-API-TOKEN" =>
"secret-my" }
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 2022-04-26 21:32:44.000000000 +0200
+++ new/lib/action_cable/gem_version.rb 2022-05-09 15:40:53.000000000 +0200
@@ -1,7 +1,7 @@
# frozen_string_literal: true
module ActionCable
- # Returns the version of the currently loaded Action Cable as a
<tt>Gem::Version</tt>.
+ # Returns the currently loaded version of Action Cable as a
<tt>Gem::Version</tt>.
def self.gem_version
Gem::Version.new VERSION::STRING
end
@@ -9,8 +9,8 @@
module VERSION
MAJOR = 7
MINOR = 0
- TINY = 2
- PRE = "4"
+ TINY = 3
+ PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_cable/subscription_adapter/test.rb
new/lib/action_cable/subscription_adapter/test.rb
--- old/lib/action_cable/subscription_adapter/test.rb 2022-04-26
21:32:44.000000000 +0200
+++ new/lib/action_cable/subscription_adapter/test.rb 2022-05-09
15:40:53.000000000 +0200
@@ -7,7 +7,7 @@
# == Test adapter for Action Cable
#
# The test adapter should be used only in testing. Along with
- # <tt>ActionCable::TestHelper</tt> it makes a great tool to test your
Rails application.
+ # ActionCable::TestHelper it makes a great tool to test your Rails
application.
#
# To use the test adapter set +adapter+ value to +test+ in your
+config/cable.yml+ file.
#
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/action_cable/version.rb
new/lib/action_cable/version.rb
--- old/lib/action_cable/version.rb 2022-04-26 21:32:44.000000000 +0200
+++ new/lib/action_cable/version.rb 2022-05-09 15:40:53.000000000 +0200
@@ -3,7 +3,7 @@
require_relative "gem_version"
module ActionCable
- # Returns the version of the currently loaded Action Cable as a
<tt>Gem::Version</tt>
+ # Returns the currently loaded version of Action Cable as a
<tt>Gem::Version</tt>.
def self.version
gem_version
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2022-04-26 21:32:44.000000000 +0200
+++ new/metadata 2022-05-09 15:40:53.000000000 +0200
@@ -1,7 +1,7 @@
--- !ruby/object:Gem::Specification
name: actioncable
version: !ruby/object:Gem::Version
- version: 7.0.2.4
+ version: 7.0.3
platform: ruby
authors:
- Pratik Naik
@@ -9,7 +9,7 @@
autorequire:
bindir: bin
cert_chain: []
-date: 2022-04-26 00:00:00.000000000 Z
+date: 2022-05-09 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: activesupport
@@ -17,28 +17,28 @@
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 7.0.2.4
+ version: 7.0.3
type: :runtime
prerelease: false
version_requirements: !ruby/object:Gem::Requirement
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 7.0.2.4
+ version: 7.0.3
- !ruby/object:Gem::Dependency
name: actionpack
requirement: !ruby/object:Gem::Requirement
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 7.0.2.4
+ version: 7.0.3
type: :runtime
prerelease: false
version_requirements: !ruby/object:Gem::Requirement
requirements:
- - '='
- !ruby/object:Gem::Version
- version: 7.0.2.4
+ version: 7.0.3
- !ruby/object:Gem::Dependency
name: nio4r
requirement: !ruby/object:Gem::Requirement
@@ -142,10 +142,10 @@
- MIT
metadata:
bug_tracker_uri: https://github.com/rails/rails/issues
- changelog_uri:
https://github.com/rails/rails/blob/v7.0.2.4/actioncable/CHANGELOG.md
- documentation_uri: https://api.rubyonrails.org/v7.0.2.4/
+ changelog_uri:
https://github.com/rails/rails/blob/v7.0.3/actioncable/CHANGELOG.md
+ documentation_uri: https://api.rubyonrails.org/v7.0.3/
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
- source_code_uri: https://github.com/rails/rails/tree/v7.0.2.4/actioncable
+ source_code_uri: https://github.com/rails/rails/tree/v7.0.3/actioncable
rubygems_mfa_required: 'true'
post_install_message:
rdoc_options: []
@@ -162,7 +162,7 @@
- !ruby/object:Gem::Version
version: '0'
requirements: []
-rubygems_version: 3.1.6
+rubygems_version: 3.3.7
signing_key:
specification_version: 4
summary: WebSocket framework for Rails.