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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3150b75abf442f09e51ac27486ee884f701a15904f1dde3f6f7554b8b7e402e
|
4
|
+
data.tar.gz: 7893e51f426ce929f46227aaf9af5fc68a8a1099a8449c8a460a6b08a167a0fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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
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.
|
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-
|
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.
|
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.
|
46
|
+
version: 1.0.0.beta.8
|
47
47
|
description: CipherStash PostgreSQL adapter for ActiveRecord.
|
48
48
|
email:
|
49
49
|
- robin@cipherstash.com
|