Browse Source

Merge pull request #736 from meghashyamps/NA-limitation-fix-part2

Adding SX and UM to NA countries
pull/745/head
Ross McFarland 4 years ago
committed by GitHub
parent
commit
6d08418cd6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions
  1. +7
    -0
      CHANGELOG.md
  2. +2
    -1
      octodns/provider/ns1.py

+ 7
- 0
CHANGELOG.md View File

@ -1,3 +1,10 @@
## v0.9.14 - 2021-??-?? - ...
#### Noteworthy changes
* NS1 NA target now includes `SX` and `UM`. If `NA` continent is in use in
dynamic records care must be taken to upgrade/downgrade to v0.9.13.
## v0.9.13 - 2021-07-18 - Processors Alpha
#### Noteworthy changes


+ 2
- 1
octodns/provider/ns1.py View File

@ -363,7 +363,8 @@ class Ns1Provider(BaseProvider):
'NA': {'DO', 'DM', 'BB', 'BL', 'BM', 'HT', 'KN', 'JM', 'VC', 'HN',
'BS', 'BZ', 'PR', 'NI', 'LC', 'TT', 'VG', 'PA', 'TC', 'PM',
'GT', 'AG', 'GP', 'AI', 'VI', 'CA', 'GD', 'AW', 'CR', 'GL',
'CU', 'MF', 'SV', 'US', 'MQ', 'MS', 'KY', 'MX', 'CW', 'BQ'}
'CU', 'MF', 'SV', 'US', 'MQ', 'MS', 'KY', 'MX', 'CW', 'BQ',
'SX', 'UM'}
}
def __init__(self, id, api_key, retry_count=4, monitor_regions=None,


Loading…
Cancel
Save