From 833db67f256cd3e6785bc81057bb2260b6dc0069 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sat, 18 Jun 2016 01:43:44 -0400 Subject: [PATCH] Release 0.6.0 --- HISTORY.md | 28 ++++++++++++++++++ README.md | 4 +-- contrib/dokku-installer.py | 2 +- debian/control | 2 +- docs/assets/favicons/browserconfig.xml | 8 +++--- docs/assets/favicons/manifest.json | 12 ++++---- docs/assets/style.css | 4 +-- docs/assets/versions.json | 3 +- docs/development/release-process.md | 2 +- docs/home.html | 40 +++++++++++++------------- docs/installation.md | 4 +-- docs/proxy.md | 1 + docs/template.html | 36 +++++++++++------------ plugins/00_dokku-standard/plugin.toml | 2 +- plugins/20_events/plugin.toml | 2 +- plugins/apps/plugin.toml | 2 +- plugins/build-env/plugin.toml | 2 +- plugins/certs/plugin.toml | 2 +- plugins/checks/plugin.toml | 2 +- plugins/common/plugin.toml | 2 +- plugins/config/plugin.toml | 2 +- plugins/docker-options/plugin.toml | 2 +- plugins/domains/plugin.toml | 2 +- plugins/enter/plugin.toml | 2 +- plugins/git/plugin.toml | 2 +- plugins/logs/plugin.toml | 2 +- plugins/named-containers/plugin.toml | 2 +- plugins/nginx-vhosts/plugin.toml | 2 +- plugins/plugin/plugin.toml | 2 +- plugins/proxy/plugin.toml | 2 +- plugins/ps/plugin.toml | 2 +- plugins/shell/plugin.toml | 2 +- plugins/storage/plugin.toml | 2 +- plugins/tags/plugin.toml | 2 +- plugins/tar/plugin.toml | 2 +- 35 files changed, 110 insertions(+), 80 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 033276c3d..62f1caa45 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,33 @@ # History +## 0.6.0 + +The big-six-o. This release is largely comprised of new features that should allow for easier management of dokku. The highlights of this release are: + +- The proxy plugin has been enhanced to allow users to map container ports to host ports. In the 0.5.0 release, we changed the semantics of how Dockerfile `EXPOSE` calls work to better follow Docker's lead, which ended up breaking how some applications were deployed to dokku. Please read our documentation surrounding [port management](http://dokku.viewdocs.io/dokku/proxy/) for more details. +- Zero-downtime deploys can be disabled on a per-app and per-process basis. This can be used to speed up deploys when there are non-web processes being deployed, or when a user wishes to completely avoid any such waiting period. Please see the [checks documentation](http://dokku.viewdocs.io/dokku/checks-examples/) for further information. + +Thanks to all the contributors who helped with this release, and a special thanks to @michaelshobbs for ferrying the majority of our new functionality to it's current state! + +### Bug Fixes + +- #2241: @josegonzalez Set debconf selections from dokku-installer.py +- #2242: @michaelshobbs Avoid calling dokku binary +- #2243: @josegonzalez Nginx 1.9.5+ support + +### New Features + +- #2018: @pascalw Support running Procfile commands using `dokku run` +- #2050: @josegonzalez Implement repo:gc and repo:purge-cache +- #2109: @josegonzalez Allow user to modify the repository and tag when deploying an app +- #2168: @michaelshobbs Allow zero-downtime deploys to be completely disabled +- #2248: @michaelshobbs Allow users to map container ports to host ports via the proxy plugin + +### Documentation + +- #2209: @piamancini Added backers and sponsors from OpenCollective +- #2244: @basgys Add InfluxDB to plugins + ## 0.5.8 This release is the last release in the `0.5.x` series, and as such is mainly a bugfix release. Users are highly encouraged to upgrade to this release *before* moving to the upcoming `0.6.x` release, as we will be removing deprecated features at that point. diff --git a/README.md b/README.md index a44cb890d..61ff771f5 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@ Docker powered mini-Heroku. The smallest PaaS implementation you've ever seen. To install the latest stable release, you can run the following commands as a user that has access to `sudo`: - wget https://raw.githubusercontent.com/dokku/dokku/v0.5.8/bootstrap.sh - sudo DOKKU_TAG=v0.5.8 bash bootstrap.sh + wget https://raw.githubusercontent.com/dokku/dokku/v0.6.0/bootstrap.sh + sudo DOKKU_TAG=v0.6.0 bash bootstrap.sh ### Upgrading diff --git a/contrib/dokku-installer.py b/contrib/dokku-installer.py index 86da5c452..31abe7300 100755 --- a/contrib/dokku-installer.py +++ b/contrib/dokku-installer.py @@ -9,7 +9,7 @@ import subprocess import sys import threading -VERSION = 'v0.5.8' +VERSION = 'v0.6.0' hostname = '' try: diff --git a/debian/control b/debian/control index 90cfb8569..964d155f3 100644 --- a/debian/control +++ b/debian/control @@ -1,5 +1,5 @@ Package: dokku -Version: 0.5.8 +Version: 0.6.0 Section: web Priority: optional Architecture: amd64 diff --git a/docs/assets/favicons/browserconfig.xml b/docs/assets/favicons/browserconfig.xml index 7af837b20..e040a7db8 100644 --- a/docs/assets/favicons/browserconfig.xml +++ b/docs/assets/favicons/browserconfig.xml @@ -2,10 +2,10 @@ - - - - + + + + #da532c diff --git a/docs/assets/favicons/manifest.json b/docs/assets/favicons/manifest.json index 97487ae6e..de3b2d0cb 100644 --- a/docs/assets/favicons/manifest.json +++ b/docs/assets/favicons/manifest.json @@ -2,37 +2,37 @@ "name": "Dokku", "icons": [ { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.5.8\/docs\/assets\/favicons\/android-chrome-36x36.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.0\/docs\/assets\/favicons\/android-chrome-36x36.png", "sizes": "36x36", "type": "image\/png", "density": "0.75" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.5.8\/docs\/assets\/favicons\/android-chrome-48x48.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.0\/docs\/assets\/favicons\/android-chrome-48x48.png", "sizes": "48x48", "type": "image\/png", "density": "1.0" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.5.8\/docs\/assets\/favicons\/android-chrome-72x72.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.0\/docs\/assets\/favicons\/android-chrome-72x72.png", "sizes": "72x72", "type": "image\/png", "density": "1.5" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.5.8\/docs\/assets\/favicons\/android-chrome-96x96.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.0\/docs\/assets\/favicons\/android-chrome-96x96.png", "sizes": "96x96", "type": "image\/png", "density": "2.0" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.5.8\/docs\/assets\/favicons\/android-chrome-144x144.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.0\/docs\/assets\/favicons\/android-chrome-144x144.png", "sizes": "144x144", "type": "image\/png", "density": "3.0" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.5.8\/docs\/assets\/favicons\/android-chrome-192x192.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.0\/docs\/assets\/favicons\/android-chrome-192x192.png", "sizes": "192x192", "type": "image\/png", "density": "4.0" diff --git a/docs/assets/style.css b/docs/assets/style.css index e00075251..eab5d65f3 100644 --- a/docs/assets/style.css +++ b/docs/assets/style.css @@ -36,13 +36,13 @@ h1 { background-repeat: no-repeat; } .header .navbar-brand a { - background-image: url(https://cdn.rawgit.com/dokku/dokku/v0.5.8/docs/assets/dokku.png); + background-image: url(https://cdn.rawgit.com/dokku/dokku/v0.6.0/docs/assets/dokku.png); text-indent: 40px; } .blurb { color: #424242; background-color: #ededed; - background-image: url(https://cdn.rawgit.com/dokku/dokku/v0.5.8/docs/assets/gplaypattern.png); + background-image: url(https://cdn.rawgit.com/dokku/dokku/v0.6.0/docs/assets/gplaypattern.png); padding: 45px 0; text-align: center; } diff --git a/docs/assets/versions.json b/docs/assets/versions.json index f35bbef6f..d2f95a4a6 100644 --- a/docs/assets/versions.json +++ b/docs/assets/versions.json @@ -2,6 +2,7 @@ "max-versions": [ "0.3.26", "0.4.14", - "0.5.8" + "0.5.8", + "0.6.0" ] } diff --git a/docs/development/release-process.md b/docs/development/release-process.md index 3c6935bea..24c7330d8 100644 --- a/docs/development/release-process.md +++ b/docs/development/release-process.md @@ -66,7 +66,7 @@ The workflow looks like this: ```shell # having dokku-arch in ../dokku-arch vagrant up build-arch -# wait for "==> build-arch: ==> Finished making: dokku 0.5.8-2 (Mon Feb 22 23:20:37 CET 2016)" +# wait for "==> build-arch: ==> Finished making: dokku 0.6.0-2 (Mon Feb 22 23:20:37 CET 2016)" cd ../dokku-arch git add PKGBUILD .SRCINFO git commit -m 'Update to dokku 0.9.9' diff --git a/docs/home.html b/docs/home.html index 325fe3833..ab2d4aaa8 100644 --- a/docs/home.html +++ b/docs/home.html @@ -10,30 +10,30 @@ Dokku - The smallest PaaS implementation you've ever seen - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - + + - + @@ -95,12 +95,12 @@

