forked from pool/python-certbot-dns-route53
Compare commits
18 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| bccfbc92c0 | |||
| ed84c9d810 | |||
| b999020bb8 | |||
| c8471c4a52 | |||
| 83fc8ed19e | |||
| 2fb61b710d | |||
| 4445ac31af | |||
| fd10d467f2 | |||
| 4d42e15087 | |||
| bbfb65af9c | |||
| def9126c19 | |||
| eacb3dcfa4 | |||
| 1a63408f14 | |||
| d81e944280 | |||
| f467d50776 | |||
| d85188498b | |||
| 2b272f7ded | |||
| b4c4b5abca |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5fd11e3546175574ccc51aaeccb19860e00c633f9bbeb0c4d033bac5553b15bd
|
||||
size 15406
|
||||
3
certbot_dns_route53-5.1.0.tar.gz
Normal file
3
certbot_dns_route53-5.1.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5d325c702077bc483717f2f989b6014b258032b28009b8ed9062f9c01d693282
|
||||
size 15589
|
||||
@@ -1,3 +1,73 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 14 08:05:04 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- update to version 5.1.0
|
||||
* sync with the main certbot package
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 3 12:26:17 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- update to version 5.0.0
|
||||
* Python 3.9 support was removed
|
||||
* Migrated most functionality from setup.py to pyproject.toml
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 12 16:04:33 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- update to version 4.2.0
|
||||
* sync with the main certbot package
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 13 14:52:31 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- update to version 4.1.1
|
||||
* Switched to src-layout from flat-layout to accommodate PEP 517 pip
|
||||
editable installs
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 22 03:45:47 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Update to 4.0.0:
|
||||
* Added
|
||||
+ The --preferred-profile and --required-profile flags allow requesting
|
||||
a profile.
|
||||
* Changed
|
||||
+ Certificates now renew with 1/3rd of lifetime left (or 1/2 of lifetime
|
||||
left, if the lifetime is shorter than 10 days).
|
||||
+ removed acme.crypto_util._pyopenssl_cert_or_req_all_names
|
||||
+ removed acme.crypto_util._pyopenssl_cert_or_req_san
|
||||
+ removed acme.crypto_util.dump_pyopenssl_chain
|
||||
+ removed acme.crypto_util.gen_ss_cert
|
||||
+ removed certbot.crypto_util.dump_pyopenssl_chain
|
||||
+ removed certbot.crypto_util.pyopenssl_load_certificate
|
||||
* Fixed
|
||||
+ Moved RewriteEngine on directive added during apache http01
|
||||
authentication to the end of the virtual host, so that it overwrites
|
||||
any RewriteEngine off directives that already exist and allows
|
||||
redirection to the challenge URL.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 21 12:31:00 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- update to version 3.3.0
|
||||
* sync with the main certbot package
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 27 14:40:06 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- update to version 3.1.0
|
||||
* sync with the main certbot package
|
||||
- convert to pip-based build
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 3 14:53:01 UTC 2024 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- update to version 3.0.1
|
||||
* The --dns-route53-propagation-seconds command line flag was removed.
|
||||
* The certbot_dns_route53.authenticator module has been removed. This
|
||||
should not affect any users of the plugin and instead would only
|
||||
affect developers trying to develop on top of the old code.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 25 12:23:40 UTC 2024 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-certbot-dns-route53
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-certbot-dns-route53
|
||||
Version: 2.11.0
|
||||
Version: 5.1.0
|
||||
Release: 0
|
||||
Summary: Route53 DNS Authenticator plugin for Certbot
|
||||
License: Apache-2.0
|
||||
@@ -27,6 +27,7 @@ Source: https://files.pythonhosted.org/packages/source/c/certbot-dns-rou
|
||||
BuildRequires: %{python_module acme >= %{version}}
|
||||
BuildRequires: %{python_module boto3 >= 1.15.15}
|
||||
BuildRequires: %{python_module certbot >= %{version}}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: fdupes
|
||||
@@ -46,10 +47,10 @@ records using AWS Route53.
|
||||
%setup -q -n certbot_dns_route53-%{version}
|
||||
|
||||
%build
|
||||
%python_build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%python_install
|
||||
%pyproject_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
@@ -58,6 +59,7 @@ records using AWS Route53.
|
||||
%files %{python_files}
|
||||
%doc README.rst
|
||||
%license LICENSE.txt
|
||||
%{python_sitelib}/*
|
||||
%{python_sitelib}/certbot_dns_route53
|
||||
%{python_sitelib}/certbot_dns_route53-%{version}*info
|
||||
|
||||
%changelog
|
||||
|
||||
Reference in New Issue
Block a user