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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f6f3aa56dc5a365db7f3c2b4f255ac538ba455fad1bdf758f19450bca287381e
4
- data.tar.gz: 6bf38bec006856c4a60246e3b53a119296e9c4557a17f3c4d0f5ef50404102ca
3
+ metadata.gz: 7c165de1fc5ccb1e5f542bc090d96f2f7f86178454378f997c3d079b373f6252
4
+ data.tar.gz: 355a21c6cb3d14f137c57073557eaf00feb0ed33b8ff08dabf4b7898c418376a
5
5
  SHA512:
6
- metadata.gz: 5d24d34f6c5448e2ba33ac004e6d2e99a7ff0c3b31840c119f5d0256576d6146e6e13b120251db58ab9d80db4f4927f1c71f2c38397ca434a66ded8124c300e8
7
- data.tar.gz: 30ba030f48985e35f6d63e1ac02943bf0bed301eba7a36cc6728caa5dbee0395e14d8a4ba3e2d43edf68fca461ee5cb60ae204542b6f4f30c1ffa3655cf68986
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 dsl for better integration
6
- - auto restart of puma when a certificate is renewed
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.1)
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.7.12)
22
+ faraday (2.8.0)
23
23
  base64
24
24
  faraday-net_http (>= 2.0, < 3.1)
25
25
  ruby2_keywords (>= 0.0.4)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Anchor
4
- VERSION = '0.6.1'
4
+ VERSION = '0.6.2'
5
5
  end
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.1
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-08 00:00:00.000000000 Z
11
+ date: 2023-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: acme-client