activesupport 7.1.5.1 → 7.1.6

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: fff21dce85b122849485b60d18133395aff9f17f4b04f0ed2cdd0c6e3a5ac89a
4
- data.tar.gz: f9402bb99435697896e3f5ed40b0b3586d14657df658854386503d7d77b3a523
3
+ metadata.gz: e875361eeab3fc8b44e41da0dc2963072317884bb04c4a64ba77853316fc95c9
4
+ data.tar.gz: 95b96e90dfa0da1a97a143a3b85c82d986adc2a0f5c58bc91d5a88fddd18e033
5
5
  SHA512:
6
- metadata.gz: 17025021f271bbc388d6aea3d141da1069e137b13202443723aad3aa363c14366c6dc134f6f94de92a5f2afaeae737db6e105896e7bf8abf7e150c97235946ba
7
- data.tar.gz: 6b1eb2037cab8e9a59051cd5181ac5aa7662d205cf096dbd64a39ddcd2844e2e3881471e4c36d325e0db000d2bc2073b771ccecd9c390b7f186c472890a6bcf7
6
+ metadata.gz: fd36666bb2d52263f1998f7b8635ef234b0315250016798e5085265a1e0cf9ff73a1a66ebf27743499a6f0953abca2e2b0ee86eb3760510abc3e2a3280d682da
7
+ data.tar.gz: 9c02c4c3f325f4c438482044ba946cc18f7720d53a9b8fad845b80ccf09d37efdb482355adbd24991399cf8f518e90a2813e405e82456a2e0701cd649cdd0dc2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## Rails 7.1.6 (October 28, 2025) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 7.1.5.2 (August 13, 2025) ##
7
+
8
+ * No changes.
9
+
10
+
1
11
  ## Rails 7.1.5.1 (December 10, 2024) ##
2
12
 
3
13
  * No changes.
@@ -79,6 +89,25 @@
79
89
 
80
90
  *Jean Boussier*
81
91
 
92
+ * Revert "Fix `ActiveSupport::JSON.encode` to prevent duplicate keys." introduced in 7.1.3
93
+
94
+ If the same key exist in both String and Symbol form, json encoder
95
+ again emits the same key twice. [Reaseon](https://github.com/rails/rails/pull/50489#issuecomment-2123881327)
96
+
97
+ ActiveSupport 7.1.3
98
+ ```ruby
99
+ {a: 1, "a" => 2}.to_json
100
+ # gives: "{\"a\":2}"
101
+ ```
102
+
103
+ ActiveSupport 7.1.4
104
+ ```ruby
105
+ {a: 1, "a" => 2}.to_json
106
+ # gives: "{\"a\":1,\"a\":2}"
107
+ ```
108
+
109
+ *Rafael Mendonça França*
110
+
82
111
 
83
112
  ## Rails 7.1.3.4 (June 04, 2024) ##
84
113
 
@@ -111,6 +140,18 @@
111
140
  If the same key exist in both String and Symbol form it could
112
141
  lead to the same key being emitted twice.
113
142
 
143
+ ActiveSupport 7.1.2
144
+ ```ruby
145
+ {a: 1, "a" => 2}.to_json
146
+ # gives: "{\"a\":1,\"a\":2}"
147
+ ```
148
+
149
+ ActiveSupport 7.1.3
150
+ ```ruby
151
+ {a: 1, "a" => 2}.to_json
152
+ # gives: "{\"a\":2}"
153
+ ```
154
+
114
155
  *Manish Sharma*
115
156
 
116
157
  * Fix `ActiveSupport::Cache::Store#read_multi` when using a cache namespace
@@ -84,7 +84,6 @@ class Class
84
84
  # class_attribute :settings, default: {}
85
85
  def class_attribute(*attrs, instance_accessor: true,
86
86
  instance_reader: instance_accessor, instance_writer: instance_accessor, instance_predicate: true, default: nil)
87
-
88
87
  class_methods, methods = [], []
89
88
  attrs.each do |name|
90
89
  unless name.is_a?(Symbol) || name.is_a?(String)
@@ -9,8 +9,8 @@ module ActiveSupport
9
9
  module VERSION
10
10
  MAJOR = 7
11
11
  MINOR = 1
12
- TINY = 5
13
- PRE = "1"
12
+ TINY = 6
13
+ PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activesupport
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.1.5.1
4
+ version: 7.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-10 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: i18n
@@ -488,12 +487,11 @@ licenses:
488
487
  - MIT
489
488
  metadata:
490
489
  bug_tracker_uri: https://github.com/rails/rails/issues
491
- changelog_uri: https://github.com/rails/rails/blob/v7.1.5.1/activesupport/CHANGELOG.md
492
- documentation_uri: https://api.rubyonrails.org/v7.1.5.1/
490
+ changelog_uri: https://github.com/rails/rails/blob/v7.1.6/activesupport/CHANGELOG.md
491
+ documentation_uri: https://api.rubyonrails.org/v7.1.6/
493
492
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
494
- source_code_uri: https://github.com/rails/rails/tree/v7.1.5.1/activesupport
493
+ source_code_uri: https://github.com/rails/rails/tree/v7.1.6/activesupport
495
494
  rubygems_mfa_required: 'true'
496
- post_install_message:
497
495
  rdoc_options:
498
496
  - "--encoding"
499
497
  - UTF-8
@@ -510,8 +508,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
510
508
  - !ruby/object:Gem::Version
511
509
  version: '0'
512
510
  requirements: []
513
- rubygems_version: 3.5.22
514
- signing_key:
511
+ rubygems_version: 3.6.9
515
512
  specification_version: 4
516
513
  summary: A toolkit of support libraries and Ruby core extensions extracted from the
517
514
  Rails framework.