Skip to content

Commit 2abba84

Browse files
authored
Merge pull request #147 from ns1/add-insights-permissions
Add insights permissions
2 parents 4171822 + 15a94da commit 2abba84

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.27.3 (February 17th, 2026)
2+
3+
ENHANCEMENTS:
4+
* Adds support for DNS Insights permissions
5+
16
## 0.27.2 (February 10th, 2026)
27

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

4348
## 0.21.0 (July 19th, 2024)
4449

ns1/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#
2-
# Copyright (c) 2014, 2025 NSONE, Inc.
2+
# Copyright (c) 2014, 2026 NSONE, Inc.
33
#
44
# License under The MIT License (MIT). See LICENSE in project root.
55
#
66
from .config import Config
77

8-
version = "0.27.2"
8+
version = "0.27.3"
99

1010

1111
class NS1:

ns1/rest/permissions.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2014 NSONE, Inc.
2+
# Copyright (c) 2014, 2026 NSONE, Inc.
33
#
44
# License under The MIT License (MIT). See LICENSE in project root.
55
#
@@ -36,4 +36,11 @@
3636
"view_zones": False,
3737
"zones_allow_by_default": False,
3838
},
39+
"redirects": {
40+
"manage_redirects": False,
41+
},
42+
"insights": {
43+
"view_insights": False,
44+
"manage_insights": False,
45+
},
3946
}

0 commit comments

Comments
 (0)