Skip to content

Commit

Permalink
release/3.3.5 (#117)
Browse files Browse the repository at this point in the history
* Release 3.3.5

* Add 3.3.5 details

Co-authored-by: Andrew C <[email protected]>
  • Loading branch information
kayim91 and lawnmowerlatte authored Oct 5, 2021
1 parent c872adb commit 2807bea
Show file tree
Hide file tree
Showing 12 changed files with 35 additions and 24 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 3.3.5 (Oct 5th, 2021)
- What’s fixed?
- DHCP: Improved watchdog to force a restart of keadatad if stalled
- DHCP: Resolved an issue where a remote server previously configure with TSIG could not be re-configured to successfully use GSS-TSIG
- DHCP: Removed requirement for the value field in requests for options that do not carry any data such as Option 43
- DNS: Backported 12+ XFR improvements, including setting a minimum XFR refresh time, improvements on RRsets updates during AXFR, improved logging and other backend process improvements
- DNS: Resolved an issue where XFR worker queues would grow unbounded, resulting in XFR processing to halt
- DNS: Resolved an issue with RR created via dynamic DNS which did not populate all required fields
- DNS: Removed an erroneous health check
- System: Back-ported improved permissions back-end service

## 3.3.4 (June 1, 2021)
- New Features
- DHCP: An IP address that overlaps with a new subnet's gateway is now merged in
Expand Down
8 changes: 4 additions & 4 deletions docker-compose/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4 POP_ID=mypop SERVER_ID=myserver docker-compose -p myproject -f docker-compose.yml up -d
$sudo TAG=3.3.5 POP_ID=mypop SERVER_ID=myserver docker-compose -p myproject -f docker-compose.yml up -d
```

---
Expand Down Expand Up @@ -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.4 POP_ID=dc1 SERVER_ID=host1 PRIMARY=true DATA_CONTAINER_NAME=data1 DATA_PEERS=data2 DATA_HOSTS=data1,data2 \
$sudo TAG=3.3.5 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.4 POP_ID=dc1 SERVER_ID=host2 DATA_CONTAINER_NAME=data2 DATA_PEERS=data1 DATA_HOSTS=data1,data2 \
$sudo TAG=3.3.5 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
```

Expand All @@ -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.4 POP_ID=dc2 SERVER_ID=host3 docker-compose -p myproject -f edge-compose.yml up -d
$sudo TAG=3.3.5 POP_ID=dc2 SERVER_ID=host3 docker-compose -p myproject -f edge-compose.yml up -d
```
6 changes: 3 additions & 3 deletions docker-compose/control-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.4}
image: ns1inc/privatedns_data:${TAG:-3.3.5}
logging:
driver: "json-file"
options:
Expand Down Expand Up @@ -60,7 +60,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.4}
image: ns1inc/privatedns_core:${TAG:-3.3.5}
logging:
driver: "json-file"
options:
Expand Down Expand Up @@ -99,7 +99,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.4}
image: ns1inc/privatedns_xfr:${TAG:-3.3.5}
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 @@ -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.4}
image: ns1inc/privatedns_data:${TAG:-3.3.5}
logging:
driver: "json-file"
options:
Expand Down Expand Up @@ -48,7 +48,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.4}
image: ns1inc/privatedns_core:${TAG:-3.3.5}
logging:
driver: "json-file"
options:
Expand Down Expand Up @@ -87,7 +87,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.4}
image: ns1inc/privatedns_xfr:${TAG:-3.3.5}
logging:
driver: "json-file"
options:
Expand Down Expand Up @@ -119,7 +119,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.4}
image: ns1inc/privatedns_dns:${TAG:-3.3.5}
logging:
driver: "json-file"
options:
Expand Down Expand Up @@ -153,7 +153,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.4}
image: ns1inc/privatedns_dhcp:${TAG:-3.3.5}
logging:
driver: "json-file"
options:
Expand Down Expand Up @@ -193,7 +193,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.4}
image: ns1inc/privatedns_monitor:${TAG:-3.3.5}
logging:
driver: "json-file"
options:
Expand Down
8 changes: 4 additions & 4 deletions docker-compose/edge-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.4}
image: ns1inc/privatedns_dns:${TAG:-3.3.5}
logging:
driver: "json-file"
options:
Expand Down Expand Up @@ -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.4}
image: ns1inc/privatedns_dhcp:${TAG:-3.3.5}
logging:
driver: "json-file"
options:
Expand Down Expand Up @@ -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.4}
image: ns1inc/privatedns_dist:${TAG:-3.3.5}
logging:
driver: "json-file"
options:
Expand Down Expand Up @@ -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.4}
image: ns1inc/privatedns_monitor:${TAG:-3.3.5}
logging:
driver: "json-file"
options:
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 = "3.3.4"
default = "3.3.5"
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 = "3.3.4"
default = "3.3.5"
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 = "3.3.4"
default = "3.3.5"
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 = "3.3.4"
default = "3.3.5"
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 = "3.3.4"
default = "3.3.5"
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/monitor/variables.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variable "docker_image_tag" {
default = "3.3.4"
default = "3.3.5"
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 = "3.3.4"
default = "3.3.5"
description = "The image tag of the Docker image. Defaults to the latest GA version number."
}

Expand Down

0 comments on commit 2807bea

Please sign in to comment.