foobara 0.0.70 → 0.0.71

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: 9fa42ccdb3430fea47bc5de7590f08ef9c640e87d747eec8d4a594d4fd8d8a91
4
- data.tar.gz: 797a5cef37a8478295bc5c887766ec69819fa150c005bd49e7501d3609337ff5
3
+ metadata.gz: 3ceb4cde26286e2c3f8dfdf8bb4d0d939da11044b0312e2bafa51977a0071649
4
+ data.tar.gz: c3748ac6703dd5dfd098debb2a435c245dac8694dabdbcc2919ab357171aa9f6
5
5
  SHA512:
6
- metadata.gz: 771d25f93db9d12e31a9f74143840375bf1cd702f7b02f394c44411c12f50d37ce210213737794778dca08e6264ac4166b094930edb6969f20117f2b888d7e49
7
- data.tar.gz: c565ae11e35f1a767761823655e2294a70cd07fa02acb403bb6f37d43a3f471bb909d4b315e7defaaadb56b999e9778466092238f2f89af3722aa169666eee11
6
+ metadata.gz: 3f31cafa7b0a11b3c6236e87983279f3b6b43d3881426b68ca7288cc896d27906bc263c82868a97379c47faad06b1e79aff4429be4bafe0b1e92586c09e11e0f
7
+ data.tar.gz: 83d3b0b5e5a4750358d1a641511e27cc8d8d559fc1cfc9e55970c9dc3b957568f0e0308070590730a65063f030a4d12b89957a43eeda4c77c21df8c012943751
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # [0.0.71] - 2025-03-06
2
+
3
+ - Make require_primary_key: the default in AttributesHelpers
4
+
1
5
  # [0.0.70] - 2025-03-06
2
6
 
3
7
  - Make sure Foobara::Command.depends_on is inherited
@@ -25,7 +25,7 @@ module Foobara
25
25
  respond_to?(:foobara_primary_key_attribute)
26
26
  end
27
27
 
28
- def foobara_attributes_for_update(require_primary_key: false)
28
+ def foobara_attributes_for_update(require_primary_key: true)
29
29
  foobara_attributes_for_aggregate_update(require_primary_key:)
30
30
  end
31
31
 
@@ -40,7 +40,7 @@ module Foobara
40
40
  Foobara::TypeDeclarations::Attributes.reject(declaration, foobara_primary_key_attribute)
41
41
  end
42
42
 
43
- def foobara_attributes_for_aggregate_update(require_primary_key: false, initial: true)
43
+ def foobara_attributes_for_aggregate_update(require_primary_key: true, initial: true)
44
44
  declaration = foobara_attributes_type.declaration_data
45
45
  declaration = Util.deep_dup(declaration)
46
46
 
@@ -51,7 +51,7 @@ module Foobara
51
51
  if require_primary_key
52
52
  declaration[:required] = [foobara_primary_key_attribute]
53
53
  else
54
- TypeDeclarations::Attributes.reject(declaration, foobara_primary_key_attribute)
54
+ declaration = TypeDeclarations::Attributes.reject(declaration, foobara_primary_key_attribute)
55
55
  end
56
56
  end
57
57
 
@@ -68,7 +68,7 @@ module Foobara
68
68
  declaration
69
69
  end
70
70
 
71
- def foobara_attributes_for_atom_update(require_primary_key: false)
71
+ def foobara_attributes_for_atom_update(require_primary_key: true)
72
72
  declaration = foobara_attributes_type.declaration_data
73
73
  declaration = Util.deep_dup(declaration)
74
74
 
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.70
4
+ version: 0.0.71
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miles Georgi
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-06 00:00:00.000000000 Z
10
+ date: 2025-03-07 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: bigdecimal