actioncable 6.1.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: eddffe08998b1a8317ada2b82e55838af324edb9c318b02d6b4363ae864635a0
4
- data.tar.gz: 801c8364c03328330ec66e949b065226403db561d48b3faf8488532cc366acb0
3
+ metadata.gz: 05cca3266ae9261fcd849d830b1b001be190e0d17bcc49c6b80b5b9a7159a4b3
4
+ data.tar.gz: 826474f43e3c3415c4efdfb76ed89f1bb1888e873a8c3e423741e432864bb317
5
5
  SHA512:
6
- metadata.gz: 3947b653edcd5713ebc64f881f2c71056e3cebea07d5959fcf16e6d4e56bd676dc810c55fda54e8983982dfedd819ce2241cae2b67fe34f70b7b8cc11522082d
7
- data.tar.gz: e081ee8513b9cad0f8ea3de07766494f7becbf3b1664b599c8db31eec300191437038213e0018d823817662b032dbc072e1638fd89e5eee03603ef0a46113706
6
+ metadata.gz: f3e8c5e7fab833c8da3d06b46d7fb6d684ce9c7e4af01808bf7c1e6b900a5a6c5bf78cc9cff721408a213507564921a3f0ee42a4dced79a60718651af336c744
7
+ data.tar.gz: 0ea242801867b4972336c15c76add7df6e745ac5f6de0c7607b9c23919ea31e1d57aed86b265bdedae7ff8513ba378c565cd6da23ff840e0a768af56faa718f6
data/CHANGELOG.md CHANGED
@@ -1,3 +1,30 @@
1
+ ## Rails 6.1.4 (June 24, 2021) ##
2
+
3
+ * Fix `ArgumentError` with ruby 3.0 on `RemoteConnection#disconnect`.
4
+
5
+ *Vladislav*
6
+
7
+
8
+ ## Rails 6.1.3.2 (May 05, 2021) ##
9
+
10
+ * No changes.
11
+
12
+
13
+ ## Rails 6.1.3.1 (March 26, 2021) ##
14
+
15
+ * No changes.
16
+
17
+
18
+ ## Rails 6.1.3 (February 17, 2021) ##
19
+
20
+ * No changes.
21
+
22
+
23
+ ## Rails 6.1.2.1 (February 10, 2021) ##
24
+
25
+ * No changes.
26
+
27
+
1
28
  ## Rails 6.1.2 (February 09, 2021) ##
2
29
 
3
30
  * No changes.
@@ -15,9 +15,9 @@ module ActionCable
15
15
  end
16
16
  end
17
17
 
18
- # Stub `stream_from` to track streams for the channel.
19
- # Add public aliases for `subscription_confirmation_sent?` and
20
- # `subscription_rejected?`.
18
+ # Stub +stream_from+ to track streams for the channel.
19
+ # Add public aliases for +subscription_confirmation_sent?+ and
20
+ # +subscription_rejected?+.
21
21
  module ChannelStub
22
22
  def confirmed?
23
23
  subscription_confirmation_sent?
@@ -123,7 +123,7 @@ module ActionCable
123
123
  # <b>connection</b>::
124
124
  # An ActionCable::Channel::ConnectionStub, representing the current HTTP connection.
125
125
  # <b>subscription</b>::
126
- # An instance of the current channel, created when you call `subscribe`.
126
+ # An instance of the current channel, created when you call +subscribe+.
127
127
  # <b>transmissions</b>::
128
128
  # A list of all messages that have been transmitted into the channel.
129
129
  #
@@ -9,7 +9,7 @@ module ActionCable
9
9
  module VERSION
10
10
  MAJOR = 6
11
11
  MINOR = 1
12
- TINY = 2
12
+ TINY = 4
13
13
  PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
@@ -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.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-02-09 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.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.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.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.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.2/actioncable/CHANGELOG.md
144
- documentation_uri: https://api.rubyonrails.org/v6.1.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.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
@@ -159,8 +159,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
159
159
  - !ruby/object:Gem::Version
160
160
  version: '0'
161
161
  requirements: []
162
- rubygems_version: 3.2.3
163
- signing_key:
162
+ rubygems_version: 3.1.2
163
+ signing_key:
164
164
  specification_version: 4
165
165
  summary: WebSocket framework for Rails.
166
166
  test_files: []