15
0

6 Commits

Author SHA256 Message Date
4879af3946 Accepting request 1318838 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1318838
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-dns-lexicon?expand=0&rev=25
2025-11-21 15:56:31 +00:00
59ad67b5ae - Update to 3.23.2
* Support subdomains in `dynu` providers (#34)
- from version 3.23.1
  * Fix pagination in `scaleway` provider (#64)
  * Fix tests in `godaddy` provider
- from version 3.23.0
  * Add `desec` provider (#55)
  * Replace the old `linode` provider with `linode4`. `linode4`
    provider name is still usable for retro-compatibility purpose.
- from version 3.22.0
  * Add support of Python 3.14
  * Add relevant URLs in the pyproject.toml for publication in PyPI
  * Make domain comparison case insensitive in DYNU provider to cope
    with zones with uppercase characters
  * Properly close sockets during integration tests
  * Drop support of Python 3.9
- Update BuildRequires from pyproject.toml

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-dns-lexicon?expand=0&rev=61
2025-11-20 10:56:25 +00:00
4545c2fcca Accepting request 1278542 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1278542
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-dns-lexicon?expand=0&rev=24
2025-05-20 15:04:05 +00:00
5e77581607 - Update to 3.21.1
* Make provider `dynu` able to work not only with the root domain of a zone (#31)
  * Remove the usage of a deprecated function of beautifulsoup (#29)
- from version 3.21.0
  * Add `devnomads` provider (#19)
  * Add `scaleway` provider (#21)
  * In `ionos` provider, authentication is not required
    when using automatic detection of registrar (#22)
  * In `hover` provider, prevent to send empty bodies in requests
    that would be refused by the API (#26)
  * Remove `webgo` provider (#20)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-dns-lexicon?expand=0&rev=59
2025-05-20 08:04:13 +00:00
4202352be2 Accepting request 1236174 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1236174
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-dns-lexicon?expand=0&rev=23
2025-01-12 10:14:11 +00:00
7f5994cd02 - update to 3.20.1:
* Setup Docker entrypoint to run Lexicon by default
- update to 3.20.0:
  * Fix Docker build & migrate image to Github Container registry
- update to 3.19.0:
  * Add regfish provider (#2102)
  * Add ionos provider (#2127)
  * Add support of Python 3.13
  * Migrate build tooling from poetry to uv
  * Provider porkbun now use the new API exposed by the DNS provider (#2069)
  * Drop support of Python 3.8
- update to 3.18.0:
  * Add timeweb provider (#1850)
  * Add qcloud provider (#1824)
  * Update cloudflare documentation regarding the zoneID (#1783)
  * Add support of personal access tokens (PATs) in gandi provider (#1987)
  * Prevent invalid TTL values and proper behavior with subdomains in godaddy provider (#1834)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-dns-lexicon?expand=0&rev=57
2025-01-09 12:22:50 +00:00
4 changed files with 26 additions and 5 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6fbfd33ca5e18897d75bbd530a853ca577e202b57dc8e67b06a5f0547e64eed6
size 5781489

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fb736db7103767c032680dc350cfd8934938f90c7eb0359364ec17e83a77ce29
size 5826336

View File

@@ -1,3 +1,24 @@
-------------------------------------------------------------------
Thu Nov 20 09:04:58 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 3.23.2
* Support subdomains in `dynu` providers (#34)
- from version 3.23.1
* Fix pagination in `scaleway` provider (#64)
* Fix tests in `godaddy` provider
- from version 3.23.0
* Add `desec` provider (#55)
* Replace the old `linode` provider with `linode4`. `linode4`
provider name is still usable for retro-compatibility purpose.
- from version 3.22.0
* Add support of Python 3.14
* Add relevant URLs in the pyproject.toml for publication in PyPI
* Make domain comparison case insensitive in DYNU provider to cope
with zones with uppercase characters
* Properly close sockets during integration tests
* Drop support of Python 3.9
- Update BuildRequires from pyproject.toml
-------------------------------------------------------------------
Mon May 19 09:22:24 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>

View File

@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-dns-lexicon
Version: 3.21.1
Version: 3.23.2
Release: 0
Summary: DNS record manipulation utility
License: MIT
@@ -27,7 +27,7 @@ Source: https://github.com/dns-lexicon/dns-lexicon/archive/refs/tags/v%{
BuildRequires: fdupes
BuildRequires: python-rpm-macros
# SECTION Python build system requirements
BuildRequires: %{python_module base >= 3.8}
BuildRequires: %{python_module base >= 3.10}
BuildRequires: %{python_module hatchling}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module poetry-core >= 1}