Skip to content

Commit

Permalink
v2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sorah committed Oct 8, 2022
1 parent 56fbbbf commit 8e99026
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 38 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## v2.5.0 (2020-10-09)

### Enhancement

- Gains `chain_preferences` configuration to choose alternate chain. [#47](https://github.com/sorah/acmesmith/pull/47)
- route53: Gains `substitution_map` to allow delegation of `_acme-challenge` via predefined CNAME record. [#53](https://github.com/sorah/acmesmith/pull/53)
- s3: Gains `endpoint` option. [#52](https://github.com/sorah/acmesmith/pull/52)

## v2.4.0 (2020-12-03)

### Enhancement
Expand Down
60 changes: 23 additions & 37 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
acmesmith (2.4.0)
acmesmith (2.5.0)
acme-client (>= 2.0.7, < 3)
aws-sdk-acm
aws-sdk-route53
Expand All @@ -11,53 +11,39 @@ PATH
GEM
remote: https://rubygems.org/
specs:
acme-client (2.0.9)
faraday (>= 0.17, < 2.0.0)
acme-client (2.0.11)
faraday (>= 1.0, < 3.0.0)
faraday-retry (~> 1.0)
aws-eventstream (1.2.0)
aws-partitions (1.521.0)
aws-sdk-acm (1.46.0)
aws-sdk-core (~> 3, >= 3.121.2)
aws-partitions (1.644.0)
aws-sdk-acm (1.52.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sigv4 (~> 1.1)
aws-sdk-core (3.121.5)
aws-sdk-core (3.159.0)
aws-eventstream (~> 1, >= 1.0.2)
aws-partitions (~> 1, >= 1.520.1)
aws-partitions (~> 1, >= 1.525.0)
aws-sigv4 (~> 1.1)
jmespath (~> 1.0)
aws-sdk-kms (1.50.0)
aws-sdk-core (~> 3, >= 3.121.2)
jmespath (~> 1, >= 1.6.1)
aws-sdk-kms (1.58.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sigv4 (~> 1.1)
aws-sdk-route53 (1.56.0)
aws-sdk-core (~> 3, >= 3.121.2)
aws-sdk-route53 (1.65.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sigv4 (~> 1.1)
aws-sdk-s3 (1.104.0)
aws-sdk-core (~> 3, >= 3.121.2)
aws-sdk-s3 (1.114.0)
aws-sdk-core (~> 3, >= 3.127.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.4)
aws-sigv4 (1.4.0)
aws-sigv4 (1.5.2)
aws-eventstream (~> 1, >= 1.0.2)
diff-lcs (1.4.4)
faraday (1.8.0)
faraday-em_http (~> 1.0)
faraday-em_synchrony (~> 1.0)
faraday-excon (~> 1.1)
faraday-httpclient (~> 1.0.1)
faraday-net_http (~> 1.0)
faraday-net_http_persistent (~> 1.1)
faraday-patron (~> 1.0)
faraday-rack (~> 1.0)
multipart-post (>= 1.2, < 3)
faraday (2.6.0)
faraday-net_http (>= 2.0, < 3.1)
ruby2_keywords (>= 0.0.4)
faraday-em_http (1.0.0)
faraday-em_synchrony (1.0.0)
faraday-excon (1.1.0)
faraday-httpclient (1.0.1)
faraday-net_http (1.0.1)
faraday-net_http_persistent (1.2.0)
faraday-patron (1.0.0)
faraday-rack (1.0.0)
jmespath (1.4.0)
faraday-net_http (3.0.1)
faraday-retry (1.0.3)
jmespath (1.6.1)
mini_portile2 (2.8.0)
multipart-post (2.1.1)
nokogiri (1.13.3)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
Expand All @@ -77,7 +63,7 @@ GEM
rspec-support (~> 3.10.0)
rspec-support (3.10.2)
ruby2_keywords (0.0.5)
thor (1.1.0)
thor (1.2.1)

PLATFORMS
ruby
Expand Down
2 changes: 1 addition & 1 deletion lib/acmesmith/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Acmesmith
VERSION = "2.4.0"
VERSION = "2.5.0"
end

0 comments on commit 8e99026

Please sign in to comment.