diff --git a/HISTORY.md b/HISTORY.md index 5a498f501..e99f0ae1a 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,40 @@ # History +## 0.5.7 + +0.5.7 includes quite a few documentation updates, and a few minor changes in how we handle certain edge-cases in day-to-day dokku tasks. + +Thanks to all the contributors who helped with this release! + +### Bug Fixes + +- #2157: @michaelshobbs test detached container is running +- #2170: @jvanbaarsen Do not fail domains:add when adding a duplicated domain +- #2171: @tobru Continue to restore applications during boot when any given application does not start +- #2173: @michaelshobbs Add test for ps:restore with undeployed app +- #2202: @michaelshobbs Attempt to bypass inconsistencies in nginx start behavior + +### New Features + +- #2155: @josegonzalez Add the ability to run containers in detached mode +- #2163: @michaelshobbs Support deployment of arbitrary docker images not built by dokku build +- #2175: @michaelshobbs Show available types and ids on dokku enter error +- #2193: @josegonzalez Upgrade herokuish version built via deb packaging +- #2203: Allow specifying NO_INSTALL_RECOMMENDS via DOKKU_NO_INSTALL_RECOMMENDS in bootstrapped installs + +### Documentation + +- #2164: @iloveitaly Adding longtimeout and hostname to dokku plugin list +- #2167: @iloveitaly Adding link to rollbar plugin +- #2182: @cu12 Add link to FakeSNS plugin +- #2183: @Epigene Update nginx docs to mirror generated nginx.conf from core +- #2187: @pltchuong Add missing trigger to plugin triggers documentation +- #2190: @cu12 Add ElasticMQ plugin to documentation +- #2191: @josegonzalez Clarify upgrade docs for bootstrap.sh installations +- #2192: @josegonzalez Clarify that the checks are only run against the web process +- #2194: @josegonzalez Clarify the role of process types for buildpack deployment +- #2195: @josegonzalez Clarify when certain plugin triggers are invoked + ## 0.5.6 Release 0.5.6 is mostly a documentation release. Please note, however, that we now inject application environment variables into sigil-generated nginx configurations. You can use this to further improve your generated nginx configuration files. diff --git a/README.md b/README.md index 884209e48..c3a16900b 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,8 @@ Docker powered mini-Heroku. The smallest PaaS implementation you've ever seen. S 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.6/bootstrap.sh - sudo DOKKU_TAG=v0.5.6 bash bootstrap.sh + wget https://raw.githubusercontent.com/dokku/dokku/v0.5.7/bootstrap.sh + sudo DOKKU_TAG=v0.5.7 bash bootstrap.sh ### Upgrading diff --git a/contrib/dokku-installer.py b/contrib/dokku-installer.py index 13356f920..0e51cab4f 100755 --- a/contrib/dokku-installer.py +++ b/contrib/dokku-installer.py @@ -9,7 +9,7 @@ import subprocess import sys import threading -VERSION = 'v0.5.6' +VERSION = 'v0.5.7' hostname = '' try: diff --git a/debian/control b/debian/control index c3f25bddd..b6ffa0e0e 100644 --- a/debian/control +++ b/debian/control @@ -1,5 +1,5 @@ Package: dokku -Version: 0.5.6 +Version: 0.5.7 Section: web Priority: optional Architecture: amd64 diff --git a/docs/assets/favicons/browserconfig.xml b/docs/assets/favicons/browserconfig.xml index 8df74c2d6..b86ccc6ad 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 e5abdca48..00ffe4858 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.6\/docs\/assets\/favicons\/android-chrome-36x36.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.5.7\/docs\/assets\/favicons\/android-chrome-36x36.png", "sizes": "36x36", "type": "image\/png", "density": "0.75" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.5.6\/docs\/assets\/favicons\/android-chrome-48x48.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.5.7\/docs\/assets\/favicons\/android-chrome-48x48.png", "sizes": "48x48", "type": "image\/png", "density": "1.0" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.5.6\/docs\/assets\/favicons\/android-chrome-72x72.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.5.7\/docs\/assets\/favicons\/android-chrome-72x72.png", "sizes": "72x72", "type": "image\/png", "density": "1.5" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.5.6\/docs\/assets\/favicons\/android-chrome-96x96.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.5.7\/docs\/assets\/favicons\/android-chrome-96x96.png", "sizes": "96x96", "type": "image\/png", "density": "2.0" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.5.6\/docs\/assets\/favicons\/android-chrome-144x144.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.5.7\/docs\/assets\/favicons\/android-chrome-144x144.png", "sizes": "144x144", "type": "image\/png", "density": "3.0" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.5.6\/docs\/assets\/favicons\/android-chrome-192x192.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.5.7\/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 8e1b7375c..4c3591787 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.6/docs/assets/dokku.png); + background-image: url(https://cdn.rawgit.com/dokku/dokku/v0.5.7/docs/assets/dokku.png); text-indent: 40px; } .blurb { color: #424242; background-color: #ededed; - background-image: url(https://cdn.rawgit.com/dokku/dokku/v0.5.6/docs/assets/gplaypattern.png); + background-image: url(https://cdn.rawgit.com/dokku/dokku/v0.5.7/docs/assets/gplaypattern.png); padding: 45px 0; text-align: center; } @@ -230,6 +230,15 @@ a.list-group-item { margin-top: 2em; text-transform: uppercase; } +.table-of-contents { + font-size: 0.8em; + padding: 1em; + margin: 0 0 0.5em 0.5em; +} +.table-of-contents ul { + margin-bottom: 0; + padding-left: 20px; +} .anchorjs-link { color: #24cbce; } diff --git a/docs/assets/versions.json b/docs/assets/versions.json index 78c3570cc..97f294a00 100644 --- a/docs/assets/versions.json +++ b/docs/assets/versions.json @@ -2,6 +2,6 @@ "max-versions": [ "0.3.26", "0.4.14", - "0.5.6" + "0.5.7" ] } diff --git a/docs/development/release-process.md b/docs/development/release-process.md index 44535c323..14b50a451 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.6-2 (Mon Feb 22 23:20:37 CET 2016)" +# wait for "==> build-arch: ==> Finished making: dokku 0.5.7-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 3e4592a0a..d298bf44b 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.6/bootstrap.sh + wget https://raw.githubusercontent.com/dokku/dokku/v0.5.7/bootstrap.sh

