From c917f8e949c0085f3ebaa7a68c6b37a6c5a6f922 Mon Sep 17 00:00:00 2001 From: Kwasi Ayim Date: Tue, 1 Jun 2021 16:14:15 -0400 Subject: [PATCH] Release 3.3.4 --- CHANGELOG.md | 18 ++++++++++++++++++ docker-compose/README.md | 8 ++++---- docker-compose/control-compose.yml | 6 +++--- docker-compose/docker-compose.yml | 12 ++++++------ docker-compose/edge-compose.yml | 8 ++++---- terraform/modules/core/variables.tf | 2 +- terraform/modules/data/variables.tf | 2 +- terraform/modules/dhcp/variables.tf | 2 +- terraform/modules/dist/variables.tf | 2 +- terraform/modules/dns/variables.tf | 2 +- terraform/modules/monitor/variables.tf | 2 +- terraform/modules/xfr/variables.tf | 2 +- 12 files changed, 42 insertions(+), 24 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f0a371..e234e65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## 3.3.4 (June 1, 2021) +- New Features + - DHCP: An IP address that overlaps with a new subnet's gateway is now merged in + +- What’s fixed? + - DHCP: Resolved an issue where the DHCP option sip-directory-agent was deployed with incorrect syntax + - DHCP: Cannot add DHCP option 102 or 121 using API or portal + - DHCP: Resolved an issue where HA DHCP could lose synchronization + - DHCP: Usage stats for IPAM networks show all zeros + - DHCP: NS1 DDNS could not be configured with a default zone which is in a view + - DHCP: Wildcard record required for NS1 DDNS is not automatically added when the reverse zone is in a view + - DHCP: Fixed an issue where a remote server configured for GSS-TSIG updates could not be re-configured for TSIG updates + - Monitoring: Allow private IPs by default in the DDI platform + - Portal: Resolved an issue where IPAM was not included in the global search results + - Portal: Resolved an issue where the current configuration for NS1 DDNS was not shown + - Portal: Dashboard latest activity displays last global 200 events instead of per service (DNS, DHCP, IPAM) + - System: Improved record type validation in API key and user permissions + ## 3.3.3 (May 4, 2021) - New Features - DHCP: Update utilization stats now include gateway/broadcast IP addresses diff --git a/docker-compose/README.md b/docker-compose/README.md index 4e666de..b1d551f 100644 --- a/docker-compose/README.md +++ b/docker-compose/README.md @@ -40,7 +40,7 @@ Use to start all container images on a single host: `data`, `dns`, `core`, `xfr` #### For example: ```shell -$sudo TAG=3.3.3 POP_ID=mypop SERVER_ID=myserver docker-compose -p myproject -f docker-compose.yml up -d +$sudo TAG=3.3.4 POP_ID=mypop SERVER_ID=myserver docker-compose -p myproject -f docker-compose.yml up -d ``` --- @@ -78,14 +78,14 @@ Used to start control services on a single host: `data`, `core`, `xfr`. #### For example, starting a control host with primary data: ```shell -$sudo TAG=3.3.3 POP_ID=dc1 SERVER_ID=host1 PRIMARY=true DATA_CONTAINER_NAME=data1 DATA_PEERS=data2 DATA_HOSTS=data1,data2 \ +$sudo TAG=3.3.4 POP_ID=dc1 SERVER_ID=host1 PRIMARY=true DATA_CONTAINER_NAME=data1 DATA_PEERS=data2 DATA_HOSTS=data1,data2 \ docker-compose -p myproject -f control-compose.yml up -d ``` #### For example, starting a control host with replica data: ```shell -$sudo TAG=3.3.3 POP_ID=dc1 SERVER_ID=host2 DATA_CONTAINER_NAME=data2 DATA_PEERS=data1 DATA_HOSTS=data1,data2 \ +$sudo TAG=3.3.4 POP_ID=dc1 SERVER_ID=host2 DATA_CONTAINER_NAME=data2 DATA_PEERS=data1 DATA_HOSTS=data1,data2 \ docker-compose -p myproject -f control-compose.yml up -d ``` @@ -109,5 +109,5 @@ Used to start edge services on a single host: `dns`, `dhcp` and `dist` (distribu #### For example: ```shell -$sudo TAG=3.3.3 POP_ID=dc2 SERVER_ID=host3 docker-compose -p myproject -f edge-compose.yml up -d +$sudo TAG=3.3.4 POP_ID=dc2 SERVER_ID=host3 docker-compose -p myproject -f edge-compose.yml up -d ``` diff --git a/docker-compose/control-compose.yml b/docker-compose/control-compose.yml index 82265c7..5bbe541 100644 --- a/docker-compose/control-compose.yml +++ b/docker-compose/control-compose.yml @@ -3,7 +3,7 @@ version: '3.4' services: data: hostname: ${POP_ID:-mypop}-${SERVER_ID:-myserver}-${DATA_CONTAINER_NAME:-data} - image: ns1inc/privatedns_data:${TAG:-3.3.3} + image: ns1inc/privatedns_data:${TAG:-3.3.4} logging: driver: "json-file" options: @@ -61,7 +61,7 @@ services: --server_id ${SERVER_ID:-myserver} core: hostname: ${POP_ID:-mypop}-${SERVER_ID:-myserver}-${CORE_CONTAINER_NAME:-core} - image: ns1inc/privatedns_core:${TAG:-3.3.3} + image: ns1inc/privatedns_core:${TAG:-3.3.4} logging: driver: "json-file" options: @@ -100,7 +100,7 @@ services: --nameservers ${NAMESERVERS:-ns1.mycompany.net} xfr: hostname: ${POP_ID:-mypop}-${SERVER_ID:-myserver}-${XFR_CONTAINER_NAME:-xfr} - image: ns1inc/privatedns_xfr:${TAG:-3.3.3} + image: ns1inc/privatedns_xfr:${TAG:-3.3.4} logging: driver: "json-file" options: diff --git a/docker-compose/docker-compose.yml b/docker-compose/docker-compose.yml index 2946afc..d64141b 100644 --- a/docker-compose/docker-compose.yml +++ b/docker-compose/docker-compose.yml @@ -3,7 +3,7 @@ version: '3.4' services: data: hostname: ${POP_ID:-mypop}-${SERVER_ID:-myserver}-${DATA_CONTAINER_NAME:-data} - image: ns1inc/privatedns_data:${TAG:-3.3.3} + image: ns1inc/privatedns_data:${TAG:-3.3.4} logging: driver: "json-file" options: @@ -49,7 +49,7 @@ services: --server_id ${SERVER_ID:-myserver} core: hostname: ${POP_ID:-mypop}-${SERVER_ID:-myserver}-${CORE_CONTAINER_NAME:-core} - image: ns1inc/privatedns_core:${TAG:-3.3.3} + image: ns1inc/privatedns_core:${TAG:-3.3.4} logging: driver: "json-file" options: @@ -88,7 +88,7 @@ services: --nameservers ${NAMESERVERS:-ns1.mycompany.net} xfr: hostname: ${POP_ID:-mypop}-${SERVER_ID:-myserver}-${XFR_CONTAINER_NAME:-xfr} - image: ns1inc/privatedns_xfr:${TAG:-3.3.3} + image: ns1inc/privatedns_xfr:${TAG:-3.3.4} logging: driver: "json-file" options: @@ -120,7 +120,7 @@ services: --core_host ${CORE_HOSTS:-core} dns: hostname: ${POP_ID:-mypop}-${SERVER_ID:-myserver}-${DNS_CONTAINER_NAME:-dns} - image: ns1inc/privatedns_dns:${TAG:-3.3.3} + image: ns1inc/privatedns_dns:${TAG:-3.3.4} logging: driver: "json-file" options: @@ -154,7 +154,7 @@ services: --num_trex_procs 2 dhcp: hostname: ${POP_ID:-mypop}-${SERVER_ID:-myserver}-${DHCP_CONTAINER_NAME:-dhcp} - image: ns1inc/privatedns_dhcp:${TAG:-3.3.3} + image: ns1inc/privatedns_dhcp:${TAG:-3.3.4} logging: driver: "json-file" options: @@ -194,7 +194,7 @@ services: --service_def_id 2 monitor: hostname: ${POP_ID:-mypop}-${SERVER_ID:-myserver}-${MONITOR_CONTAINER_NAME:-monitor} - image: ns1inc/privatedns_monitor:${TAG:-3.3.3} + image: ns1inc/privatedns_monitor:${TAG:-3.3.4} logging: driver: "json-file" options: diff --git a/docker-compose/edge-compose.yml b/docker-compose/edge-compose.yml index afc055a..110fda1 100644 --- a/docker-compose/edge-compose.yml +++ b/docker-compose/edge-compose.yml @@ -3,7 +3,7 @@ version: '3.4' services: dns: hostname: ${POP_ID:-mypop}-${SERVER_ID:-myserver}-${DNS_CONTAINER_NAME:-dns} - image: ns1inc/privatedns_dns:${TAG:-3.3.3} + image: ns1inc/privatedns_dns:${TAG:-3.3.4} logging: driver: "json-file" options: @@ -37,7 +37,7 @@ services: --num_trex_procs 4 dhcp: hostname: ${POP_ID:-mypop}-${SERVER_ID:-myserver}-${DHCP_CONTAINER_NAME:-dhcp} - image: ns1inc/privatedns_dhcp:${TAG:-3.3.3} + image: ns1inc/privatedns_dhcp:${TAG:-3.3.4} logging: driver: "json-file" options: @@ -77,7 +77,7 @@ services: --service_def_id 2 dist: hostname: ${POP_ID:-mypop}-${SERVER_ID:-myserver}-${DIST_CONTAINER_NAME:-dist} - image: ns1inc/privatedns_dist:${TAG:-3.3.3} + image: ns1inc/privatedns_dist:${TAG:-3.3.4} logging: driver: "json-file" options: @@ -112,7 +112,7 @@ services: --core_host ${CORE_HOSTS} monitor: hostname: ${POP_ID:-mypop}-${SERVER_ID:-myserver}-${MONITOR_CONTAINER_NAME:-monitor} - image: ns1inc/privatedns_monitor:${TAG:-3.3.3} + image: ns1inc/privatedns_monitor:${TAG:-3.3.4} logging: driver: "json-file" options: diff --git a/terraform/modules/core/variables.tf b/terraform/modules/core/variables.tf index 41b4890..5954957 100644 --- a/terraform/modules/core/variables.tf +++ b/terraform/modules/core/variables.tf @@ -1,5 +1,5 @@ variable "docker_image_tag" { - default = "3.3.3" + default = "3.3.4" description = "The image tag of the Docker image. Defaults to the latest GA version number." } diff --git a/terraform/modules/data/variables.tf b/terraform/modules/data/variables.tf index 6a9d684..e555d3e 100644 --- a/terraform/modules/data/variables.tf +++ b/terraform/modules/data/variables.tf @@ -1,5 +1,5 @@ variable "docker_image_tag" { - default = "3.3.3" + default = "3.3.4" description = "The image tag of the Docker image. Defaults to the latest GA version number." } diff --git a/terraform/modules/dhcp/variables.tf b/terraform/modules/dhcp/variables.tf index df520c4..2a49c36 100644 --- a/terraform/modules/dhcp/variables.tf +++ b/terraform/modules/dhcp/variables.tf @@ -1,5 +1,5 @@ variable "docker_image_tag" { - default = "3.3.3" + default = "3.3.4" description = "The image tag of the Docker image. Defaults to the latest GA version number." } diff --git a/terraform/modules/dist/variables.tf b/terraform/modules/dist/variables.tf index bcdbe08..730bb49 100644 --- a/terraform/modules/dist/variables.tf +++ b/terraform/modules/dist/variables.tf @@ -1,5 +1,5 @@ variable "docker_image_tag" { - default = "3.3.3" + default = "3.3.4" description = "The image tag of the Docker image. Defaults to the latest GA version number." } diff --git a/terraform/modules/dns/variables.tf b/terraform/modules/dns/variables.tf index 87a56f3..e002817 100644 --- a/terraform/modules/dns/variables.tf +++ b/terraform/modules/dns/variables.tf @@ -1,5 +1,5 @@ variable "docker_image_tag" { - default = "3.3.3" + default = "3.3.4" description = "The image tag of the Docker image. Defaults to the latest GA version number." } diff --git a/terraform/modules/monitor/variables.tf b/terraform/modules/monitor/variables.tf index c4f374c..1e9648e 100644 --- a/terraform/modules/monitor/variables.tf +++ b/terraform/modules/monitor/variables.tf @@ -1,5 +1,5 @@ variable "docker_image_tag" { - default = "3.3.3" + default = "3.3.4" description = "The image tag of the Docker image. Defaults to the latest GA version number." } diff --git a/terraform/modules/xfr/variables.tf b/terraform/modules/xfr/variables.tf index 5672f27..8fd84c5 100644 --- a/terraform/modules/xfr/variables.tf +++ b/terraform/modules/xfr/variables.tf @@ -1,5 +1,5 @@ variable "docker_image_tag" { - default = "3.3.3" + default = "3.3.4" description = "The image tag of the Docker image. Defaults to the latest GA version number." }