forked from pool/python-certbot-nginx
Compare commits
17 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 64e5a394f6 | |||
| 3e589c1baa | |||
| 24d007db20 | |||
| d36338f8bb | |||
| 2adfce7664 | |||
| 41f876cab9 | |||
| adda0c736e | |||
| de0d7211c6 | |||
| cefdfa1be9 | |||
| d0665daec0 | |||
| d63e268385 | |||
| 6268fd7438 | |||
| d60426d341 | |||
| 97288be00b | |||
| ce03e10a75 | |||
| 905eb681ba | |||
| 9c1ce367a8 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0d1fd009b38229d510fe2e33122758a4ae2ee790c324234ab99ec984211d4d6f
|
||||
size 78224
|
||||
3
certbot_nginx-5.1.0.tar.gz
Normal file
3
certbot_nginx-5.1.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fe41cdd8f54b0587b65b686aa142191ad1bf4f7abaa708a79d5ad662757fb07a
|
||||
size 80348
|
||||
@@ -1,3 +1,88 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 14 08:05:27 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- update to version 5.1.0
|
||||
* certbot-nginx no longer creates and uses self-signed certificates as an
|
||||
intermediate step when installing certificates.
|
||||
* Fixed a bug in certbot-nginx that'd leave nginx configured with self-signed
|
||||
certificates if a user ran certbot enhance and they didn't have matching SSL
|
||||
server blocks.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 3 12:26:27 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
|
||||
* certbot-nginx no longer uses socket.gethostname when generating self-signed
|
||||
certificates for use as a temporary step of installing certificates as it
|
||||
would sometimes result in strings that are too long to be used in the common
|
||||
name of a certificate. The static domain "temp-certbot-nginx.invalid" is now
|
||||
used instead
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 12 16:04:44 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:37 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:48 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:08 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- update to version 3.3.0
|
||||
* certbot-nginx now requires pyOpenSSL>=25.0.0.
|
||||
* certbot-nginx now requires pyparsing>=2.4.7.
|
||||
* Allow nginx plugin to parse non-breaking spaces in nginx
|
||||
configuration files.
|
||||
* When adding ssl listen directives in nginx server blocks,
|
||||
IP addresses are now preserved.
|
||||
* Nginx configurations can now have the http block in files other
|
||||
than the root (nginx.conf)
|
||||
* Nginx server_name directives with internal comments now ignore
|
||||
commented names
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 27 14:40:24 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:05 UTC 2024 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- update to version 3.0.1
|
||||
* sync with the main certbot package
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 25 12:23:46 UTC 2024 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-certbot-nginx
|
||||
#
|
||||
# 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,15 +18,16 @@
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-certbot-nginx
|
||||
Version: 2.11.0
|
||||
Version: 5.1.0
|
||||
Release: 0
|
||||
Summary: Nginx plugin for Certbot
|
||||
License: Apache-2.0
|
||||
URL: https://github.com/letsencrypt/letsencrypt
|
||||
Source: https://files.pythonhosted.org/packages/source/c/certbot-nginx/certbot_nginx-%{version}.tar.gz
|
||||
BuildRequires: %{python_module certbot >= %{version}}
|
||||
BuildRequires: %{python_module pyOpenSSL}
|
||||
BuildRequires: %{python_module pyparsing >= 2.2.1}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module pyOpenSSL >= 25.0.0}
|
||||
BuildRequires: %{python_module pyparsing >= 2.4.7}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: fdupes
|
||||
@@ -35,8 +36,8 @@ BuildRequires: python-rpm-macros
|
||||
Requires: nginx
|
||||
Requires: python-acme >= %{version}
|
||||
Requires: python-certbot >= %{version}
|
||||
Requires: python-pyOpenSSL
|
||||
Requires: python-pyparsing >= 2.2.1
|
||||
Requires: python-pyOpenSSL >= 25.0.0
|
||||
Requires: python-pyparsing >= 2.4.7
|
||||
BuildArch: noarch
|
||||
%python_subpackages
|
||||
|
||||
@@ -47,10 +48,10 @@ The Nginx plugin for Certbot.
|
||||
%setup -q -n certbot_nginx-%{version}
|
||||
|
||||
%build
|
||||
%python_build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%python_install
|
||||
%pyproject_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
@@ -59,6 +60,7 @@ The Nginx plugin for Certbot.
|
||||
%files %{python_files}
|
||||
%doc README.rst
|
||||
%license LICENSE.txt
|
||||
%{python_sitelib}/*
|
||||
%{python_sitelib}/certbot_nginx
|
||||
%{python_sitelib}/certbot_nginx-%{version}*info
|
||||
|
||||
%changelog
|
||||
|
||||
Reference in New Issue
Block a user