actioncable 7.2.0.beta1 → 7.2.0.beta2

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: 0ef0b15a8ba035bb74d223a307b5582d7127717f3d63bc720832ed7f7e26232e
4
- data.tar.gz: 6098f911679d8d5ecc08308c034c0034483178924920ece25c1ebb9b7ed6f9a7
3
+ metadata.gz: 71ecb88dee085b6f4ae6fd619ab238545e1c25d2bfbbf717f8ca2c0e47e05125
4
+ data.tar.gz: c166186f98a0bb04cc47dcd935a5b983ddda5ef9900c9e1a9b2c3911e16ad98b
5
5
  SHA512:
6
- metadata.gz: ddef615b9413742c7c59ef63e04060f63df5c2509305ff8e8a69d26580145d52317b992fc0f3f0c47489e96a373f63fb0ab854356fb582fa9643112a5875d384
7
- data.tar.gz: 7f14595ad0b02f979a36a287ebed53f4c52a9e162679f5ab748d687e87d66374bf8ebb43a1fddc30bdcf8876519d68f0a5539ab97c65d352db14abf30623c412
6
+ metadata.gz: 34d9a46946da1be2b640171deff524d9d2afc76e15f6a54d5fff33c3f80d2f26ab0c6a0995bb68c240e6d3818a8ab5cda1839b3df4a8023bd112c8c1573a92a9
7
+ data.tar.gz: 6399258c1c766ce744036d9297828d0b07a3eba4e39b487fda623012d789caa7a5b4fc1f710b213df9868de86bffccf5fe821fc12eebaf0b2267131274070a75
data/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ ## Rails 7.2.0.beta2 (June 04, 2024) ##
2
+
3
+ * Bring `ActionCable::Connection::TestCookieJar` in alignment with `ActionDispatch::Cookies::CookieJar` in regards to setting the cookie value.
4
+
5
+ Before:
6
+
7
+ ```ruby
8
+ cookies[:foo] = { value: "bar" }
9
+ puts cookies[:foo] # => { value: "bar" }
10
+ ```
11
+
12
+ After:
13
+
14
+ ```ruby
15
+ cookies[:foo] = { value: "bar" }
16
+ puts cookies[:foo] # => "bar"
17
+ ```
18
+
19
+ *Justin Ko*
20
+
1
21
  ## Rails 7.2.0.beta1 (May 29, 2024) ##
2
22
 
3
23
  * Record ping on every Action Cable message.
@@ -30,7 +30,7 @@ module ActionCable
30
30
  end
31
31
  end
32
32
 
33
- class TestCookies < ActiveSupport::HashWithIndifferentAccess
33
+ class TestCookies < ActiveSupport::HashWithIndifferentAccess # :nodoc:
34
34
  def []=(name, options)
35
35
  value = options.is_a?(Hash) ? options.symbolize_keys[:value] : options
36
36
  super(name, value)
@@ -12,7 +12,7 @@ module ActionCable
12
12
  MAJOR = 7
13
13
  MINOR = 2
14
14
  TINY = 0
15
- PRE = "beta1"
15
+ PRE = "beta2"
16
16
 
17
17
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
18
18
  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.beta1
4
+ version: 7.2.0.beta2
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-05-29 00:00:00.000000000 Z
12
+ date: 2024-06-04 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.beta1
20
+ version: 7.2.0.beta2
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.beta1
27
+ version: 7.2.0.beta2
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.beta1
34
+ version: 7.2.0.beta2
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.beta1
41
+ version: 7.2.0.beta2
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: nio4r
44
44
  requirement: !ruby/object:Gem::Requirement
@@ -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.beta1/actioncable/CHANGELOG.md
158
- documentation_uri: https://api.rubyonrails.org/v7.2.0.beta1/
157
+ changelog_uri: https://github.com/rails/rails/blob/v7.2.0.beta2/actioncable/CHANGELOG.md
158
+ documentation_uri: https://api.rubyonrails.org/v7.2.0.beta2/
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.beta1/actioncable
160
+ source_code_uri: https://github.com/rails/rails/tree/v7.2.0.beta2/actioncable
161
161
  rubygems_mfa_required: 'true'
162
162
  post_install_message:
163
163
  rdoc_options: []
@@ -170,11 +170,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
170
170
  version: 3.1.0
171
171
  required_rubygems_version: !ruby/object:Gem::Requirement
172
172
  requirements:
173
- - - ">="
173
+ - - ">"
174
174
  - !ruby/object:Gem::Version
175
- version: '0'
175
+ version: 1.3.1
176
176
  requirements: []
177
- rubygems_version: 3.5.10
177
+ rubygems_version: 3.3.27
178
178
  signing_key:
179
179
  specification_version: 4
180
180
  summary: WebSocket framework for Rails.