legion-data 1.6.23 → 1.6.24

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: 2ba6b1b6cfe4b56e44657d3db31240576bfee65f9a52ea5390815b3c910cda96
4
+ data.tar.gz: 1d4e446d8dc71ea38121b54eacd7fcde382b0ae57895021e5a4797869d7eaf8b
5
5
  SHA512:
6
- metadata.gz: 74b4021f040895bec1e3be977b0910bd29f8478d9d64d0369bda2c414f9d8a7f661b0a95fdd563dc8d70b319e6c3182f49339dce001831e5ca9d781ca5beb73c
7
- data.tar.gz: 04015705f6cc1ff213fddf4eae37c4733af6b2d5960db01a439dc0259c3a1e2a39e2abb1fd33db1d82e71c8d2a6b710579a6df7aead578e93e1e981d56fa5494
6
+ metadata.gz: 101283f65c15b0fbe6de1bd0c94123e0e9abac03fd7876577fab2ff4e7cf2e3abed978795e52a1005dc17ae004f7b668383d041a042499b28f331383398b1eab
7
+ data.tar.gz: 06aafbb77c07125849e45a217c47a504cebd70b4f5655524a77792fff9fe8f2ad2439a5d51b740621452f2bbb8202758950a989c9863bd4f2bde630ce30c9240
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
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
+
5
10
  ## [1.6.23] - 2026-04-07
6
11
 
7
12
  ### 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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Legion
4
4
  module Data
5
- VERSION = '1.6.23'
5
+ VERSION = '1.6.24'
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.24
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esity
@@ -199,6 +199,7 @@ 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
202
203
  - lib/legion/data/model.rb
203
204
  - lib/legion/data/models/apollo_access_log.rb
204
205
  - lib/legion/data/models/apollo_entry.rb