anchor-pki 0.6.1 → 0.6.2
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 +4 -4
- data/CHANGELOG.md +25 -3
- data/Gemfile.lock +2 -2
- data/lib/anchor/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7c165de1fc5ccb1e5f542bc090d96f2f7f86178454378f997c3d079b373f6252
|
|
4
|
+
data.tar.gz: 355a21c6cb3d14f137c57073557eaf00feb0ed33b8ff08dabf4b7898c418376a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 56f8142fcf5295e08aad91f36f4339b8c755c2dd262b3e4c806edad2b9572c2babfd4755c2851b55ff8f135f78ba6b35d98f4e5abd8ff0d0a99a339b0a863f1e
|
|
7
|
+
data.tar.gz: 2f259c3a7c1db5df960d978c88daed117848283d51d5bcceb06d13abaa4bcb962a72eeefe03ed0aedc529adb83a201afef5fab0d789027ff75416cc847add67e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,30 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [0.6.2] - 2023-12-20
|
|
4
|
+
|
|
5
|
+
- make terms of service an optional parameter
|
|
6
|
+
- change default autocert key from rails to anchor
|
|
7
|
+
|
|
8
|
+
## [0.6.1] - 2023-12-11
|
|
9
|
+
|
|
10
|
+
- improve support for ENV based configuration
|
|
11
|
+
- improve error logging for Puma plugin
|
|
12
|
+
|
|
13
|
+
## [0.6.0] - 2023-11-29
|
|
14
|
+
|
|
15
|
+
- changes for feature parity and consistency across anchor language packages
|
|
16
|
+
|
|
17
|
+
## [0.5.0] - 2023-09-18
|
|
18
|
+
|
|
19
|
+
- automatic renewal for expired, cached certificates
|
|
20
|
+
- log whole URL at startup, not just identifier
|
|
21
|
+
- add support for Anchor Certificate Extension
|
|
22
|
+
- update tests and test data recordings
|
|
23
|
+
|
|
3
24
|
## [0.4.0] - 2023-06-06
|
|
4
25
|
|
|
5
|
-
- add a puma plugin and configuration
|
|
6
|
-
- auto restart
|
|
26
|
+
- add a puma plugin and configuration DSL for better integration
|
|
27
|
+
- auto restart puma when certificates renew
|
|
7
28
|
- improve tests
|
|
8
29
|
- internal refactor to support the puma plugin
|
|
9
30
|
|
|
@@ -15,7 +36,8 @@
|
|
|
15
36
|
|
|
16
37
|
## [0.2.0] - 2023-04-18
|
|
17
38
|
|
|
18
|
-
-
|
|
39
|
+
- add autocert client for automatic certificate provisioning
|
|
40
|
+
- don't contact ACME server when cache hits
|
|
19
41
|
|
|
20
42
|
## [0.1.0] - 2021-11-05
|
|
21
43
|
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
anchor-pki (0.6.
|
|
4
|
+
anchor-pki (0.6.2)
|
|
5
5
|
acme-client (~> 2.0.13)
|
|
6
6
|
pstore (~> 0.1)
|
|
7
7
|
|
|
@@ -19,7 +19,7 @@ GEM
|
|
|
19
19
|
rexml
|
|
20
20
|
diff-lcs (1.5.0)
|
|
21
21
|
docile (1.4.0)
|
|
22
|
-
faraday (2.
|
|
22
|
+
faraday (2.8.0)
|
|
23
23
|
base64
|
|
24
24
|
faraday-net_http (>= 2.0, < 3.1)
|
|
25
25
|
ruby2_keywords (>= 0.0.4)
|
data/lib/anchor/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: anchor-pki
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Anchor Security, Inc
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-12-
|
|
11
|
+
date: 2023-12-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: acme-client
|