legion-data 1.6.22 → 1.6.23

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: 1f925497f4f43ca263e4cd90d07bb3adddc947e3713bc8cab3a489ae5e162a68
4
- data.tar.gz: c3eb803e0c3b65459ef74adb5a40d5afdcac41ba6adb64401b70809414c052bf
3
+ metadata.gz: 3a52e261165a48697cac4ec831466f240bd0fcba51a0d715011248a6d5060270
4
+ data.tar.gz: 7359ee3b79b4c70c4a7bd0a21f9e05193fe9c321f7141e56fa1ea0910c817a4f
5
5
  SHA512:
6
- metadata.gz: 057b2b9fa0518455dae0b1a5907ea303e17c191f4b34306e92124a48a1022a3f10eabfe34b07456085ecd4aca823ba86d352b4562865d94ca23d13ce857b0e6e
7
- data.tar.gz: 99a7bef85d7f5045d638ea1f06a9c336da33c21b6ab6b46c6421de9e0aac50d3ab394535e539e7bafe2f7585103864f35444ba87dd59a90107831a6eb9f18abc
6
+ metadata.gz: 74b4021f040895bec1e3be977b0910bd29f8478d9d64d0369bda2c414f9d8a7f661b0a95fdd563dc8d70b319e6c3182f49339dce001831e5ca9d781ca5beb73c
7
+ data.tar.gz: 04015705f6cc1ff213fddf4eae37c4733af6b2d5960db01a439dc0259c3a1e2a39e2abb1fd33db1d82e71c8d2a6b710579a6df7aead578e93e1e981d56fa5494
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [1.6.23] - 2026-04-07
6
+
7
+ ### Fixed
8
+ - Migration 067: parenthesize CASE expression in `idx_memberships_trust_tiebreak` index (PG syntax error)
9
+
5
10
  ## [1.6.22] - 2026-04-06
6
11
 
7
12
  ### 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
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Legion
4
4
  module Data
5
- VERSION = '1.6.22'
5
+ VERSION = '1.6.23'
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.22
4
+ version: 1.6.23
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esity