actioncable 7.0.0.rc2 → 7.0.2

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: a4f58d466a24200bf6ff56f5dff64e853ef19e669eae6777a8d0ed197fe718e8
4
- data.tar.gz: a2fd7aaa51937dd874c7e94ac30f0c77c6c5314207b79c840298aad425c0d176
3
+ metadata.gz: ed6c86b6a61ed900b0c1b3c327938680011c75faeb754930586e8ab4f4087e5d
4
+ data.tar.gz: bd067acade6a6cbb645f187025afa2d1717c23934da9d2d86b240f88e3299772
5
5
  SHA512:
6
- metadata.gz: 1c98e32085e9636b10e80ca51ea709e659b8733eb59710d0fe4dcc2f58a17a5a49b635c0ea9576296481636b271743b012ef2da3a9ba673599c5eaba20d40fbb
7
- data.tar.gz: ef38d720b4d27d6155239c12492e27c3d40bd4283440fcf9cc5066ea8737bc9a59bbdc570c4aedc619e2a004e4a902685cede7cc880b016ddc322df09b74665e
6
+ metadata.gz: eb0f5a750a5a1dbcb7594ea15d7de4e801e9a27ea81a67302f996bfb9b1b4816d45cce744ccb1f02ddd7e26a9e09952d4a6698fe6f082ba6bd7e88477789d717
7
+ data.tar.gz: 9e6bd67938e34b32d0f14c932506ad2378783ff3f1c52cc453a39b3ea060c97a9da4cd5ca87cf248a7a7ff3fef8ff4303c86dc06d5baf858afaaacecad79e195
data/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
+ ## Rails 7.0.2 (February 08, 2022) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 7.0.1 (January 06, 2022) ##
7
+
8
+ * No changes.
9
+
10
+
11
+ ## Rails 7.0.0 (December 15, 2021) ##
12
+
13
+ * No changes.
14
+
15
+
16
+ ## Rails 7.0.0.rc3 (December 14, 2021) ##
17
+
18
+ * No changes.
19
+
20
+
1
21
  ## Rails 7.0.0.rc2 (December 14, 2021) ##
2
22
 
23
+ * No changes.
24
+
25
+ ## Rails 7.0.0.rc1 (December 06, 2021) ##
26
+
3
27
  * The Action Cable client now ensures successful channel subscriptions:
4
28
 
5
29
  * 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 = "rc2"
12
+ TINY = 2
13
+ PRE = nil
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,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actioncable
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.0.rc2
4
+ version: 7.0.2
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-12-14 00:00:00.000000000 Z
12
+ date: 2022-02-08 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.rc2
20
+ version: 7.0.2
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.rc2
27
+ version: 7.0.2
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.rc2
34
+ version: 7.0.2
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.rc2
41
+ version: 7.0.2
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: nio4r
44
44
  requirement: !ruby/object:Gem::Requirement
@@ -142,12 +142,12 @@ 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.rc2/actioncable/CHANGELOG.md
146
- documentation_uri: https://api.rubyonrails.org/v7.0.0.rc2/
145
+ changelog_uri: https://github.com/rails/rails/blob/v7.0.2/actioncable/CHANGELOG.md
146
+ documentation_uri: https://api.rubyonrails.org/v7.0.2/
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.rc2/actioncable
148
+ source_code_uri: https://github.com/rails/rails/tree/v7.0.2/actioncable
149
149
  rubygems_mfa_required: 'true'
150
- post_install_message:
150
+ post_install_message:
151
151
  rdoc_options: []
152
152
  require_paths:
153
153
  - lib
@@ -158,12 +158,12 @@ 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
166
- signing_key:
165
+ rubygems_version: 3.2.32
166
+ signing_key:
167
167
  specification_version: 4
168
168
  summary: WebSocket framework for Rails.
169
169
  test_files: []