$ - sudo DOKKU_TAG=v0.5.6 bash bootstrap.sh + sudo DOKKU_TAG=v0.5.7 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 310c4eb77..a72ccfbdc 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.6/bootstrap.sh -sudo DOKKU_TAG=v0.5.6 bash bootstrap.sh +wget https://raw.githubusercontent.com/dokku/dokku/v0.5.7/bootstrap.sh +sudo DOKKU_TAG=v0.5.7 bash bootstrap.sh ``` The installation process takes about 5-10 minutes, depending upon internet connection speed. diff --git a/docs/template.html b/docs/template.html index 69dd031a6..fbe257374 100644 --- a/docs/template.html +++ b/docs/template.html @@ -10,26 +10,26 @@ Dokku - The smallest PaaS implementation you've ever seen - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - + + - + diff --git a/plugins/00_dokku-standard/plugin.toml b/plugins/00_dokku-standard/plugin.toml index 19f39e794..05d39646f 100644 --- a/plugins/00_dokku-standard/plugin.toml +++ b/plugins/00_dokku-standard/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core standard plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/20_events/plugin.toml b/plugins/20_events/plugin.toml index 1502ed9af..e23c32bc2 100644 --- a/plugins/20_events/plugin.toml +++ b/plugins/20_events/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core events logging plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/apps/plugin.toml b/plugins/apps/plugin.toml index c69436aa5..5e4bab40d 100644 --- a/plugins/apps/plugin.toml +++ b/plugins/apps/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core apps plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/build-env/plugin.toml b/plugins/build-env/plugin.toml index b6e87557c..8666cf0c9 100644 --- a/plugins/build-env/plugin.toml +++ b/plugins/build-env/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core build-env plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/certs/plugin.toml b/plugins/certs/plugin.toml index 4b0b12083..573f00787 100644 --- a/plugins/certs/plugin.toml +++ b/plugins/certs/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core certificate management plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/checks/plugin.toml b/plugins/checks/plugin.toml index 0dfcb20ef..d61bcad15 100644 --- a/plugins/checks/plugin.toml +++ b/plugins/checks/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core checks plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/common/plugin.toml b/plugins/common/plugin.toml index 89c5de82d..152ae59c2 100644 --- a/plugins/common/plugin.toml +++ b/plugins/common/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core common plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/config/plugin.toml b/plugins/config/plugin.toml index 7e235e409..75713c509 100644 --- a/plugins/config/plugin.toml +++ b/plugins/config/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core config plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/docker-options/plugin.toml b/plugins/docker-options/plugin.toml index 2a0bb82de..3c8789cda 100644 --- a/plugins/docker-options/plugin.toml +++ b/plugins/docker-options/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core docker-options plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/domains/plugin.toml b/plugins/domains/plugin.toml index 0f4a2cba0..b6413a2ad 100644 --- a/plugins/domains/plugin.toml +++ b/plugins/domains/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core domains plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/enter/plugin.toml b/plugins/enter/plugin.toml index 6c1e0de90..12d4f9823 100644 --- a/plugins/enter/plugin.toml +++ b/plugins/enter/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core enter plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/git/plugin.toml b/plugins/git/plugin.toml index d5c76456c..b2b9c59bc 100644 --- a/plugins/git/plugin.toml +++ b/plugins/git/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core git plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/logs/plugin.toml b/plugins/logs/plugin.toml index 4fb2c11df..b401cf9ea 100644 --- a/plugins/logs/plugin.toml +++ b/plugins/logs/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core logs plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/named-containers/plugin.toml b/plugins/named-containers/plugin.toml index f532e2de4..5a8582cd6 100644 --- a/plugins/named-containers/plugin.toml +++ b/plugins/named-containers/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core named containers plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/nginx-vhosts/plugin.toml b/plugins/nginx-vhosts/plugin.toml index e50761e8c..ab88943f0 100644 --- a/plugins/nginx-vhosts/plugin.toml +++ b/plugins/nginx-vhosts/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core nginx-vhosts plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/plugin/plugin.toml b/plugins/plugin/plugin.toml index e5c9616d1..2cda15936 100644 --- a/plugins/plugin/plugin.toml +++ b/plugins/plugin/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core plugin plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/proxy/plugin.toml b/plugins/proxy/plugin.toml index 4ea3a6479..027c59e13 100644 --- a/plugins/proxy/plugin.toml +++ b/plugins/proxy/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core proxy plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/ps/plugin.toml b/plugins/ps/plugin.toml index 58b78564f..781c33a8c 100644 --- a/plugins/ps/plugin.toml +++ b/plugins/ps/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core ps plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/shell/plugin.toml b/plugins/shell/plugin.toml index 973656e29..8a9f6a05f 100644 --- a/plugins/shell/plugin.toml +++ b/plugins/shell/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core shell plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/storage/plugin.toml b/plugins/storage/plugin.toml index a2a81a1fd..959b8b4c3 100644 --- a/plugins/storage/plugin.toml +++ b/plugins/storage/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core storage plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/tags/plugin.toml b/plugins/tags/plugin.toml index fa034aa24..35b5e9698 100644 --- a/plugins/tags/plugin.toml +++ b/plugins/tags/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core tags plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config] diff --git a/plugins/tar/plugin.toml b/plugins/tar/plugin.toml index 6ddaf61bb..9f354d4fe 100644 --- a/plugins/tar/plugin.toml +++ b/plugins/tar/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku core tar plugin" -version = "0.5.6" +version = "0.5.7" [plugin.config]