legion-crypt 1.4.27 → 1.4.28

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: 5a67b420dc0efc26d3609c92e64fc8674c4edad3ad4bfbfeb75246f2fe641c4c
4
- data.tar.gz: 70af06bd5f95c9c9e01582b64af5c4b92a79270acfc9a9d476f063e105e5c193
3
+ metadata.gz: '082f74f156f2cbf27b9905d81276292945c3ca03c8cc47608cd60bc9f8c9c303'
4
+ data.tar.gz: a10a0f6d3afa1f6a9acc0a9e66c48e9ae4576ae8921409a8d7c52a14433f1953
5
5
  SHA512:
6
- metadata.gz: afafc5438c996024c1a13e84349d14344dc1694437e67ffe4902525e88438299fa505371eaa4b85574718bbe0e42b2fc6ffa7fc56894706c9f7cdaabe8056443
7
- data.tar.gz: 4cab2713f2bd9be3c5f7270fa64e2259a883a50c6f74dbad05c0f4e0034a0ce9b29f46a9e9b2003afaf501e24448ab382dd25f9f02e254c4f71368e123394c5f
6
+ metadata.gz: 86f52e9d2a8d91d6aacc0639771e494085d0c5c1022a33797873ff7a4dd1029a54809b27eaa2f577183b565b912641b094bc93163bf45424b8a298631112c7c3
7
+ data.tar.gz: f5422d69c6264f2b291d6fe333724cebb3d798626a815b7f19e4ee2e5ca2f5b7d03d84838153dce99970a7899af8c9cf133db2b194730b39fdd6c9b5683eaedb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Legion::Crypt
2
2
 
3
+ ## [1.4.28] - 2026-03-31
4
+
5
+ ### Fixed
6
+ - `Helper#vault_write` now accepts keyword args (`**data`) and splats to `Crypt.write`, fixing `ArgumentError` on Ruby 3.4 when writing to Vault KV
7
+
3
8
  ## [1.4.27] - 2026-03-31
4
9
 
5
10
  ### Fixed
@@ -11,8 +11,8 @@ module Legion
11
11
  Legion::Crypt.get(vault_path(path))
12
12
  end
13
13
 
14
- def vault_write(path, data)
15
- Legion::Crypt.write(vault_path(path), data)
14
+ def vault_write(path, **data)
15
+ Legion::Crypt.write(vault_path(path), **data)
16
16
  end
17
17
 
18
18
  def vault_exist?(path = nil)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Legion
4
4
  module Crypt
5
- VERSION = '1.4.27'
5
+ VERSION = '1.4.28'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: legion-crypt
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.27
4
+ version: 1.4.28
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esity