legion-data 1.6.22 → 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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2ba6b1b6cfe4b56e44657d3db31240576bfee65f9a52ea5390815b3c910cda96
|
|
4
|
+
data.tar.gz: 1d4e446d8dc71ea38121b54eacd7fcde382b0ae57895021e5a4797869d7eaf8b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 101283f65c15b0fbe6de1bd0c94123e0e9abac03fd7876577fab2ff4e7cf2e3abed978795e52a1005dc17ae004f7b668383d041a042499b28f331383398b1eab
|
|
7
|
+
data.tar.gz: 06aafbb77c07125849e45a217c47a504cebd70b4f5655524a77792fff9fe8f2ad2439a5d51b740621452f2bbb8202758950a989c9863bd4f2bde630ce30c9240
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
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
|
+
|
|
10
|
+
## [1.6.23] - 2026-04-07
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Migration 067: parenthesize CASE expression in `idx_memberships_trust_tiebreak` index (PG syntax error)
|
|
14
|
+
|
|
5
15
|
## [1.6.22] - 2026-04-06
|
|
6
16
|
|
|
7
17
|
### Added
|
|
@@ -24,7 +24,7 @@ Sequel.migration do
|
|
|
24
24
|
run <<~SQL
|
|
25
25
|
CREATE INDEX idx_memberships_trust_tiebreak
|
|
26
26
|
ON identity_group_memberships (principal_id, trust_weight ASC,
|
|
27
|
-
CASE status WHEN 'expired' THEN 0 WHEN 'stale' THEN 1 WHEN 'active' THEN 2 END ASC)
|
|
27
|
+
(CASE status WHEN 'expired' THEN 0 WHEN 'stale' THEN 1 WHEN 'active' THEN 2 END) ASC)
|
|
28
28
|
SQL
|
|
29
29
|
end
|
|
30
30
|
|
|
@@ -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.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
|