Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-certbot-dns-route53 for
openSUSE:Factory checked in at 2026-02-09 19:29:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-certbot-dns-route53 (Old)
and /work/SRC/openSUSE:Factory/.python-certbot-dns-route53.new.1670 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-certbot-dns-route53"
Mon Feb 9 19:29:28 2026 rev:51 rq:1332035 version:5.3.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-certbot-dns-route53/python-certbot-dns-route53.changes
2026-01-17 14:55:37.425365779 +0100
+++
/work/SRC/openSUSE:Factory/.python-certbot-dns-route53.new.1670/python-certbot-dns-route53.changes
2026-02-09 19:29:56.230659427 +0100
@@ -1,0 +2,6 @@
+Mon Feb 9 12:59:25 UTC 2026 - Markéta Machová <[email protected]>
+
+- update to version 5.3.0
+ * sync with the main certbot package
+
+-------------------------------------------------------------------
Old:
----
certbot_dns_route53-5.2.2.tar.gz
New:
----
certbot_dns_route53-5.3.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-certbot-dns-route53.spec ++++++
--- /var/tmp/diff_new_pack.y01DJl/_old 2026-02-09 19:29:57.402708445 +0100
+++ /var/tmp/diff_new_pack.y01DJl/_new 2026-02-09 19:29:57.402708445 +0100
@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-certbot-dns-route53
-Version: 5.2.2
+Version: 5.3.0
Release: 0
Summary: Route53 DNS Authenticator plugin for Certbot
License: Apache-2.0
++++++ certbot_dns_route53-5.2.2.tar.gz -> certbot_dns_route53-5.3.0.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/certbot_dns_route53-5.2.2/PKG-INFO
new/certbot_dns_route53-5.3.0/PKG-INFO
--- old/certbot_dns_route53-5.2.2/PKG-INFO 2025-12-10 18:08:30.216293600
+0100
+++ new/certbot_dns_route53-5.3.0/PKG-INFO 2026-02-03 18:51:59.730475400
+0100
@@ -1,8 +1,8 @@
Metadata-Version: 2.4
Name: certbot-dns-route53
-Version: 5.2.2
+Version: 5.3.0
Summary: Route53 DNS Authenticator plugin for Certbot
-Author-email: Certbot Project <[email protected]>
+Author: Certbot Project
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/certbot/certbot
Keywords: aws,certbot,route53
@@ -27,8 +27,8 @@
Description-Content-Type: text/x-rst
License-File: LICENSE.txt
Requires-Dist: boto3>=1.20.34
-Requires-Dist: acme>=5.2.2
-Requires-Dist: certbot>=5.2.2
+Requires-Dist: acme>=5.3.0
+Requires-Dist: certbot>=5.3.0
Provides-Extra: docs
Requires-Dist: Sphinx>=1.0; extra == "docs"
Requires-Dist: sphinx_rtd_theme; extra == "docs"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/certbot_dns_route53-5.2.2/pyproject.toml
new/certbot_dns_route53-5.3.0/pyproject.toml
--- old/certbot_dns_route53-5.2.2/pyproject.toml 2025-12-10
18:08:09.000000000 +0100
+++ new/certbot_dns_route53-5.3.0/pyproject.toml 2026-02-03
18:51:42.000000000 +0100
@@ -10,7 +10,7 @@
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [
- { name = "Certbot Project", email = "[email protected]" },
+ { name = "Certbot Project" },
]
keywords = [
"aws",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/certbot_dns_route53-5.2.2/setup.py
new/certbot_dns_route53-5.3.0/setup.py
--- old/certbot_dns_route53-5.2.2/setup.py 2025-12-10 18:08:09.000000000
+0100
+++ new/certbot_dns_route53-5.3.0/setup.py 2026-02-03 18:51:43.000000000
+0100
@@ -2,7 +2,7 @@
from setuptools import setup
-version = '5.2.2'
+version = '5.3.0'
install_requires = [
'boto3>=1.20.34',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/certbot_dns_route53-5.2.2/src/certbot_dns_route53/_internal/dns_route53.py
new/certbot_dns_route53-5.3.0/src/certbot_dns_route53/_internal/dns_route53.py
---
old/certbot_dns_route53-5.2.2/src/certbot_dns_route53/_internal/dns_route53.py
2025-12-10 18:08:09.000000000 +0100
+++
new/certbot_dns_route53-5.3.0/src/certbot_dns_route53/_internal/dns_route53.py
2026-02-03 18:51:42.000000000 +0100
@@ -61,7 +61,7 @@
def prepare(self) -> None:
pass
- def get_chall_pref(self, unused_domain: str) ->
Iterable[type[challenges.Challenge]]:
+ def get_chall_pref(self, unused_identifier: str) ->
Iterable[type[challenges.Challenge]]:
return [challenges.DNS01]
def perform(self, achalls: list[AnnotatedChallenge]) ->
list[challenges.ChallengeResponse]:
@@ -70,7 +70,7 @@
try:
change_ids = [
self._change_txt_record("UPSERT",
- achall.validation_domain_name(achall.domain),
+ achall.validation_domain_name(achall.identifier.value),
achall.validation(achall.account_key))
for achall in achalls
]
@@ -85,7 +85,7 @@
def cleanup(self, achalls: list[achallenges.AnnotatedChallenge]) -> None:
if self._attempt_cleanup:
for achall in achalls:
- domain = achall.domain
+ domain = achall.identifier.value
validation_domain_name = achall.validation_domain_name(domain)
validation = achall.validation(achall.account_key)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/certbot_dns_route53-5.2.2/src/certbot_dns_route53/_internal/tests/dns_route53_test.py
new/certbot_dns_route53-5.3.0/src/certbot_dns_route53/_internal/tests/dns_route53_test.py
---
old/certbot_dns_route53-5.2.2/src/certbot_dns_route53/_internal/tests/dns_route53_test.py
2025-12-10 18:08:09.000000000 +0100
+++
new/certbot_dns_route53-5.3.0/src/certbot_dns_route53/_internal/tests/dns_route53_test.py
2026-02-03 18:51:42.000000000 +0100
@@ -9,7 +9,7 @@
import josepy as jose
import pytest
-from acme import challenges
+from acme import challenges, messages
from certbot import achallenges
from certbot import errors
from certbot.compat import os
@@ -24,7 +24,9 @@
# pylint: disable=protected-access
achall = achallenges.KeyAuthorizationAnnotatedChallenge(
- challb=acme_util.DNS01, domain=DOMAIN, account_key=KEY)
+ challb=acme_util.DNS01,
+ identifier=messages.Identifier(typ=messages.IDENTIFIER_FQDN,
value=DOMAIN),
+ account_key=KEY)
def setUp(self):
from certbot_dns_route53._internal.dns_route53 import Authenticator
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/certbot_dns_route53-5.2.2/src/certbot_dns_route53.egg-info/PKG-INFO
new/certbot_dns_route53-5.3.0/src/certbot_dns_route53.egg-info/PKG-INFO
--- old/certbot_dns_route53-5.2.2/src/certbot_dns_route53.egg-info/PKG-INFO
2025-12-10 18:08:30.000000000 +0100
+++ new/certbot_dns_route53-5.3.0/src/certbot_dns_route53.egg-info/PKG-INFO
2026-02-03 18:51:59.000000000 +0100
@@ -1,8 +1,8 @@
Metadata-Version: 2.4
Name: certbot-dns-route53
-Version: 5.2.2
+Version: 5.3.0
Summary: Route53 DNS Authenticator plugin for Certbot
-Author-email: Certbot Project <[email protected]>
+Author: Certbot Project
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/certbot/certbot
Keywords: aws,certbot,route53
@@ -27,8 +27,8 @@
Description-Content-Type: text/x-rst
License-File: LICENSE.txt
Requires-Dist: boto3>=1.20.34
-Requires-Dist: acme>=5.2.2
-Requires-Dist: certbot>=5.2.2
+Requires-Dist: acme>=5.3.0
+Requires-Dist: certbot>=5.3.0
Provides-Extra: docs
Requires-Dist: Sphinx>=1.0; extra == "docs"
Requires-Dist: sphinx_rtd_theme; extra == "docs"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/certbot_dns_route53-5.2.2/src/certbot_dns_route53.egg-info/requires.txt
new/certbot_dns_route53-5.3.0/src/certbot_dns_route53.egg-info/requires.txt
--- old/certbot_dns_route53-5.2.2/src/certbot_dns_route53.egg-info/requires.txt
2025-12-10 18:08:30.000000000 +0100
+++ new/certbot_dns_route53-5.3.0/src/certbot_dns_route53.egg-info/requires.txt
2026-02-03 18:51:59.000000000 +0100
@@ -1,6 +1,6 @@
boto3>=1.20.34
-acme>=5.2.2
-certbot>=5.2.2
+acme>=5.3.0
+certbot>=5.3.0
[docs]
Sphinx>=1.0