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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6d2adcdaec18362d8417478957f8093bd331e6e047fd5546b4c9c1151174935e
|
|
4
|
+
data.tar.gz: 02aed26a7474699c18956263d1ac639ca688b2e76db37905d230e7eed9af13b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
data/lib/legion/data/version.rb
CHANGED
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.
|
|
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
|