activemodel 7.0.6 → 7.0.7.1

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: 88150733324b801dc2198570a32ef11184c4865a2cb3fbccd405ac31dad489a6
4
- data.tar.gz: 6d7ce343da16108e59c8362526dc898adba71d6837cbe695a3fd8bd30ad2eb08
3
+ metadata.gz: 55024292745453530f2a777b2709eb49af095caf4f1f1fd89d2bfeb3e15bac64
4
+ data.tar.gz: 6b950a611958a65607e9026d094baea891ad74a7b5002a284978f53e11a5fd65
5
5
  SHA512:
6
- metadata.gz: 6fee121b0166ed0a83926f5d575cc700d7267d4c5b87d0dc4cdbd5d0c5eed376e15688c5aa884af7375548a55a20138a16a2fc0c999289c5de0b1b49631213c8
7
- data.tar.gz: c9d3ceceb28ed93fa597d1cd41d727ee63022e74849e79a9ee5f7a9202beeddb41e15e69103009768b46ce8be82cf5f43b84b06e88db32cc7fd82c4e3ffb1efe
6
+ metadata.gz: f7916c938ca05969af37bab19039934e4cfc9d33ad353233b31dd76d699dc2aa53216ea3a618557958a1af4a7501a097dbae5eee9150b7a1f12023628bce38a8
7
+ data.tar.gz: 3a29fe060faf2cd3d3d3437341982194ec6f470461d05259501478cd508f1b0106b5759938fd440eef019cf9be80dd651604786d59269dc6b6cf621afc3e97e6
data/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ ## Rails 7.0.7.1 (August 22, 2023) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 7.0.7 (August 09, 2023) ##
7
+
8
+ * Error.full_message now strips ":base" from the message.
9
+
10
+ *zzak*
11
+
12
+ * Add a load hook for `ActiveModel::Model` (named `active_model`) to match the load hook for
13
+ `ActiveRecord::Base` and allow for overriding aspects of the `ActiveModel::Model` class.
14
+
15
+
1
16
  ## Rails 7.0.6 (June 29, 2023) ##
2
17
 
3
18
  * No changes.
@@ -415,7 +415,7 @@ module ActiveModel
415
415
  @prefix = prefix
416
416
  @suffix = suffix
417
417
  @parameters = parameters.nil? ? FORWARD_PARAMETERS : parameters
418
- @regex = /^(?:#{Regexp.escape(@prefix)})(.*)(?:#{Regexp.escape(@suffix)})$/
418
+ @regex = /\A(?:#{Regexp.escape(@prefix)})(.*)(?:#{Regexp.escape(@suffix)})\z/
419
419
  @target = "#{@prefix}attribute#{@suffix}"
420
420
  @method_name = "#{prefix}%s#{suffix}"
421
421
  end
@@ -49,7 +49,7 @@ module ActiveModel
49
49
  defaults << :"errors.format"
50
50
  defaults << "%{attribute} %{message}"
51
51
 
52
- attr_name = attribute.tr(".", "_").humanize
52
+ attr_name = attribute.remove(/\.base\z/).tr(".", "_").humanize
53
53
  attr_name = base_class.human_attribute_name(attribute, {
54
54
  default: attr_name,
55
55
  base: base,
@@ -9,8 +9,8 @@ module ActiveModel
9
9
  module VERSION
10
10
  MAJOR = 7
11
11
  MINOR = 0
12
- TINY = 6
13
- PRE = nil
12
+ TINY = 7
13
+ PRE = "1"
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
@@ -4,10 +4,6 @@ module ActiveModel
4
4
  module Type
5
5
  module Helpers # :nodoc: all
6
6
  module Mutable
7
- def immutable_value(value)
8
- value.deep_dup.freeze
9
- end
10
-
11
7
  def cast(value)
12
8
  deserialize(serialize(value))
13
9
  end
@@ -18,6 +14,10 @@ module ActiveModel
18
14
  def changed_in_place?(raw_old_value, new_value)
19
15
  raw_old_value != serialize(new_value)
20
16
  end
17
+
18
+ def mutable? # :nodoc:
19
+ true
20
+ end
21
21
  end
22
22
  end
23
23
  end
@@ -121,8 +121,12 @@ module ActiveModel
121
121
  def assert_valid_value(_)
122
122
  end
123
123
 
124
- def immutable_value(value) # :nodoc:
125
- value
124
+ def serialized? # :nodoc:
125
+ false
126
+ end
127
+
128
+ def mutable? # :nodoc:
129
+ false
126
130
  end
127
131
 
128
132
  private
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activemodel
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.6
4
+ version: 7.0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-29 00:00:00.000000000 Z
11
+ date: 2023-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 7.0.6
19
+ version: 7.0.7.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 7.0.6
26
+ version: 7.0.7.1
27
27
  description: A toolkit for building modeling frameworks like Active Record. Rich support
28
28
  for attributes, callbacks, validations, serialization, internationalization, and
29
29
  testing.
@@ -107,12 +107,12 @@ licenses:
107
107
  - MIT
108
108
  metadata:
109
109
  bug_tracker_uri: https://github.com/rails/rails/issues
110
- changelog_uri: https://github.com/rails/rails/blob/v7.0.6/activemodel/CHANGELOG.md
111
- documentation_uri: https://api.rubyonrails.org/v7.0.6/
110
+ changelog_uri: https://github.com/rails/rails/blob/v7.0.7.1/activemodel/CHANGELOG.md
111
+ documentation_uri: https://api.rubyonrails.org/v7.0.7.1/
112
112
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
113
- source_code_uri: https://github.com/rails/rails/tree/v7.0.6/activemodel
113
+ source_code_uri: https://github.com/rails/rails/tree/v7.0.7.1/activemodel
114
114
  rubygems_mfa_required: 'true'
115
- post_install_message:
115
+ post_install_message:
116
116
  rdoc_options: []
117
117
  require_paths:
118
118
  - lib
@@ -127,8 +127,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
127
127
  - !ruby/object:Gem::Version
128
128
  version: '0'
129
129
  requirements: []
130
- rubygems_version: 3.4.13
131
- signing_key:
130
+ rubygems_version: 3.3.3
131
+ signing_key:
132
132
  specification_version: 4
133
133
  summary: A toolkit for building modeling frameworks (part of Rails).
134
134
  test_files: []