From ca06507906aad9130c43224f0a4da143eeb95554 Mon Sep 17 00:00:00 2001 From: Viranch Mehta Date: Wed, 27 Sep 2023 22:27:58 -0700 Subject: [PATCH 1/2] v0.0.6 bump and changelog & dependency updates --- CHANGELOG.md | 3 ++- octodns_ns1/__init__.py | 2 +- requirements-dev.txt | 28 +++++++++++++++++----------- requirements.txt | 4 ++-- setup.py | 2 +- 5 files changed, 23 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b1e8c5..3d113dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ -## v0.0.6 - 2023-??-?? - ??? +## v0.0.6 - 2023-09-28 - Dynamic zones & subnet targeting fixes * Adds Provider.list_zones to enable new dynamic zone config functionality +* Bump to [octodns v1.2.0](https://pypi.org/project/octodns/1.2.0/) to pull subnet-targeting related bug fixes ## v0.0.5 - 2023-07-27 - Dynamic Subnets diff --git a/octodns_ns1/__init__.py b/octodns_ns1/__init__.py index 48587f2..d200e4f 100644 --- a/octodns_ns1/__init__.py +++ b/octodns_ns1/__init__.py @@ -18,7 +18,7 @@ from octodns.record.geo import GeoCodes from octodns.record.geo_data import geo_data -__VERSION__ = '0.0.5' +__VERSION__ = '0.0.6' def _ensure_endswith_dot(string): diff --git a/requirements-dev.txt b/requirements-dev.txt index d376172..ca382e5 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,37 +1,43 @@ # DO NOT EDIT THIS FILE DIRECTLY - use ./script/update-requirements to update Pygments==2.16.1 -black==23.7.0 -bleach==6.0.0 -build==0.10.0 +SecretStorage==3.3.3 +black==23.9.1 +build==1.0.3 cffi==1.15.1 -click==8.1.6 +click==8.1.7 cmarkgfm==2022.10.27 -coverage==7.3.0 +coverage==7.3.1 +cryptography==41.0.4 docutils==0.20.1 +exceptiongroup==1.1.3 importlib-metadata==6.8.0 +importlib-resources==6.1.0 iniconfig==2.0.0 isort==5.12.0 jaraco.classes==3.3.0 +jeepney==0.8.0 keyring==24.2.0 markdown-it-py==3.0.0 mdurl==0.1.2 more-itertools==10.1.0 mypy-extensions==1.0.0 +nh3==0.2.14 packaging==23.1 pathspec==0.11.2 pkginfo==1.9.6 platformdirs==3.10.0 -pluggy==1.2.0 +pluggy==1.3.0 pycparser==2.21 pyflakes==3.1.0 pyproject_hooks==1.0.0 pytest-cov==4.1.0 pytest-network==0.0.1 -pytest==7.4.0 -readme-renderer==40.0 +pytest==7.4.2 +readme-renderer==42.0 requests-toolbelt==1.0.0 rfc3986==2.0.0 -rich==13.5.2 +rich==13.5.3 +tomli==2.0.1 twine==4.0.2 -webencodings==0.5.1 -zipp==3.16.2 +typing_extensions==4.8.0 +zipp==3.17.0 diff --git a/requirements.txt b/requirements.txt index a272b2e..cda1655 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,8 +7,8 @@ fqdn==1.5.1 idna==3.4 natsort==8.4.0 ns1-python==0.18.0 -octodns==1.0.0 +octodns==1.2.0 python-dateutil==2.8.2 requests==2.31.0 six==1.16.0 -urllib3==2.0.4 +urllib3==2.0.5 diff --git a/setup.py b/setup.py index 8264505..02e945c 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ def version(): 'test': tests_require, }, install_requires=( - 'octodns>=1.0.0rc0', + 'octodns>=1.2.0', 'ns1_python>=0.17.1', 'requests>=2.27.1', ), From e9b141c4a961f7f4718089f2023f83ad51e006a6 Mon Sep 17 00:00:00 2001 From: Viranch Mehta Date: Wed, 27 Sep 2023 22:32:49 -0700 Subject: [PATCH 2/2] changelog update for root NS for new zone bug fix --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d113dc..8b5294e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ -## v0.0.6 - 2023-09-28 - Dynamic zones & subnet targeting fixes +## v0.0.6 - 2023-09-28 - Dynamic zones & bug fixes * Adds Provider.list_zones to enable new dynamic zone config functionality +* Fix bug around root NS records when creating a new zone. See https://github.com/octodns/octodns-ns1/issues/48 * Bump to [octodns v1.2.0](https://pypi.org/project/octodns/1.2.0/) to pull subnet-targeting related bug fixes ## v0.0.5 - 2023-07-27 - Dynamic Subnets