actioncable 7.0.0.rc3 → 7.0.2.1

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: 75df6353ee846cc9fdac06e156d93df3ca23ad678421e7a492734d6a0d7542b3
4
- data.tar.gz: bcab24ddce35c8f890288376fca5bb8359b4d80bb17bbe44240056a224289770
3
+ metadata.gz: '0888c9bed89acba4a76bf561180f7328db13a5396589e00c893ba5a59bade3a2'
4
+ data.tar.gz: bafbb50831a9c32be54f3b80e4d8766b4cd9c79560a4eec0017e4dd970037d5c
5
5
  SHA512:
6
- metadata.gz: a0e149a7785c8ad85a495b87997dd59e5276c782af135c40901f6980321bcd66645e013ca87b844cf59fb67737652eba21e6fd429833725e219874083658aab7
7
- data.tar.gz: 5d0ebacd3dbc9123a7d1c986c224ea3b9ce9b27d52dbcc529ea7ca8715e8d386ff4b3f43f42661b6ab678189266b209296cd21f797d3901c7ea4b6b6df3795b1
6
+ metadata.gz: 297f44ebc1fa0f2863ec65cf5c2e41076d940b5a96eb3746731c2c7533c55ca37f6a0d6887cd7a41a0cc049f6bb81c727c10a2a25ec72ca6999d94fc81b6639b
7
+ data.tar.gz: 83a7ac39fd6b1e6f606afbc32542d9a4b0ed3753258412ac5482aa32f7566e28986aa977c6aeb7e03756abf434481ba60a3afc26d4d44b88624624fdddc0fe58
data/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ ## Rails 7.0.2.1 (February 11, 2022) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 7.0.2 (February 08, 2022) ##
7
+
8
+ * No changes.
9
+
10
+
11
+ ## Rails 7.0.1 (January 06, 2022) ##
12
+
13
+ * No changes.
14
+
15
+
16
+ ## Rails 7.0.0 (December 15, 2021) ##
17
+
18
+ * No changes.
19
+
20
+
1
21
  ## Rails 7.0.0.rc3 (December 14, 2021) ##
2
22
 
3
23
  * No changes.
@@ -5,6 +25,10 @@
5
25
 
6
26
  ## Rails 7.0.0.rc2 (December 14, 2021) ##
7
27
 
28
+ * No changes.
29
+
30
+ ## Rails 7.0.0.rc1 (December 06, 2021) ##
31
+
8
32
  * The Action Cable client now ensures successful channel subscriptions:
9
33
 
10
34
  * The client maintains a set of pending subscriptions until either
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2015-2021 Basecamp, LLC
1
+ Copyright (c) 2015-2022 Basecamp, LLC
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -25,8 +25,8 @@ module ActionCable
25
25
 
26
26
  initializer "action_cable.asset" do
27
27
  config.after_initialize do |app|
28
- if Rails.application.config.respond_to?(:assets) && app.config.action_cable.precompile_assets
29
- Rails.application.config.assets.precompile += %w( actioncable.js actioncable.esm.js )
28
+ if app.config.respond_to?(:assets) && app.config.action_cable.precompile_assets
29
+ app.config.assets.precompile += %w( actioncable.js actioncable.esm.js )
30
30
  end
31
31
  end
32
32
  end
@@ -9,8 +9,8 @@ module ActionCable
9
9
  module VERSION
10
10
  MAJOR = 7
11
11
  MINOR = 0
12
- TINY = 0
13
- PRE = "rc3"
12
+ TINY = 2
13
+ PRE = "1"
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
data/lib/action_cable.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  #--
4
- # Copyright (c) 2015-2021 Basecamp, LLC
4
+ # Copyright (c) 2015-2022 Basecamp, LLC
5
5
  #
6
6
  # Permission is hereby granted, free of charge, to any person obtaining
7
7
  # a copy of this software and associated documentation files (the
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.0.rc3
4
+ version: 7.0.2.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: 2021-12-14 00:00:00.000000000 Z
12
+ date: 2022-02-11 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.0.rc3
20
+ version: 7.0.2.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: 7.0.0.rc3
27
+ version: 7.0.2.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: 7.0.0.rc3
34
+ version: 7.0.2.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: 7.0.0.rc3
41
+ version: 7.0.2.1
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.0.rc3/actioncable/CHANGELOG.md
146
- documentation_uri: https://api.rubyonrails.org/v7.0.0.rc3/
145
+ changelog_uri: https://github.com/rails/rails/blob/v7.0.2.1/actioncable/CHANGELOG.md
146
+ documentation_uri: https://api.rubyonrails.org/v7.0.2.1/
147
147
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
148
- source_code_uri: https://github.com/rails/rails/tree/v7.0.0.rc3/actioncable
148
+ source_code_uri: https://github.com/rails/rails/tree/v7.0.2.1/actioncable
149
149
  rubygems_mfa_required: 'true'
150
150
  post_install_message:
151
151
  rdoc_options: []
@@ -158,11 +158,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
158
158
  version: 2.7.0
159
159
  required_rubygems_version: !ruby/object:Gem::Requirement
160
160
  requirements:
161
- - - ">"
161
+ - - ">="
162
162
  - !ruby/object:Gem::Version
163
- version: 1.3.1
163
+ version: '0'
164
164
  requirements: []
165
- rubygems_version: 3.2.15
165
+ rubygems_version: 3.2.22
166
166
  signing_key:
167
167
  specification_version: 4
168
168
  summary: WebSocket framework for Rails.