diff --git a/CHANGELOG.md b/CHANGELOG.md index ce38110..c6438cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.27.3 (February 17th, 2026) + +ENHANCEMENTS: +* Adds support for DNS Insights permissions + ## 0.27.2 (February 10th, 2026) ENHANCEMENTS: @@ -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) diff --git a/ns1/__init__.py b/ns1/__init__.py index 381474c..aa56d58 100644 --- a/ns1/__init__.py +++ b/ns1/__init__.py @@ -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: diff --git a/ns1/rest/permissions.py b/ns1/rest/permissions.py index 5c19616..20f27da 100644 --- a/ns1/rest/permissions.py +++ b/ns1/rest/permissions.py @@ -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. # @@ -36,4 +36,11 @@ "view_zones": False, "zones_allow_by_default": False, }, + "redirects": { + "manage_redirects": False, + }, + "insights": { + "view_insights": False, + "manage_insights": False, + }, }