activerecord-cipherstash-pg-adapter 0.7.7 → 0.7.9

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: c479d248f2aa495f2f355c6b48cfd7f5a132f1605ba9ad555153c60ce0c89d2b
4
- data.tar.gz: aba5141ccd9d1ab8a71244f9e7fa91379fc5a208496530170a6fe356d7ba1091
3
+ metadata.gz: d3150b75abf442f09e51ac27486ee884f701a15904f1dde3f6f7554b8b7e402e
4
+ data.tar.gz: 7893e51f426ce929f46227aaf9af5fc68a8a1099a8449c8a460a6b08a167a0fe
5
5
  SHA512:
6
- metadata.gz: fcf34a31fb873b0f2093b6cd351a4ae44e17e35045bae1b68c80f52bd05eb95144ff69f544e5dd616406d069baa56518fea1d639d15f06a7d22f3b46243b0fa4
7
- data.tar.gz: ba5b049cb95e6b7edfd737f5ae151c6888d6da9e64ef809d43311845dca7724e90783b88d42346c0d159c1933c7f1cfe326e6e9e545a3b1e0551999041679112
6
+ metadata.gz: 23a3075590f791867d48f9b982a3e36105ff253bf33ee0909b9f26b784d36f0ff149b97dd40c2f15846043eda3978173681fbd7e942da3b29f0261d056bcd795
7
+ data.tar.gz: d9588b8ca8f65b572a6f38f6f224abdb74cf2617993acc3184ac6c8da5c7014286afacfed479d2dd632a3c10a5a837ee718a3b0629c94aad6860eaf9b10da845
data/CHANGELOG.md CHANGED
@@ -6,6 +6,30 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.7.9] - 2023-05-25
10
+
11
+ ### Changed
12
+
13
+ - Bump version of cipherstash-pg to 1.0.0.beta.8.
14
+
15
+ ## [0.7.8] - 2023-05-25
16
+
17
+ ### Changed
18
+
19
+ - Add vitur host to rails creds.
20
+
21
+ ## [0.7.7] - 2023-05-24
22
+
23
+ ### Fixed
24
+
25
+ - Missed off a '?' at the end of a method name.
26
+
27
+ ## [0.7.6] - 2023-05-24
28
+
29
+ ### Fixed
30
+
31
+ - Fix clash of ActiveRecord::Point struct with standard postgres adapter.
32
+
9
33
  ## [0.7.5] - 2023-05-22
10
34
 
11
35
  ### Changed
@@ -31,5 +31,5 @@ Gem::Specification.new do |spec|
31
31
 
32
32
  # Runtime dependencies here; dev+test go in Gemfile.
33
33
  spec.add_dependency "activerecord", ">= 6.0.0", "< 8.0.0"
34
- spec.add_dependency "cipherstash-pg", ">= 1.0.0.beta.7"
34
+ spec.add_dependency "cipherstash-pg", ">= 1.0.0.beta.8"
35
35
  end
@@ -16,6 +16,7 @@ module ActiveRecord
16
16
  client_key = cs_credentials&.fetch(:client_key, nil)
17
17
  workspace_id = cs_credentials&.fetch(:workspace_id, nil)
18
18
  client_access_key = cs_credentials&.fetch(:client_access_key, nil)
19
+ vitur_host = cs_credentials&.fetch(:vitur_host, nil)
19
20
 
20
21
  unless client_id.nil?
21
22
  ENV["CS_CLIENT_ID"] = client_id
@@ -32,6 +33,10 @@ module ActiveRecord
32
33
  unless client_access_key.nil?
33
34
  ENV["CS_CLIENT_ACCESS_KEY"] = client_access_key
34
35
  end
36
+
37
+ unless vitur_host.nil?
38
+ ENV["CS_VITUR_HOST"] = vitur_host
39
+ end
35
40
  end
36
41
  end
37
42
  end
data/lib/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module ActiveRecord
2
- CIPHERSTASH_PG_ADAPTER_VERSION = "0.7.7"
2
+ CIPHERSTASH_PG_ADAPTER_VERSION = "0.7.9"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord-cipherstash-pg-adapter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.7
4
+ version: 0.7.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robin Howard
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-05-24 00:00:00.000000000 Z
11
+ date: 2023-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -36,14 +36,14 @@ dependencies:
36
36
  requirements:
37
37
  - - ">="
38
38
  - !ruby/object:Gem::Version
39
- version: 1.0.0.beta.7
39
+ version: 1.0.0.beta.8
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - ">="
45
45
  - !ruby/object:Gem::Version
46
- version: 1.0.0.beta.7
46
+ version: 1.0.0.beta.8
47
47
  description: CipherStash PostgreSQL adapter for ActiveRecord.
48
48
  email:
49
49
  - robin@cipherstash.com