actioncable 7.0.5 → 7.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0ad111921f6a4ec24d48066344c243f71246f073d036614075354cd332369c69
4
- data.tar.gz: dbfddf4a0a3839c9f093dbb54b04038d3e805c00d06dc00b0716eb598d37dec8
3
+ metadata.gz: 93e4a2b2cddb15ebdbce60bcf1b41a9ed7c0d42c4a559415708cfb1cd8d1336b
4
+ data.tar.gz: c8d6623c5f44c0c283617b8ff3fca22ccb48b6331acfdf2e56071a44be65118a
5
5
  SHA512:
6
- metadata.gz: 5b7ccdd8a695955ca21d16a49eaa369228e177bef683ecd159f51d94f3d8860e4bf6121561f5dc52b7e37b46e40714876d3326f51c20d604f67770ebd11e3665
7
- data.tar.gz: 19d2b1d7c252454069a8002e61d06371ac518e043e00fef0e8effab28fea0d424c43968923670c06c569ef64fe2871bb912c22908d1fa027fb873f075456eb9d
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
@@ -15,7 +15,7 @@ API documentation is at:
15
15
 
16
16
  * https://api.rubyonrails.org
17
17
 
18
- Bug reports for the Ruby on Rails project can be filed here:
18
+ Bug reports for the Ruby on \Rails project can be filed here:
19
19
 
20
20
  * https://github.com/rails/rails/issues
21
21
 
@@ -9,7 +9,7 @@ module ActionCable
9
9
  module VERSION
10
10
  MAJOR = 7
11
11
  MINOR = 0
12
- TINY = 5
12
+ TINY = 6
13
13
  PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
@@ -60,7 +60,7 @@ module ActionCable
60
60
  end
61
61
 
62
62
  def config_options
63
- @config_options ||= @server.config.cable.symbolize_keys.merge(id: identifier)
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.5
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-05-24 00:00:00.000000000 Z
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.5
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.5
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.5
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.5
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.5/actioncable/CHANGELOG.md
146
- documentation_uri: https://api.rubyonrails.org/v7.0.5/
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.5/actioncable
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.10
165
+ rubygems_version: 3.4.13
166
166
  signing_key:
167
167
  specification_version: 4
168
168
  summary: WebSocket framework for Rails.