foobara 0.0.71 → 0.0.72

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: 3ceb4cde26286e2c3f8dfdf8bb4d0d939da11044b0312e2bafa51977a0071649
4
- data.tar.gz: c3748ac6703dd5dfd098debb2a435c245dac8694dabdbcc2919ab357171aa9f6
3
+ metadata.gz: 4f37230e03dfeded35416a8552cb0877017b3258cf994be9b223da77a833fc5a
4
+ data.tar.gz: 8eeb368cb063d05208513067d39e353e43074abe54d40767867b593cbd9157b7
5
5
  SHA512:
6
- metadata.gz: 3f31cafa7b0a11b3c6236e87983279f3b6b43d3881426b68ca7288cc896d27906bc263c82868a97379c47faad06b1e79aff4429be4bafe0b1e92586c09e11e0f
7
- data.tar.gz: 83d3b0b5e5a4750358d1a641511e27cc8d8d559fc1cfc9e55970c9dc3b957568f0e0308070590730a65063f030a4d12b89957a43eeda4c77c21df8c012943751
6
+ metadata.gz: e6732b1d9abb5f2b9a8e738adf2db35cfaba3f8e0decd30de843ae09efb007a5ead774075390e8648030c3f52c17b2c124b1647614b56a6a22c2634eef8c5bdf
7
+ data.tar.gz: 176d48303bb79763ef67b0485cd90ff657fa406f1727969ae5c674d3f3b874ca7e466d4190c48910d1b968666665cfe23cfbf36302d38d88ac3ec48b0a575721
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # [0.0.72] - 2025-03-07
2
+
3
+ - Fix bug in find_many_by when there are required attributes not present in the filter
4
+
1
5
  # [0.0.71] - 2025-03-06
2
6
 
3
7
  - Make require_primary_key: the default in AttributesHelpers
@@ -136,7 +136,7 @@ module Foobara
136
136
  if element_type
137
137
  construct_associations(element_type, path.append(:"#"), result)
138
138
  end
139
- elsif type.extends?(BuiltinTypes[:attributes])
139
+ elsif type.extends?(BuiltinTypes[:attributes]) # TODO: matches attributes itself instead of only subtypes
140
140
  type.element_types.each_pair do |attribute_name, element_type|
141
141
  construct_associations(element_type, path.append(attribute_name), result)
142
142
  end
@@ -282,7 +282,8 @@ module Foobara
282
282
  end
283
283
 
284
284
  def find_many_by(attributes_filter)
285
- attributes_filter = entity_class.attributes_type.process_value!(attributes_filter)
285
+ find_by_type = entity_class.domain.foobara_type_from_declaration(entity_class.attributes_for_find_by)
286
+ attributes_filter = find_by_type.process_value!(attributes_filter)
286
287
 
287
288
  yielded_ids = Set.new
288
289
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foobara
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.71
4
+ version: 0.0.72
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miles Georgi
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-07 00:00:00.000000000 Z
10
+ date: 2025-03-08 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: bigdecimal