forked from pool/python-certbot-dns-digitalocean
Compare commits
16 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| f5dbdff0ae | |||
| 7e6f811724 | |||
| b29f4101a4 | |||
| 0292415e70 | |||
| 5a3215499b | |||
| ab3d38d356 | |||
| 6236d492a6 | |||
| e4b18d69a2 | |||
| e11f97bf1d | |||
| 5fcf1a4897 | |||
| 8c3fcf1178 | |||
| c26e86b01b | |||
| 4c5e26d9b8 | |||
| 8e05d90cfe | |||
| 9449e0ab94 | |||
| 88fcfb76e9 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d5166fc7eb3b3e8a8de4b43e7485d60eda4225db1d525b6f096949d1487e1c6c
|
||||
size 14417
|
||||
3
certbot_dns_digitalocean-5.1.0.tar.gz
Normal file
3
certbot_dns_digitalocean-5.1.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2c0b90029bae068bb2a8aa20e1003c9ba993fc68c3c13e8510f67b7147a384b7
|
||||
size 14409
|
||||
@@ -1,3 +1,70 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 14 08:03:36 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- update to version 5.1.0
|
||||
* sync with the main certbot package
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 3 12:24:50 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:03:14 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- update to version 4.2.0
|
||||
* sync with the main certbot package
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 13 14:50:51 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:45 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:29:36 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- update to version 3.3.0
|
||||
* sync with the main certbot package
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 27 14:36:36 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:52:32 UTC 2024 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- update to version 3.0.1
|
||||
* sync with the main certbot package
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 25 12:22:17 UTC 2024 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-certbot-dns-digitalocean
|
||||
#
|
||||
# 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-digitalocean
|
||||
Version: 2.11.0
|
||||
Version: 5.1.0
|
||||
Release: 0
|
||||
Summary: DigitalOcean Authenticator plugin for Certbot
|
||||
License: Apache-2.0
|
||||
@@ -26,6 +26,7 @@ URL: https://github.com/certbot/certbot
|
||||
Source: https://files.pythonhosted.org/packages/source/c/certbot-dns-digitalocean/certbot_dns_digitalocean-%{version}.tar.gz
|
||||
BuildRequires: %{python_module certbot >= %{version}}
|
||||
BuildRequires: %{python_module digitalocean >= 1.11}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: fdupes
|
||||
@@ -43,10 +44,10 @@ Digitalocean DNS Authenticator plugin for Certbot.
|
||||
%setup -q -n certbot_dns_digitalocean-%{version}
|
||||
|
||||
%build
|
||||
%python_build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%python_install
|
||||
%pyproject_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
|
||||
Reference in New Issue
Block a user