actioncable 6.1.0 → 6.1.3.1

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: 59bef404a4c31bcb6da1903795be75902646af4468963a915efca79d8f1d691d
4
- data.tar.gz: 776494689acd4385eec48aa45e545f3626fb11f0c2f1a10a17c7b61527be9e26
3
+ metadata.gz: 9e0e852bb8fa5267eff346a9aef794e6de1a2e9d0e62957453e6afdcfcea48d9
4
+ data.tar.gz: 406480de8ebdfe0532819a4a5a17bc93d896849c8ab0a47ea06077c69c3799fb
5
5
  SHA512:
6
- metadata.gz: 547d85c171fa187c290f946db4cb51378fc31b03a2815d800425e5a7ff03764f9bf225a7ef6c8e244b830a6775bde0ef4f521612b1205d89b7c5c3fd4564c647
7
- data.tar.gz: e7c11e3ffc454eea00923b1bfff2e8cb85d65cc5ecb1162d395573bbf393ed38f2799d646f2f3b6437b0e12ec1025972b1951f0c572bb333d8252e03ed64058f
6
+ metadata.gz: e76c5c926ec4c818018968ba2b7d6f9464a020c1306efe66e18565f599233230f3a4766587c4274744d6e123c5f031c82b1000e820d762467b7522cc11ef6201
7
+ data.tar.gz: c0bb3bf3b2327a68c493d4f7b4369878770439c4bfdfd85499b7caa86dcafc480021ee44e96c82caf96c62ecfebec1b052ec4f88707bad30eeb1487be88b74e4
data/CHANGELOG.md CHANGED
@@ -1,3 +1,28 @@
1
+ ## Rails 6.1.3.1 (March 26, 2021) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 6.1.3 (February 17, 2021) ##
7
+
8
+ * No changes.
9
+
10
+
11
+ ## Rails 6.1.2.1 (February 10, 2021) ##
12
+
13
+ * No changes.
14
+
15
+
16
+ ## Rails 6.1.2 (February 09, 2021) ##
17
+
18
+ * No changes.
19
+
20
+
21
+ ## Rails 6.1.1 (January 07, 2021) ##
22
+
23
+ * No changes.
24
+
25
+
1
26
  ## Rails 6.1.0 (December 09, 2020) ##
2
27
 
3
28
  * `ActionCable::Connection::Base` now allows intercepting unhandled exceptions
@@ -25,7 +25,7 @@ module ActionCable
25
25
  #
26
26
  # An example broadcasting for this channel looks like so:
27
27
  #
28
- # ActionCable.server.broadcast "comments_for_45", author: 'DHH', content: 'Rails is just swell'
28
+ # ActionCable.server.broadcast "comments_for_45", { author: 'DHH', content: 'Rails is just swell' }
29
29
  #
30
30
  # If you have a stream that is related to a model, then the broadcasting used can be generated from the model and channel.
31
31
  # The following example would subscribe to a broadcasting like <tt>comments:Z2lkOi8vVGVzdEFwcC9Qb3N0LzE</tt>.
@@ -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,8 +9,8 @@ module ActionCable
9
9
  module VERSION
10
10
  MAJOR = 6
11
11
  MINOR = 1
12
- TINY = 0
13
- PRE = nil
12
+ TINY = 3
13
+ PRE = "1"
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
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: 6.1.0
4
+ version: 6.1.3.1
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: 2020-12-09 00:00:00.000000000 Z
12
+ date: 2021-03-26 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.0
20
+ version: 6.1.3.1
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.0
27
+ version: 6.1.3.1
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.0
34
+ version: 6.1.3.1
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.0
41
+ version: 6.1.3.1
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: nio4r
44
44
  requirement: !ruby/object:Gem::Requirement
@@ -140,10 +140,10 @@ 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.0/actioncable/CHANGELOG.md
144
- documentation_uri: https://api.rubyonrails.org/v6.1.0/
143
+ changelog_uri: https://github.com/rails/rails/blob/v6.1.3.1/actioncable/CHANGELOG.md
144
+ documentation_uri: https://api.rubyonrails.org/v6.1.3.1/
145
145
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
146
- source_code_uri: https://github.com/rails/rails/tree/v6.1.0/actioncable
146
+ source_code_uri: https://github.com/rails/rails/tree/v6.1.3.1/actioncable
147
147
  post_install_message:
148
148
  rdoc_options: []
149
149
  require_paths:
@@ -159,7 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
159
159
  - !ruby/object:Gem::Version
160
160
  version: '0'
161
161
  requirements: []
162
- rubygems_version: 3.1.4
162
+ rubygems_version: 3.1.2
163
163
  signing_key:
164
164
  specification_version: 4
165
165
  summary: WebSocket framework for Rails.