actioncable 7.0.5 → 7.0.6
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 +4 -4
- data/CHANGELOG.md +12 -0
- data/README.md +1 -1
- data/lib/action_cable/gem_version.rb +1 -1
- data/lib/action_cable/subscription_adapter/redis.rb +1 -1
- metadata +10 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 93e4a2b2cddb15ebdbce60bcf1b41a9ed7c0d42c4a559415708cfb1cd8d1336b
|
|
4
|
+
data.tar.gz: c8d6623c5f44c0c283617b8ff3fca22ccb48b6331acfdf2e56071a44be65118a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 60bd3dff9ae1fdf2ed1065957dad4af7f7441c6fb3f3f0461bd97585b54f7397b46ad660be82fac4b9d783b753f608689859ee547ec9735d8a68b0a64e5b4e55
|
|
7
|
+
data.tar.gz: bfeb76fd0365ea64a539d249ea6f2e31ac509acad1e9f74bd569a488fd0e6066c9e58f15c9f4764b3d46624f30a75460a8e728293e50ea856c7dcd705b40911d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## Rails 7.0.6 (June 29, 2023) ##
|
|
2
|
+
|
|
3
|
+
* Fix Action Cable Redis configuration with sentinels.
|
|
4
|
+
|
|
5
|
+
*Dmitriy Ivliev*
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Rails 7.0.5.1 (June 26, 2023) ##
|
|
9
|
+
|
|
10
|
+
* No changes.
|
|
11
|
+
|
|
12
|
+
|
|
1
13
|
## Rails 7.0.5 (May 24, 2023) ##
|
|
2
14
|
|
|
3
15
|
* Restore Action Cable Redis pub/sub listener on connection failure.
|
data/README.md
CHANGED
|
@@ -60,7 +60,7 @@ module ActionCable
|
|
|
60
60
|
end
|
|
61
61
|
|
|
62
62
|
def config_options
|
|
63
|
-
@config_options ||= @server.config.cable.
|
|
63
|
+
@config_options ||= @server.config.cable.deep_symbolize_keys.merge(id: identifier)
|
|
64
64
|
end
|
|
65
65
|
|
|
66
66
|
class Listener < SubscriberMap
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: actioncable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.0.
|
|
4
|
+
version: 7.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pratik Naik
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2023-
|
|
12
|
+
date: 2023-06-29 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activesupport
|
|
@@ -17,28 +17,28 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - '='
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 7.0.
|
|
20
|
+
version: 7.0.6
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
25
|
- - '='
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: 7.0.
|
|
27
|
+
version: 7.0.6
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: actionpack
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
|
31
31
|
requirements:
|
|
32
32
|
- - '='
|
|
33
33
|
- !ruby/object:Gem::Version
|
|
34
|
-
version: 7.0.
|
|
34
|
+
version: 7.0.6
|
|
35
35
|
type: :runtime
|
|
36
36
|
prerelease: false
|
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
|
38
38
|
requirements:
|
|
39
39
|
- - '='
|
|
40
40
|
- !ruby/object:Gem::Version
|
|
41
|
-
version: 7.0.
|
|
41
|
+
version: 7.0.6
|
|
42
42
|
- !ruby/object:Gem::Dependency
|
|
43
43
|
name: nio4r
|
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -142,10 +142,10 @@ licenses:
|
|
|
142
142
|
- MIT
|
|
143
143
|
metadata:
|
|
144
144
|
bug_tracker_uri: https://github.com/rails/rails/issues
|
|
145
|
-
changelog_uri: https://github.com/rails/rails/blob/v7.0.
|
|
146
|
-
documentation_uri: https://api.rubyonrails.org/v7.0.
|
|
145
|
+
changelog_uri: https://github.com/rails/rails/blob/v7.0.6/actioncable/CHANGELOG.md
|
|
146
|
+
documentation_uri: https://api.rubyonrails.org/v7.0.6/
|
|
147
147
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
|
148
|
-
source_code_uri: https://github.com/rails/rails/tree/v7.0.
|
|
148
|
+
source_code_uri: https://github.com/rails/rails/tree/v7.0.6/actioncable
|
|
149
149
|
rubygems_mfa_required: 'true'
|
|
150
150
|
post_install_message:
|
|
151
151
|
rdoc_options: []
|
|
@@ -162,7 +162,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
162
162
|
- !ruby/object:Gem::Version
|
|
163
163
|
version: '0'
|
|
164
164
|
requirements: []
|
|
165
|
-
rubygems_version: 3.4.
|
|
165
|
+
rubygems_version: 3.4.13
|
|
166
166
|
signing_key:
|
|
167
167
|
specification_version: 4
|
|
168
168
|
summary: WebSocket framework for Rails.
|