actioncable 7.0.5.1 → 7.0.7

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: 10977fcc2d8558caa935b73c137d3c6ec617691805ff407ef45aa562f88c341a
4
+ data.tar.gz: 857e23f451296c22baa10547439c6fb844d1f3437fe9f6cfabde1e4f9434250d
5
5
  SHA512:
6
- metadata.gz: 605ec544c0b799b1af5ecc46fe07df6203d1e1e819564ec49f7bc4a2bde3c63284a6ca36300a44a59efa83e7a27c8e9cc59ab738c3c18a82f78f0eec2e02ea21
7
- data.tar.gz: 2eb643ef1b118c429e3c2651580768c40e5358cb90f30f1315087f6d9ad9a149ab5358a14599f7724ce72f3c55839c7be9e9627a42b78d9f6d4384e28f329d87
6
+ metadata.gz: 4489ee236bf0b17eb2e34b2b2933b2c41bad33ec5cb5413bd73199ce16c730196344c683ff1191aed94b1f1e8bc838a2406d4fa10c82517ecb6b3c6c0fc678cb
7
+ data.tar.gz: 04a2b0ed79a240815bca147804aa09c612bc75e9fb9aef10177fc17a7e35274d44d1a4dd5aac6f1acd03bc6f8c62c88e24ff8483b4da07c3692ebadcac9d0650
data/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## Rails 7.0.7 (August 09, 2023) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 7.0.6 (June 29, 2023) ##
7
+
8
+ * Fix Action Cable Redis configuration with sentinels.
9
+
10
+ *Dmitriy Ivliev*
11
+
12
+
1
13
  ## Rails 7.0.5.1 (June 26, 2023) ##
2
14
 
3
15
  * 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 = 7
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,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.1
4
+ version: 7.0.7
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-06-26 00:00:00.000000000 Z
12
+ date: 2023-08-09 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.7
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.7
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.7
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.7
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.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.7/actioncable/CHANGELOG.md
146
+ documentation_uri: https://api.rubyonrails.org/v7.0.7/
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.7/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.3.3
165
+ rubygems_version: 3.4.10
166
166
  signing_key:
167
167
  specification_version: 4
168
168
  summary: WebSocket framework for Rails.