Browse Source
Merge pull request #914 from octodns/rel-0-9-18
Rel 0.9.18 version bump & CHANGELOG update
pull/918/head
v0.9.18
Ross McFarland
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
8 additions and
3 deletions
-
CHANGELOG.md
-
octodns/__init__.py
-
octodns/idna.py
|
|
|
@ -1,6 +1,7 @@ |
|
|
|
## v0.9.18 - 2022-??-?? - Internationalization |
|
|
|
## v0.9.18 - 2022-09-09 - Internationalization |
|
|
|
|
|
|
|
* Added octodns.idna idna_encode/idna_decode helpers |
|
|
|
* Added octodns.idna idna_encode/idna_decode helpers, providers will need to |
|
|
|
individually add support via these helpers though :-/ |
|
|
|
|
|
|
|
## v0.9.17 - 2022-04-02 - Registration required |
|
|
|
|
|
|
|
|
|
|
|
@ -7,4 +7,4 @@ from __future__ import ( |
|
|
|
unicode_literals, |
|
|
|
) |
|
|
|
|
|
|
|
__VERSION__ = '0.9.17' |
|
|
|
__VERSION__ = '0.9.18' |
|
|
|
@ -4,6 +4,10 @@ |
|
|
|
|
|
|
|
from idna import decode as _decode, encode as _encode |
|
|
|
|
|
|
|
# Providers will need to to make calls to these at the appropriate points, |
|
|
|
# generally right before they pass names off to api calls. For an example of |
|
|
|
# usage see https://github.com/octodns/octodns-ns1/pull/20 |
|
|
|
|
|
|
|
|
|
|
|
def idna_encode(name): |
|
|
|
# Based on https://github.com/psf/requests/pull/3695/files |
|
|
|
|