Skip to content

Commit

Permalink
Merge pull request #50 from ns1/release/2.4.1
Browse files Browse the repository at this point in the history
Release 2.4.1
  • Loading branch information
saxmfone1 authored Mar 27, 2020
2 parents 09c553a + 70e503c commit c1568fc
Show file tree
Hide file tree
Showing 11 changed files with 37 additions and 19 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 2.4.1 (Mar 27, 2020)
- New Features
- Portal: Record-level permissions are now configurable in the Portal in Account Settings -> Users & Teams
- Feature Enhancements
- DHCP: Planned subnets and hosts will not be added to DHCP pools
- What’s fixed?
- IPAM: Fixed an issue that allowed a user to delete an IPAM network in a different organization
- System: Database restore now works correctly on HA Data clusters
- DNS: The system no longer allows you to incorrectly add a zone ending with a ‘.’
- DDNS: DHCP will now respect the configured zone and prefix if the host provides a FQDN
- Portal: Multiple style fixes for the search page
- Portal: A host with a reservation will no longer present the option to set a reservation
- Portal: A zone with a DHCP filter to a DHCP Scope group should not show entries outside it's domain
- Known issues
- Portal: A service definition can not be removed from a scope group. Workaround: Use the api
- DNS: Records with no answers will cause the zones api (and as a result, the Portal zones page) to fail
- System: Service definitions can not be deleted

## 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)
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.4.0}
image: ns1inc/privatedns_data:${TAG:-2.4.1}
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.4.0}
image: ns1inc/privatedns_core:${TAG:-2.4.1}
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.4.0}
image: ns1inc/privatedns_xfr:${TAG:-2.4.1}
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.4.0}
image: ns1inc/privatedns_data:${TAG:-2.4.1}
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.4.0}
image: ns1inc/privatedns_core:${TAG:-2.4.1}
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.4.0}
image: ns1inc/privatedns_xfr:${TAG:-2.4.1}
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.4.0}
image: ns1inc/privatedns_dns:${TAG:-2.4.1}
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.4.0}
image: ns1inc/privatedns_dhcp:${TAG:-2.4.1}
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.4.0}
image: ns1inc/privatedns_dist:${TAG:-2.4.1}
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.4.0}
image: ns1inc/privatedns_dns:${TAG:-2.4.1}
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.4.0}
image: ns1inc/privatedns_dhcp:${TAG:-2.4.1}
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.4.0}
image: ns1inc/privatedns_dist:${TAG:-2.4.1}
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.4.0"
default = "2.4.1"
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.4.0"
default = "2.4.1"
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.4.0"
default = "2.4.1"
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.4.0"
default = "2.4.1"
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.4.0"
default = "2.4.1"
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.4.0"
default = "2.4.1"
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.4.0"
default = "2.4.1"
description = "The image tag of the Docker image. Defaults to the latest GA version number."
}

Expand Down

0 comments on commit c1568fc

Please sign in to comment.