legion-data 1.6.23 → 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: 3a52e261165a48697cac4ec831466f240bd0fcba51a0d715011248a6d5060270
4
- data.tar.gz: 7359ee3b79b4c70c4a7bd0a21f9e05193fe9c321f7141e56fa1ea0910c817a4f
3
+ metadata.gz: 6d2adcdaec18362d8417478957f8093bd331e6e047fd5546b4c9c1151174935e
4
+ data.tar.gz: 02aed26a7474699c18956263d1ac639ca688b2e76db37905d230e7eed9af13b7
5
5
  SHA512:
6
- metadata.gz: 74b4021f040895bec1e3be977b0910bd29f8478d9d64d0369bda2c414f9d8a7f661b0a95fdd563dc8d70b319e6c3182f49339dce001831e5ca9d781ca5beb73c
7
- data.tar.gz: 04015705f6cc1ff213fddf4eae37c4733af6b2d5960db01a439dc0259c3a1e2a39e2abb1fd33db1d82e71c8d2a6b710579a6df7aead578e93e1e981d56fa5494
6
+ metadata.gz: e5343b72716892156ab69870bd50625fdf84b5b54d6792b6838b9783ccf2808c61e1ed2782c6f0a4610569ad771c09856ecc151bb1dd2c3dfdba839f8cc06bab
7
+ data.tar.gz: 2e780ebae82893bdbf4a91d0b6d68bce7a1fb3ed2e5dfe0630c6290b67a4ea8bf60f17bdafc0794cbe73fae2dc2a36b5a71fcc0c9955428abf1eb51fc7280538
data/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [1.6.24] - 2026-04-13
6
+
7
+ ### Added
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
10
+
5
11
  ## [1.6.23] - 2026-04-07
6
12
 
7
13
  ### Fixed
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ Sequel.migration do
4
+ up do
5
+ alter_table(:approval_queue) do
6
+ add_column :resume_routing_key, String, size: 255, null: true
7
+ add_column :resume_exchange, String, size: 255, null: true
8
+ end
9
+ end
10
+
11
+ down do
12
+ alter_table(:approval_queue) do
13
+ drop_column :resume_routing_key
14
+ drop_column :resume_exchange
15
+ end
16
+ end
17
+ end
@@ -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.23'
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.23
4
+ version: 1.6.25
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esity
@@ -199,6 +199,8 @@ files:
199
199
  - lib/legion/data/migrations/067_create_identity_group_memberships.rb
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
+ - lib/legion/data/migrations/070_add_approval_queue_resume.rb
203
+ - lib/legion/data/migrations/071_add_engine_to_relationships.rb
202
204
  - lib/legion/data/model.rb
203
205
  - lib/legion/data/models/apollo_access_log.rb
204
206
  - lib/legion/data/models/apollo_entry.rb