legion-data 1.6.24 → 1.6.25

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: 2ba6b1b6cfe4b56e44657d3db31240576bfee65f9a52ea5390815b3c910cda96
4
- data.tar.gz: 1d4e446d8dc71ea38121b54eacd7fcde382b0ae57895021e5a4797869d7eaf8b
3
+ metadata.gz: 6d2adcdaec18362d8417478957f8093bd331e6e047fd5546b4c9c1151174935e
4
+ data.tar.gz: 02aed26a7474699c18956263d1ac639ca688b2e76db37905d230e7eed9af13b7
5
5
  SHA512:
6
- metadata.gz: 101283f65c15b0fbe6de1bd0c94123e0e9abac03fd7876577fab2ff4e7cf2e3abed978795e52a1005dc17ae004f7b668383d041a042499b28f331383398b1eab
7
- data.tar.gz: 06aafbb77c07125849e45a217c47a504cebd70b4f5655524a77792fff9fe8f2ad2439a5d51b740621452f2bbb8202758950a989c9863bd4f2bde630ce30c9240
6
+ metadata.gz: e5343b72716892156ab69870bd50625fdf84b5b54d6792b6838b9783ccf2808c61e1ed2782c6f0a4610569ad771c09856ecc151bb1dd2c3dfdba839f8cc06bab
7
+ data.tar.gz: 2e780ebae82893bdbf4a91d0b6d68bce7a1fb3ed2e5dfe0630c6290b67a4ea8bf60f17bdafc0794cbe73fae2dc2a36b5a71fcc0c9955428abf1eb51fc7280538
data/CHANGELOG.md CHANGED
@@ -6,6 +6,7 @@
6
6
 
7
7
  ### Added
8
8
  - Migration 070: `resume_routing_key` and `resume_exchange` columns on `approval_queue` table (nullable String 255) to support fleet pipeline resume on approval
9
+ - Migration 071: `engine` VARCHAR(50) NULL column on `relationships` table — enables fleet pipeline to store explicit transformer engine selection per relationship
9
10
 
10
11
  ## [1.6.23] - 2026-04-07
11
12
 
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ Sequel.migration do
4
+ up do
5
+ alter_table(:relationships) do
6
+ add_column :engine, String, size: 50, null: true
7
+ end
8
+ end
9
+
10
+ down do
11
+ alter_table(:relationships) do
12
+ drop_column :engine
13
+ end
14
+ end
15
+ end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Legion
4
4
  module Data
5
- VERSION = '1.6.24'
5
+ VERSION = '1.6.25'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: legion-data
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.24
4
+ version: 1.6.25
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esity
@@ -200,6 +200,7 @@ files:
200
200
  - lib/legion/data/migrations/068_add_entity_type_to_audit_records.rb
201
201
  - lib/legion/data/migrations/069_add_principal_id_to_nodes.rb
202
202
  - lib/legion/data/migrations/070_add_approval_queue_resume.rb
203
+ - lib/legion/data/migrations/071_add_engine_to_relationships.rb
203
204
  - lib/legion/data/model.rb
204
205
  - lib/legion/data/models/apollo_access_log.rb
205
206
  - lib/legion/data/models/apollo_entry.rb