actioncable 7.2.0.beta3 → 7.2.0

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: 57f02a3f7855a34235778b11b9060045a9789486fa4eb8cab8fb5364eff99e87
4
- data.tar.gz: c73a279c6949e033dc95d170f4758c7de727c142d57d13f7659f8116c0c7acad
3
+ metadata.gz: 13c843acbcc96b9b20aebff5488a803a20d223f403f33a214c8afa4380788793
4
+ data.tar.gz: e01839c8f7f0e2101fe66eb0446b467cc848a3595c5ac880c2acdad1d55e851c
5
5
  SHA512:
6
- metadata.gz: 75850474627ec55a26136cfcb6ef47c0b987ca9024c04463c9521938a15aa0e715665d47c506f3b8c4caf1d34bcf6d5fbef018569255372891826bfeda58f7bc
7
- data.tar.gz: 81143497a7696682c8e63b56730669ae70b49bf2ec04a9ffd19d3e75b8205d1504c9db0ad782052f4b3fa34aa640dc759f88d3d606233d1dcdaf35d75be45b2b
6
+ metadata.gz: cb139234f65e1ac26422410fae3c80eb9407aa3772485b86e2c7039cab0b3c4f82696eb309da585aa345529a74c204ad482739e6b41896fe7233bc4c9461b177
7
+ data.tar.gz: fa3399e7f8cb497f86d2b5597a8732d9682e37a140f4c497fefa1b129eec19adf6fd874642f36ef65ff79a60465ba981803cc85b1f7471dce6766e9a05d54061
data/CHANGELOG.md CHANGED
@@ -1,9 +1,4 @@
1
- ## Rails 7.2.0.beta3 (July 11, 2024) ##
2
-
3
- * No changes.
4
-
5
-
6
- ## Rails 7.2.0.beta2 (June 04, 2024) ##
1
+ ## Rails 7.2.0 (August 09, 2024) ##
7
2
 
8
3
  * Bring `ActionCable::Connection::TestCookieJar` in alignment with `ActionDispatch::Cookies::CookieJar` in regards to setting the cookie value.
9
4
 
@@ -23,8 +18,6 @@
23
18
 
24
19
  *Justin Ko*
25
20
 
26
- ## Rails 7.2.0.beta1 (May 29, 2024) ##
27
-
28
21
  * Record ping on every Action Cable message.
29
22
 
30
23
  Previously only `ping` and `welcome` message types were keeping the connection active.
@@ -12,7 +12,7 @@ module ActionCable
12
12
  MAJOR = 7
13
13
  MINOR = 2
14
14
  TINY = 0
15
- PRE = "beta3"
15
+ PRE = nil
16
16
 
17
17
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
18
18
  end
@@ -1,5 +1,3 @@
1
- # :markup: markdown
2
-
3
1
  module ApplicationCable
4
2
  class Channel < ActionCable::Channel::Base
5
3
  end
@@ -1,5 +1,3 @@
1
- # :markup: markdown
2
-
3
1
  module ApplicationCable
4
2
  class Connection < ActionCable::Connection::Base
5
3
  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: 7.2.0.beta3
4
+ version: 7.2.0
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: 2024-07-11 00:00:00.000000000 Z
12
+ date: 2024-08-09 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.2.0.beta3
20
+ version: 7.2.0
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.2.0.beta3
27
+ version: 7.2.0
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.2.0.beta3
34
+ version: 7.2.0
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.2.0.beta3
41
+ version: 7.2.0
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: nio4r
44
44
  requirement: !ruby/object:Gem::Requirement
@@ -141,8 +141,8 @@ files:
141
141
  - lib/action_cable/version.rb
142
142
  - lib/rails/generators/channel/USAGE
143
143
  - lib/rails/generators/channel/channel_generator.rb
144
- - lib/rails/generators/channel/templates/application_cable/channel.rb
145
- - lib/rails/generators/channel/templates/application_cable/connection.rb
144
+ - lib/rails/generators/channel/templates/application_cable/channel.rb.tt
145
+ - lib/rails/generators/channel/templates/application_cable/connection.rb.tt
146
146
  - lib/rails/generators/channel/templates/channel.rb.tt
147
147
  - lib/rails/generators/channel/templates/javascript/channel.js.tt
148
148
  - lib/rails/generators/channel/templates/javascript/consumer.js.tt
@@ -154,10 +154,10 @@ licenses:
154
154
  - MIT
155
155
  metadata:
156
156
  bug_tracker_uri: https://github.com/rails/rails/issues
157
- changelog_uri: https://github.com/rails/rails/blob/v7.2.0.beta3/actioncable/CHANGELOG.md
158
- documentation_uri: https://api.rubyonrails.org/v7.2.0.beta3/
157
+ changelog_uri: https://github.com/rails/rails/blob/v7.2.0/actioncable/CHANGELOG.md
158
+ documentation_uri: https://api.rubyonrails.org/v7.2.0/
159
159
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
160
- source_code_uri: https://github.com/rails/rails/tree/v7.2.0.beta3/actioncable
160
+ source_code_uri: https://github.com/rails/rails/tree/v7.2.0/actioncable
161
161
  rubygems_mfa_required: 'true'
162
162
  post_install_message:
163
163
  rdoc_options: []