omg-activemodel 8.0.0.alpha8 → 8.0.0.alpha9

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: df92db041afd78773021ac5f472c147755116d6e100b043fe69098653c00e6fb
4
- data.tar.gz: 000f559fa9830b43c68333382dc6795b120d731f05e620249073c83da0381aed
3
+ metadata.gz: 055bdaaaf4b69e873c1072b5bebd5d6e8486394132870604b5f3644506abf47e
4
+ data.tar.gz: 5ec4d78471af294fe1ce89674ce24f5d0502dfecea10310755506f5d1ddc0ca8
5
5
  SHA512:
6
- metadata.gz: aa08b96e2912661b2b1624adc7ef082d86a5a1679d06db2dc964e1c733fe65744c3a13e2c888fbf6a27330bd8097397729cdf00ed0cbbac2bb7fedc14d7a443f
7
- data.tar.gz: 9f3942adfab553cb9adad5aaca75d10e443a6be76176b53bd13ce43ab01ad25a1a2ea026636b56c8ccc2740915865ef7d27d0f246d10013cc0fccb4d0b25c4f1
6
+ metadata.gz: 86a9c6b1c969bb79928626f5b42ca4730d1cc81c79974ae741a74721a4651563561318c9cc243e8fde06f58b0f1e82a52a4ccd434c7890b4031310d5f5bee687
7
+ data.tar.gz: 8ebcff6c5c0eedf2facbd878b3b01e5ad1c0bc1ca1008614d39d2e974298fce9845004f769389c7a90a1b0ac7147015a92fed4d6b812527fcc60830108481a14
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## Rails 8.0.0.alpha9 (September 25, 2024) ##
2
+
3
+ * No changes.
4
+
5
+
1
6
  ## Rails 8.0.0.alpha8 (September 18, 2024) ##
2
7
 
3
8
  * No changes.
@@ -10,7 +10,7 @@ module ActiveModel
10
10
  MAJOR = 8
11
11
  MINOR = 0
12
12
  TINY = 0
13
- PRE = "alpha8"
13
+ PRE = "alpha9"
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
@@ -128,7 +128,7 @@ module ActiveModel
128
128
  return serializable_attributes(attribute_names) if options.blank?
129
129
 
130
130
  if only = options[:only]
131
- attribute_names &= Array(only).map(&:to_s)
131
+ attribute_names = Array(only).map(&:to_s) & attribute_names
132
132
  elsif except = options[:except]
133
133
  attribute_names -= Array(except).map(&:to_s)
134
134
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omg-activemodel
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.0.0.alpha8
4
+ version: 8.0.0.alpha9
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-18 00:00:00.000000000 Z
11
+ date: 2024-09-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: omg-activesupport
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 8.0.0.alpha8
19
+ version: 8.0.0.alpha9
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: 8.0.0.alpha8
26
+ version: 8.0.0.alpha9
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.
@@ -112,10 +112,10 @@ licenses:
112
112
  - MIT
113
113
  metadata:
114
114
  bug_tracker_uri: https://github.com/rails/rails/issues
115
- changelog_uri: https://github.com/rails/rails/blob/v8.0.0.alpha8/activemodel/CHANGELOG.md
116
- documentation_uri: https://api.rubyonrails.org/v8.0.0.alpha8/
115
+ changelog_uri: https://github.com/rails/rails/blob/v8.0.0.alpha9/activemodel/CHANGELOG.md
116
+ documentation_uri: https://api.rubyonrails.org/v8.0.0.alpha9/
117
117
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
118
- source_code_uri: https://github.com/rails/rails/tree/v8.0.0.alpha8/activemodel
118
+ source_code_uri: https://github.com/rails/rails/tree/v8.0.0.alpha9/activemodel
119
119
  rubygems_mfa_required: 'true'
120
120
  post_install_message:
121
121
  rdoc_options: []