Skip to content

Commit

Permalink
Merge pull request #49 from ns1/release/2.4.0
Browse files Browse the repository at this point in the history
Release 2.4.0
  • Loading branch information
saxmfone1 authored Mar 13, 2020
2 parents d6cb3f8 + e71decc commit 09c553a
Show file tree
Hide file tree
Showing 11 changed files with 39 additions and 19 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## 2.4.0 (Mar 13, 2020)
- New Features
- DHCP: IP Ranges can now be defined in IPAM as a logical range of addresses within a subnet and can be added to a scope (API only)
- DNS: Added record-level permissions including record-type and subdomains in a given zone (API only)
- Portal: Added search page for viewing and filtering search results returned for DNS or IPAM objects
- Portal: Added “dark mode” which can be toggled via hotkey menu “?”
- Feature Enhancements
- System: Database backups are now compressed
- DDNS: Synthesized records now appear in the Portal under the wildcard record they belong to
- What’s fixed?
- DNS: TLD now allows wildcard records
- DHCP: Fixed a race condition that could cause the DHCP container to not receive its scopes properly
- Portal: The window to edit DHCP options is now more spacious
- IPAM: Improved performance when adding new IPAM objects
- DNS: asn-routing filter now works properly
- Known issues
- Portal: Portal hangs while creating a host reservation in the Portal without a zone in the system
- DHCP: The portal and API do not require one to select a DHCP service when setting scope group options. This will cause unpredictable DHCP behavior. Workaround: Select at least one of DHCPv4 or DHCPv6
- Portal: Synthesized records for different zones may appear in the wildcard record if the associated DHCP filter is configured with a scope group which updates another zone.

## 2.3.2 (Feb 28, 2020)
- New Features
- Portal: CSP headers can now be configured for the Portal
Expand Down
6 changes: 3 additions & 3 deletions docker-compose/control-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version: '3.2'
services:
data:
image: ns1inc/privatedns_data:${TAG:-2.3.2}
image: ns1inc/privatedns_data:${TAG:-2.4.0}
logging:
driver: "json-file"
options:
Expand Down Expand Up @@ -55,7 +55,7 @@ services:
--server_id ${SERVER_ID:-myserver}
--expose_ops_metrics true
core:
image: ns1inc/privatedns_core:${TAG:-2.3.2}
image: ns1inc/privatedns_core:${TAG:-2.4.0}
logging:
driver: "json-file"
options:
Expand Down Expand Up @@ -92,7 +92,7 @@ services:
--hostmaster_email ${HOSTMASTER_EMAIL:[email protected]}
--enable_ops_metrics true
xfr:
image: ns1inc/privatedns_xfr:${TAG:-2.3.2}
image: ns1inc/privatedns_xfr:${TAG:-2.4.0}
logging:
driver: "json-file"
options:
Expand Down
12 changes: 6 additions & 6 deletions docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version: '3.2'
services:
data:
image: ns1inc/privatedns_data:${TAG:-2.3.2}
image: ns1inc/privatedns_data:${TAG:-2.4.0}
logging:
driver: "json-file"
options:
Expand Down Expand Up @@ -42,7 +42,7 @@ services:
--server_id ${SERVER_ID:-myserver}
--expose_ops_metrics true
core:
image: ns1inc/privatedns_core:${TAG:-2.3.2}
image: ns1inc/privatedns_core:${TAG:-2.4.0}
logging:
driver: "json-file"
options:
Expand Down Expand Up @@ -79,7 +79,7 @@ services:
--hostmaster_email ${HOSTMASTER_EMAIL:[email protected]}
--enable_ops_metrics true
xfr:
image: ns1inc/privatedns_xfr:${TAG:-2.3.2}
image: ns1inc/privatedns_xfr:${TAG:-2.4.0}
logging:
driver: "json-file"
options:
Expand Down Expand Up @@ -110,7 +110,7 @@ services:
--core_host ${CORE_HOSTS:-core}
--enable_ops_metrics true
dns:
image: ns1inc/privatedns_dns:${TAG:-2.3.2}
image: ns1inc/privatedns_dns:${TAG:-2.4.0}
logging:
driver: "json-file"
options:
Expand Down Expand Up @@ -142,7 +142,7 @@ services:
--operation_mode ${OPERATION_MODE:-authoritative}
--enable_ops_metrics true
dhcp:
image: ns1inc/privatedns_dhcp:${TAG:-2.3.2}
image: ns1inc/privatedns_dhcp:${TAG:-2.4.0}
logging:
driver: "json-file"
options:
Expand Down Expand Up @@ -181,7 +181,7 @@ services:
--dhcp_service_def_id 2
--enable_ops_metrics true
dist:
image: ns1inc/privatedns_dist:${TAG:-2.3.2}
image: ns1inc/privatedns_dist:${TAG:-2.4.0}
logging:
driver: "json-file"
options:
Expand Down
6 changes: 3 additions & 3 deletions docker-compose/edge-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version: '3.2'
services:
dns:
image: ns1inc/privatedns_dns:${TAG:-2.3.2}
image: ns1inc/privatedns_dns:${TAG:-2.4.0}
logging:
driver: "json-file"
options:
Expand Down Expand Up @@ -34,7 +34,7 @@ services:
--operation_mode ${OPERATION_MODE:-authoritative}
--enable_ops_metrics true
dhcp:
image: ns1inc/privatedns_dhcp:${TAG:-2.3.2}
image: ns1inc/privatedns_dhcp:${TAG:-2.4.0}
logging:
driver: "json-file"
options:
Expand Down Expand Up @@ -73,7 +73,7 @@ services:
--dhcp_service_def_id 2
--enable_ops_metrics true
dist:
image: ns1inc/privatedns_dist:${TAG:-2.3.2}
image: ns1inc/privatedns_dist:${TAG:-2.4.0}
logging:
driver: "json-file"
options:
Expand Down
2 changes: 1 addition & 1 deletion terraform/examples/multi-node-cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ variable "docker_registry_address" {
}

variable "docker_image_tag" {
default = "2.3.2"
default = "2.4.0"
description = "The image tag of the Docker image. Defaults to the latest GA version number."
}

Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/core/variables.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variable "docker_image_tag" {
default = "2.3.2"
default = "2.4.0"
description = "The image tag of the Docker image. Defaults to the latest GA version number."
}

Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/data/variables.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variable "docker_image_tag" {
default = "2.3.2"
default = "2.4.0"
description = "The image tag of the Docker image. Defaults to the latest GA version number."
}

Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/dhcp/variables.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variable "docker_image_tag" {
default = "2.3.2"
default = "2.4.0"
description = "The image tag of the Docker image. Defaults to the latest GA version number."
}

Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/dist/variables.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variable "docker_image_tag" {
default = "2.3.2"
default = "2.4.0"
description = "The image tag of the Docker image. Defaults to the latest GA version number."
}

Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/dns/variables.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variable "docker_image_tag" {
default = "2.3.2"
default = "2.4.0"
description = "The image tag of the Docker image. Defaults to the latest GA version number."
}

Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/xfr/variables.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variable "docker_image_tag" {
default = "2.3.2"
default = "2.4.0"
description = "The image tag of the Docker image. Defaults to the latest GA version number."
}

Expand Down

0 comments on commit 09c553a

Please sign in to comment.