actioncable 7.0.5.1 → 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: 245edf673b0e962f053e4b42f4e3ee4e34abba0ade9603cfbed2abe66828a1bc
4
- data.tar.gz: a9bb5bfc7406c99680dbf90b693758f04c7129a35703110939368d58cab576bb
3
+ metadata.gz: 93e4a2b2cddb15ebdbce60bcf1b41a9ed7c0d42c4a559415708cfb1cd8d1336b
4
+ data.tar.gz: c8d6623c5f44c0c283617b8ff3fca22ccb48b6331acfdf2e56071a44be65118a
5
5
  SHA512:
6
- metadata.gz: 605ec544c0b799b1af5ecc46fe07df6203d1e1e819564ec49f7bc4a2bde3c63284a6ca36300a44a59efa83e7a27c8e9cc59ab738c3c18a82f78f0eec2e02ea21
7
- data.tar.gz: 2eb643ef1b118c429e3c2651580768c40e5358cb90f30f1315087f6d9ad9a149ab5358a14599f7724ce72f3c55839c7be9e9627a42b78d9f6d4384e28f329d87
6
+ metadata.gz: 60bd3dff9ae1fdf2ed1065957dad4af7f7441c6fb3f3f0461bd97585b54f7397b46ad660be82fac4b9d783b753f608689859ee547ec9735d8a68b0a64e5b4e55
7
+ data.tar.gz: bfeb76fd0365ea64a539d249ea6f2e31ac509acad1e9f74bd569a488fd0e6066c9e58f15c9f4764b3d46624f30a75460a8e728293e50ea856c7dcd705b40911d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## Rails 7.0.6 (June 29, 2023) ##
2
+
3
+ * Fix Action Cable Redis configuration with sentinels.
4
+
5
+ *Dmitriy Ivliev*
6
+
7
+
1
8
  ## Rails 7.0.5.1 (June 26, 2023) ##
2
9
 
3
10
  * No changes.
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,8 +9,8 @@ module ActionCable
9
9
  module VERSION
10
10
  MAJOR = 7
11
11
  MINOR = 0
12
- TINY = 5
13
- PRE = "1"
12
+ TINY = 6
13
+ PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
@@ -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,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actioncable
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.5.1
4
+ version: 7.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pratik Naik
8
8
  - David Heinemeier Hansson
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-06-26 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.1
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.1
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.1
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.1
41
+ version: 7.0.6
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: nio4r
44
44
  requirement: !ruby/object:Gem::Requirement
@@ -142,12 +142,12 @@ 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.1/actioncable/CHANGELOG.md
146
- documentation_uri: https://api.rubyonrails.org/v7.0.5.1/
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.1/actioncable
148
+ source_code_uri: https://github.com/rails/rails/tree/v7.0.6/actioncable
149
149
  rubygems_mfa_required: 'true'
150
- post_install_message:
150
+ post_install_message:
151
151
  rdoc_options: []
152
152
  require_paths:
153
153
  - lib
@@ -162,8 +162,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
162
162
  - !ruby/object:Gem::Version
163
163
  version: '0'
164
164
  requirements: []
165
- rubygems_version: 3.3.3
166
- signing_key:
165
+ rubygems_version: 3.4.13
166
+ signing_key:
167
167
  specification_version: 4
168
168
  summary: WebSocket framework for Rails.
169
169
  test_files: []