actioncable 6.0.2.2 → 6.0.3.rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e69390e0da2c85f2c5fe065d1558e6e87cfc84328c42113386bd0eff314c94a5
4
- data.tar.gz: 5b3c99e1118a2f0ad0f97b8290e4142302a28f10e840af184e09166854a07513
3
+ metadata.gz: 6bb993157d915eaea16491d853a4c75c8a18575061f1f90c233de2442d677962
4
+ data.tar.gz: d43559d007ec5daefd96282a1698c3f79a4cbab7722b2df79c120c9f00c04661
5
5
  SHA512:
6
- metadata.gz: 0e3b7363e91037a01cab78f910379991917c9a6a38e7d551de945bc154904cd702aa7136c95146010741e924770bd91434cda330b9d198da17d5b52d537188fc
7
- data.tar.gz: ef9476aee9acda0600b7cf0c34b5edfb341ab2d33ff70cc756c69b3ae51b275894e3711a52d80e6453f978e8de18062e913425ef100064e68fd50172878dcf30
6
+ metadata.gz: 65a7989249d2592482b68b2ac53ee066df957c4fbf0ac3aff6201a96742c60933bd1e72e9acb0d0f40c7786db039c9ab6f7a26d6d80a0c51ef949623c6b8a3e4
7
+ data.tar.gz: 0115a6fa90e5c06e887d3a9f00a3cfeeac7888b462867fa62a825c0ade85f83b7cc26c631e7777a983b1ee56d5c21b0cc07f6b1d72f4f8de3a88073ff016cd5b
@@ -1,3 +1,13 @@
1
+ ## Rails 6.0.3.rc1 (April 30, 2020) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 6.0.2.2 (March 19, 2020) ##
7
+
8
+ * No changes.
9
+
10
+
1
11
  ## Rails 6.0.2.1 (December 18, 2019) ##
2
12
 
3
13
  * No changes.
data/README.md CHANGED
@@ -21,4 +21,4 @@ Bug reports for the Ruby on Rails project can be filed here:
21
21
 
22
22
  Feature requests should be discussed on the rails-core mailing list here:
23
23
 
24
- * https://groups.google.com/forum/?fromgroups#!forum/rubyonrails-core
24
+ * https://discuss.rubyonrails.org/c/rubyonrails-core
@@ -185,7 +185,7 @@ module ActionCable
185
185
 
186
186
  connection = self.class.connection_class.allocate
187
187
  connection.singleton_class.include(TestConnection)
188
- connection.send(:initialize, build_test_request(path, request_params))
188
+ connection.send(:initialize, build_test_request(path, **request_params))
189
189
  connection.connect if connection.respond_to?(:connect)
190
190
 
191
191
  # Only set instance variable if connected successfully
@@ -9,8 +9,8 @@ module ActionCable
9
9
  module VERSION
10
10
  MAJOR = 6
11
11
  MINOR = 0
12
- TINY = 2
13
- PRE = "2"
12
+ TINY = 3
13
+ PRE = "rc1"
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
@@ -66,7 +66,6 @@ module ActionCable
66
66
  end
67
67
 
68
68
  private
69
-
70
69
  def logger
71
70
  ActionCable.server.logger
72
71
  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.0.2.2
4
+ version: 6.0.3.rc1
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-03-19 00:00:00.000000000 Z
12
+ date: 2020-05-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: actionpack
@@ -17,14 +17,14 @@ dependencies:
17
17
  requirements:
18
18
  - - '='
19
19
  - !ruby/object:Gem::Version
20
- version: 6.0.2.2
20
+ version: 6.0.3.rc1
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.0.2.2
27
+ version: 6.0.3.rc1
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: nio4r
30
30
  requirement: !ruby/object:Gem::Requirement
@@ -126,10 +126,10 @@ licenses:
126
126
  - MIT
127
127
  metadata:
128
128
  bug_tracker_uri: https://github.com/rails/rails/issues
129
- changelog_uri: https://github.com/rails/rails/blob/v6.0.2.2/actioncable/CHANGELOG.md
130
- documentation_uri: https://api.rubyonrails.org/v6.0.2.2/
131
- mailing_list_uri: https://groups.google.com/forum/#!forum/rubyonrails-talk
132
- source_code_uri: https://github.com/rails/rails/tree/v6.0.2.2/actioncable
129
+ changelog_uri: https://github.com/rails/rails/blob/v6.0.3.rc1/actioncable/CHANGELOG.md
130
+ documentation_uri: https://api.rubyonrails.org/v6.0.3.rc1/
131
+ mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
132
+ source_code_uri: https://github.com/rails/rails/tree/v6.0.3.rc1/actioncable
133
133
  post_install_message:
134
134
  rdoc_options: []
135
135
  require_paths:
@@ -141,11 +141,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
141
141
  version: 2.5.0
142
142
  required_rubygems_version: !ruby/object:Gem::Requirement
143
143
  requirements:
144
- - - ">="
144
+ - - ">"
145
145
  - !ruby/object:Gem::Version
146
- version: '0'
146
+ version: 1.3.1
147
147
  requirements: []
148
- rubygems_version: 3.0.3
148
+ rubygems_version: 3.1.2
149
149
  signing_key:
150
150
  specification_version: 4
151
151
  summary: WebSocket framework for Rails.