diff --git a/CHANGELOG.md b/CHANGELOG.md index 360358fe3..e5c689af3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,36 @@ -## 0.3.0 - -IMPROVEMENTS: - * Server join/retry-join command line and config options [GH-527] - * Enable raw_exec driver in dev mode [GH-558] +## 0.2.3 (December 17, 2015) BUG FIXES: - * Shutdown a task now sends the interrupt signal first to the process before - forcefully killing it. [GH-543] - * Docker driver no longer leaks unix domain socket connections [GH-556] + * client: Fixes for user lookup to support CoreOS [GH-591] + * discovery: Fixes for service registration when multiple allocations are bin + packed on a node [GH-583] + * discovery: De-Registering Tasks while Nomad sleeps before failed tasks are + restarted. + * discovery: Using a random prefix for nomad managed services [GH-579] + * configuration: Sort configuration files [GH-588] + * core: Task States not being properly updated [GH-600] + * cli: RetryInterval was not being applied properly [GH-601] -## 0.2.1 +## 0.2.2 (December 11, 2015) + +IMPROVEMENTS: + * core: Enable `raw_exec` driver in dev mode [GH-558] + * cli: Server join/retry-join command line and config options [GH-527] + * cli: Nomad reports which config files are loaded at start time, or if none + are loaded [GH-536], [GH-553] + +BUG FIXES: + * core: Send syslog to `LOCAL0` by default as previously documented [GH-547] + * consul: Nomad is less noisy when Consul is not running [GH-567] + * consul: Nomad only deregisters services that it created [GH-568] + * driver/docker: Docker driver no longer leaks unix domain socket connections + [GH-556] + * driver/exec: Shutdown a task now sends the interrupt signal first to the + process before forcefully killing it. [GH-543] + * fingerprint/network: Now correctly detects interfaces on Windows [GH-382] + * client: remove all calls to default logger [GH-570] + +## 0.2.1 (November 28, 2015) IMPROVEMENTS: diff --git a/Makefile b/Makefile index 3f8362668..82d9df435 100644 --- a/Makefile +++ b/Makefile @@ -48,8 +48,12 @@ vet: @echo "--> Running go tool vet $(VETARGS) ." @go tool vet $(VETARGS) . ; if [ $$? -eq 1 ]; then \ echo ""; \ - echo "Vet found suspicious constructs. Please check the reported constructs"; \ - echo "and fix them if necessary before submitting the code for reviewal."; \ + echo "[LINT] Vet found suspicious constructs. Please check the reported constructs"; \ + echo "and fix them if necessary before submitting the code for review."; \ + fi + + @git grep -n `echo "log"".Print"` ; if [ $$? -eq 0 ]; then \ + echo "[LINT] Found "log"".Printf" calls. These should use Nomad's logger instead."; \ fi web: diff --git a/Vagrantfile b/Vagrantfile index 07c06f034..83e87d8d2 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -7,7 +7,7 @@ VAGRANTFILE_API_VERSION = "2" $script = <