actioncable 6.1.3.2 → 6.1.4

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: bbb0ee4bbf0fdad04bcc679b0c31c2f75df0a0e2d6d79c9617c5a11133b8d0f3
4
- data.tar.gz: 9fcf8b42eef4e33ff5ed149a5df61258f123be4e0f2a1d2eb337afbb522db9ed
3
+ metadata.gz: 05cca3266ae9261fcd849d830b1b001be190e0d17bcc49c6b80b5b9a7159a4b3
4
+ data.tar.gz: 826474f43e3c3415c4efdfb76ed89f1bb1888e873a8c3e423741e432864bb317
5
5
  SHA512:
6
- metadata.gz: 5e9fcbf6cb42e76219f51c28f1ee68bf0d12136670fb7058c8cc8daa5a2a918e0d05fa96097e68833eac615bd0043984a3f2817cda836fa2eaa3801056112454
7
- data.tar.gz: 68057250da24df74bc08dd7557ab7d1b1b7ee98c06f02810f16df6e551a34f94764f41b83e89377d3c913e289caee2fa509a131a960f9e68ef7211950a714af0
6
+ metadata.gz: f3e8c5e7fab833c8da3d06b46d7fb6d684ce9c7e4af01808bf7c1e6b900a5a6c5bf78cc9cff721408a213507564921a3f0ee42a4dced79a60718651af336c744
7
+ data.tar.gz: 0ea242801867b4972336c15c76add7df6e745ac5f6de0c7607b9c23919ea31e1d57aed86b265bdedae7ff8513ba378c565cd6da23ff840e0a768af56faa718f6
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## Rails 6.1.4 (June 24, 2021) ##
2
+
3
+ * Fix `ArgumentError` with ruby 3.0 on `RemoteConnection#disconnect`.
4
+
5
+ *Vladislav*
6
+
7
+
1
8
  ## Rails 6.1.3.2 (May 05, 2021) ##
2
9
 
3
10
  * No changes.
@@ -9,8 +9,8 @@ module ActionCable
9
9
  module VERSION
10
10
  MAJOR = 6
11
11
  MINOR = 1
12
- TINY = 3
13
- PRE = "2"
12
+ TINY = 4
13
+ PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
@@ -45,7 +45,7 @@ module ActionCable
45
45
 
46
46
  # Uses the internal channel to disconnect the connection.
47
47
  def disconnect
48
- server.broadcast internal_channel, type: "disconnect"
48
+ server.broadcast internal_channel, { type: "disconnect" }
49
49
  end
50
50
 
51
51
  # Returns all the identifiers that were applied to this connection.
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: 6.1.3.2
4
+ version: 6.1.4
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: 2021-05-05 00:00:00.000000000 Z
12
+ date: 2021-06-24 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: 6.1.3.2
20
+ version: 6.1.4
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: 6.1.3.2
27
+ version: 6.1.4
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: 6.1.3.2
34
+ version: 6.1.4
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: 6.1.3.2
41
+ version: 6.1.4
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: nio4r
44
44
  requirement: !ruby/object:Gem::Requirement
@@ -140,11 +140,11 @@ licenses:
140
140
  - MIT
141
141
  metadata:
142
142
  bug_tracker_uri: https://github.com/rails/rails/issues
143
- changelog_uri: https://github.com/rails/rails/blob/v6.1.3.2/actioncable/CHANGELOG.md
144
- documentation_uri: https://api.rubyonrails.org/v6.1.3.2/
143
+ changelog_uri: https://github.com/rails/rails/blob/v6.1.4/actioncable/CHANGELOG.md
144
+ documentation_uri: https://api.rubyonrails.org/v6.1.4/
145
145
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
146
- source_code_uri: https://github.com/rails/rails/tree/v6.1.3.2/actioncable
147
- post_install_message:
146
+ source_code_uri: https://github.com/rails/rails/tree/v6.1.4/actioncable
147
+ post_install_message:
148
148
  rdoc_options: []
149
149
  require_paths:
150
150
  - lib
@@ -160,7 +160,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
160
160
  version: '0'
161
161
  requirements: []
162
162
  rubygems_version: 3.1.2
163
- signing_key:
163
+ signing_key:
164
164
  specification_version: 4
165
165
  summary: WebSocket framework for Rails.
166
166
  test_files: []