omg-activemodel 8.0.0.alpha7 → 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: 582a22a75cdedae264f88475f5a4b7f874f6724788be7fbc47d0ac94afc29822
4
- data.tar.gz: 729b31867d3935e3734521ce5d6df9132d4df0a3aae24ca9574309ddfbac9126
3
+ metadata.gz: 055bdaaaf4b69e873c1072b5bebd5d6e8486394132870604b5f3644506abf47e
4
+ data.tar.gz: 5ec4d78471af294fe1ce89674ce24f5d0502dfecea10310755506f5d1ddc0ca8
5
5
  SHA512:
6
- metadata.gz: dc673666bd9ff03de40568f8aeb763740764f0d203e766b805abd4aea96bcc59da8e165f02266e5f13fcd3d821bc8cf931921020cf3648af5ce5ceea775fd1de
7
- data.tar.gz: 4348da086bf56d6adf0677dab047b5a1faf6c45fb45e27cf3d81e7d27a88cc3626cd314726a0fc52b4a4761aedae36616eacd25f63f4cc9b3bb1df2c94f802c6
6
+ metadata.gz: 86a9c6b1c969bb79928626f5b42ca4730d1cc81c79974ae741a74721a4651563561318c9cc243e8fde06f58b0f1e82a52a4ccd434c7890b4031310d5f5bee687
7
+ data.tar.gz: 8ebcff6c5c0eedf2facbd878b3b01e5ad1c0bc1ca1008614d39d2e974298fce9845004f769389c7a90a1b0ac7147015a92fed4d6b812527fcc60830108481a14
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## Rails 8.0.0.alpha9 (September 25, 2024) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 8.0.0.alpha8 (September 18, 2024) ##
7
+
8
+ * No changes.
9
+
10
+
1
11
  ## Rails 8.0.0.alpha7 (September 18, 2024) ##
2
12
 
3
13
  * No changes.
@@ -10,7 +10,7 @@ module ActiveModel
10
10
  MAJOR = 8
11
11
  MINOR = 0
12
12
  TINY = 0
13
- PRE = "alpha7"
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.alpha7
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.alpha7
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.alpha7
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.alpha7/activemodel/CHANGELOG.md
116
- documentation_uri: https://api.rubyonrails.org/v8.0.0.alpha7/
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.alpha7/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: []