$ - wget https://raw.githubusercontent.com/dokku/dokku/v0.5.8/bootstrap.sh + wget https://raw.githubusercontent.com/dokku/dokku/v0.6.0/bootstrap.sh

$ - sudo DOKKU_TAG=v0.5.8 bash bootstrap.sh + sudo DOKKU_TAG=v0.6.0 bash bootstrap.sh

 # go to your server's IP and follow the web installer diff --git a/docs/installation.md b/docs/installation.md index 3591e3ac8..e380861a3 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -21,8 +21,8 @@ To install the latest stable version of dokku, you can run the following shell c ```shell # for debian systems, installs dokku via apt-get -wget https://raw.githubusercontent.com/dokku/dokku/v0.5.8/bootstrap.sh -sudo DOKKU_TAG=v0.5.8 bash bootstrap.sh +wget https://raw.githubusercontent.com/dokku/dokku/v0.6.0/bootstrap.sh +sudo DOKKU_TAG=v0.6.0 bash bootstrap.sh ``` The installation process takes about 5-10 minutes, depending upon internet connection speed. diff --git a/docs/proxy.md b/docs/proxy.md index 2fcbd2256..6a102def3 100644 --- a/docs/proxy.md +++ b/docs/proxy.md @@ -1,6 +1,7 @@ # Proxy plugin > New as of 0.5.0 +> Port handling functionality is new as of 0.6.0 As of dokku 0.5.0, the proxy functionality has been decoupled from the nginx-vhosts plugin into the proxy plugin. In the future this will allow other proxy software (HAproxy for example) to be used instead of nginx. diff --git a/docs/template.html b/docs/template.html index e1c2249a1..24ed75ccc 100644 --- a/docs/template.html +++ b/docs/template.html @@ -10,26 +10,26 @@ Dokku - The smallest PaaS implementation you've ever seen - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - + + - +