asherah 0.4.10-x86_64-darwin → 0.5.0-x86_64-darwin

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: fff0a3b7c6c5520cae551e533c4653e33b75a5fdad6ca1f188ce63e80d921711
4
- data.tar.gz: 50e636152edbe4904c40b15d3512c47adf66b339461ae0921f2df50124a5370b
3
+ metadata.gz: 3d9394b180f64a7f07116871b11bf28b2d93abd693f0ce9e000f9cecfc31f0af
4
+ data.tar.gz: ae10298b18fdf0ccbea900058fc26a6708ac4d8f0f798812994650e65cf4d515
5
5
  SHA512:
6
- metadata.gz: 9403397de3421e52c7f4334ed16f9e92b843f7eb56144fd60a1a5e9bad351e9284ab13d3c4ecef722dcc5e00bd467c6a332024c5aa6bbe712c55ee2c8d62fab2
7
- data.tar.gz: 45a98d3668915acbaf5ca02c9b099e3928f49c9ad9a8ef8d1c678ee88d436f2ea315f7614fd15215264e702c2d975a3cf3c2c0fb2231677bf5cdeb1afc29d38b
6
+ metadata.gz: ac50bf09a7a3cba7b3ac00000ab716bae42ac4949d746aff4b6aeb40776465471073f0b22e65c9584f67f0a98725406edf8f33a6565ab9303ddb0de98b654946
7
+ data.tar.gz: 1c02db2e39e54a85c0a2f3da10de6128975c4dc2ba09fbfd3d806df4aa579402b0389c97d8da3d1a779ec1481fb20f3e901c21ae7d8c359c948ac562d4ba7537
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.5.0] - 2023-10-16
4
+
5
+ - Upgrade to use asherah-cobhan v0.4.30
6
+ - Expose `test-debug-static` kms type and `test-debug-memory` metastore type to skip warnings in tests
7
+ - Check initialized flag on setup/shutdown and raise appropriate errors
8
+
3
9
  ## [0.4.10] - 2023-08-10
4
10
 
5
11
  - Upgrade to use asherah-cobhan v0.4.25
data/README.md CHANGED
@@ -45,6 +45,8 @@ Asherah.configure do |config|
45
45
  end
46
46
  ```
47
47
 
48
+ See [config.rb](lib/asherah/config.rb) for all evailable configuration options.
49
+
48
50
  Encrypt some data for a `partition_id`
49
51
 
50
52
  ```ruby
@@ -1,5 +1,5 @@
1
- version: v0.4.25
2
- libasherah-arm64.so: 573d4ac89dc54be952b428e4caa52f00861d67fdd94baf2deb0b37a1e40ea5d1
3
- libasherah-x64.so: 9a976b425edcaa27be84314414747c3d4abc22571c9ae8170f476822c2380716
4
- libasherah-arm64.dylib: 73f60860303af81de5f042d50ef755bbac34bae9f966d654036a259161e03f81
5
- libasherah-x64.dylib: a0e0c5c69278602cd19889df9b86795baf957cdaa4635c413c81d06b59572ec4
1
+ version: v0.4.30
2
+ libasherah-arm64.so: cb0985cd8f5d2c2ceac0e874e3f5b1276a9b2145c6274f9c7ccf80ddd7a5f469
3
+ libasherah-x64.so: a91d0703a569941a38c3fdd6c1320904b47e3592fa9b9164f43704e5f4a1dda9
4
+ libasherah-arm64.dylib: 8bac6d3a2a255553e7d1460f9e56a81d4ee7055e7f44f8f1a65cb6d584eabf6e
5
+ libasherah-x64.dylib: b264dc01ac6ac4ae6ae9dad8cab1f69ed887cca3e4ea0798ea572b444578e2c8
@@ -43,8 +43,8 @@ module Asherah
43
43
  verbose: :Verbose
44
44
  }.freeze
45
45
 
46
- KMS_TYPES = ['static', 'aws'].freeze
47
- METASTORE_TYPES = ['rdbms', 'dynamodb', 'memory'].freeze
46
+ KMS_TYPES = ['static', 'aws', 'test-debug-static'].freeze
47
+ METASTORE_TYPES = ['rdbms', 'dynamodb', 'memory', 'test-debug-memory'].freeze
48
48
 
49
49
  attr_accessor(*MAPPING.keys)
50
50
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Asherah
4
- VERSION = '0.4.10'
4
+ VERSION = '0.5.0'
5
5
  end
data/lib/asherah.rb CHANGED
@@ -44,6 +44,8 @@ module Asherah
44
44
  # @yield [Config]
45
45
  # @return [void]
46
46
  def configure
47
+ raise Asherah::Error::AlreadyInitialized if @initialized
48
+
47
49
  config = Config.new
48
50
  yield config
49
51
  config.validate!
@@ -53,6 +55,7 @@ module Asherah
53
55
 
54
56
  result = SetupJson(config_buffer)
55
57
  Error.check_result!(result, 'SetupJson failed')
58
+ @initialized = true
56
59
  end
57
60
 
58
61
  # Encrypts data for a given partition_id and returns DataRowRecord in JSON format.
@@ -104,7 +107,10 @@ module Asherah
104
107
 
105
108
  # Stop the Asherah instance
106
109
  def shutdown
110
+ raise Asherah::Error::NotInitialized unless @initialized
111
+
107
112
  Shutdown()
113
+ @initialized = false
108
114
  end
109
115
 
110
116
  private
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: asherah
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.10
4
+ version: 0.5.0
5
5
  platform: x86_64-darwin
6
6
  authors:
7
7
  - GoDaddy
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-08-10 00:00:00.000000000 Z
11
+ date: 2023-10-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cobhan