Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.27.3 (February 17th, 2026)

ENHANCEMENTS:
* Adds support for DNS Insights permissions

## 0.27.2 (February 10th, 2026)

ENHANCEMENTS:
Expand Down Expand Up @@ -38,7 +43,7 @@ ENHANCEMENTS:
ENHANCEMENTS:
* Adds support for specifying a list of views when creating zones with or without a provided zone file.
* Adds support for specifying a zone name other than the FQDN when creating zones with or without a provided zone file.
* A specified list of networks for a zone was only applied to zone creation when a zone file was not provided.
* A specified list of networks for a zone was only applied to zone creation when a zone file was not provided.

## 0.21.0 (July 19th, 2024)

Expand Down
4 changes: 2 additions & 2 deletions ns1/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#
# Copyright (c) 2014, 2025 NSONE, Inc.
# Copyright (c) 2014, 2026 NSONE, Inc.
#
# License under The MIT License (MIT). See LICENSE in project root.
#
from .config import Config

version = "0.27.2"
version = "0.27.3"


class NS1:
Expand Down
9 changes: 8 additions & 1 deletion ns1/rest/permissions.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2014 NSONE, Inc.
# Copyright (c) 2014, 2026 NSONE, Inc.
#
# License under The MIT License (MIT). See LICENSE in project root.
#
Expand Down Expand Up @@ -36,4 +36,11 @@
"view_zones": False,
"zones_allow_by_default": False,
},
"redirects": {
"manage_redirects": False,
},
"insights": {
"view_insights": False,
"manage_insights": False,
},
}