diff --git a/HISTORY.md b/HISTORY.md index 45894ba88..5ab41c12e 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,59 @@ # History +## 0.10.0 + +### Bug Fixes + +- #2820: @josegonzalez Require netcat in debian packaging +- #2774: @fruitl00p Include docker-options in the default `dokku` +- #2778: @zarqman Fix /etc/logrotate.d/dokku on debian +- #2747: @ebeigarts Update herokuish base image on updates using --pull +- #2739: @josegonzalez Use listener_port in nginx.conf.sigil +- #2735: @josegonzalez Ensure we can call ps:report without specifying an application +- #2733: @josegonzalez Add support for new docker package names +- #2730: @weyert Ignore the cache directory when cloning an app +- #2723: @weyert Call non-deprecated plugin:list method + +### New Features + +- #2803: @iSDP Adding related articles on the Docker Image Deployment page +- #2798: @znz Update CURL_CONNECT_TIMEOUT in docs +- #2795: @josegonzalez docs: Add documentation around adding build-time configuration variables +- #2791: @yazinsai Correct typo in persistent storage docs +- #2789: @h4ckninja Subject-verb agreement +- #2790: @flyinggrizzly Add entry for insecure connection issue in Rails +- #2788: @josegonzalez Flesh out uninstallation documentation +- #2784: @josegonzalez Document special dokku environment variables +- #2773: @znz Update year in footer [ci skip] +- #2768: @znz Ubuntu 12.04 is EOL +- #2769: @lucianopf Fix SlackButton for mobile devices. +- #2763: @ZiadSalah Update vagrant documentation for windows users +- #2764: @joshmanders Create PULL_REQUEST_TEMPLATE.md +- #2758: @AxelTheGerman Update doc location for dokku-git-rev community plugin +- #2757: @nodanaonlyzuul Fix typo from "To use a dockerfiles" to "To use a dockerfile" singular +- #2753: @abrkn Use short-hand method for shutting down all applications in upgrade docs +- #2746: @josegonzalez Add redirect for installation to advanced install docs +- #2738: @josegonzalez Add missing `NO_SSL_SERVER_NAME` to example template +- #2457: @john-doherty Update Digitalocean installation instructions +- #2725: @timaschew Fix typo in application management docs +- #2719: @joshco Clarify that nginx.conf.sigil must be committed to repository +- #2715: @josegonzalez Use urls that are linkable on github + +### Documentation + +- #2822: @josegonzalez refactor: allow skipping cleanup on a per-application basis +- #2754: @fzerorubigd Add support for set DOKKU_IMAGE per app +- #2815: @markstory Add stickler-ci configuration. +- #2809: @oliw Remove aufs step from Makefile +- #2785: @josegonzalez Add a release-plugin binary +- #2777: @stokarenko Turn on ps-post-stop hook. +- #2781: @fruitl00p Adds docker.io support +- #2766: @josegonzalez Upgrade to herokuish 0.3.29 +- #2765: @josegonzalez Install python3-software-properties as an alternative to python-software-properties +- #2642: @chiedo Added better default nginx error pages +- #2678: @callahad Default to secure PCI-compliant SSL setup +- #2734: @josegonzalez Allow quieter report output + ## 0.9.4 ### Documentation diff --git a/README.md b/README.md index 282e51b38..67a10dd5f 100644 --- a/README.md +++ b/README.md @@ -99,8 +99,8 @@ A fresh VM running any of the following operating systems: To install the latest stable release, run the following commands as a user who has access to `sudo`: ```shell -wget https://raw.githubusercontent.com/dokku/dokku/v0.9.4/bootstrap.sh -sudo DOKKU_TAG=v0.9.4 bash bootstrap.sh +wget https://raw.githubusercontent.com/dokku/dokku/v0.10.0/bootstrap.sh +sudo DOKKU_TAG=v0.10.0 bash bootstrap.sh ``` You can then proceed to the ip address or domain name associated with your server to complete the web-based installation. diff --git a/contrib/dokku-installer.py b/contrib/dokku-installer.py index 1a153ea68..6daeaa6e3 100755 --- a/contrib/dokku-installer.py +++ b/contrib/dokku-installer.py @@ -10,7 +10,7 @@ import subprocess import sys import threading -VERSION = 'v0.9.4' +VERSION = 'v0.10.0' hostname = '' try: diff --git a/debian/control b/debian/control index 0178c0d7f..fff329fc5 100644 --- a/debian/control +++ b/debian/control @@ -1,5 +1,5 @@ Package: dokku -Version: 0.9.4 +Version: 0.10.0 Section: web Priority: optional Architecture: amd64 diff --git a/docs/advanced-usage/plugin-management.md b/docs/advanced-usage/plugin-management.md index ef28f810d..eb21c18c4 100644 --- a/docs/advanced-usage/plugin-management.md +++ b/docs/advanced-usage/plugin-management.md @@ -31,30 +31,30 @@ dokku plugin ``` plugn: dev - 00_dokku-standard 0.9.4 enabled dokku core standard plugin - 20_events 0.9.4 enabled dokku core events logging plugin - apps 0.9.4 enabled dokku core apps plugin - build-env 0.9.4 enabled dokku core build-env plugin - certs 0.9.4 enabled dokku core certificate management plugin - checks 0.9.4 enabled dokku core checks plugin - common 0.9.4 enabled dokku core common plugin - config 0.9.4 enabled dokku core config plugin - docker-options 0.9.4 enabled dokku core docker-options plugin - domains 0.9.4 enabled dokku core domains plugin - enter 0.9.4 enabled dokku core enter plugin - git 0.9.4 enabled dokku core git plugin - logs 0.9.4 enabled dokku core logs plugin - named-containers 0.9.4 enabled dokku core named containers plugin - nginx-vhosts 0.9.4 enabled dokku core nginx-vhosts plugin - plugin 0.9.4 enabled dokku core plugin plugin - proxy 0.9.4 enabled dokku core proxy plugin - ps 0.9.4 enabled dokku core ps plugin - repo 0.9.4 enabled dokku core repo plugin - shell 0.9.4 enabled dokku core shell plugin - ssh-keys 0.9.4 enabled dokku core ssh-keys plugin - storage 0.9.4 enabled dokku core storage plugin - tags 0.9.4 enabled dokku core tags plugin - tar 0.9.4 enabled dokku core tar plugin + 00_dokku-standard 0.10.0 enabled dokku core standard plugin + 20_events 0.10.0 enabled dokku core events logging plugin + apps 0.10.0 enabled dokku core apps plugin + build-env 0.10.0 enabled dokku core build-env plugin + certs 0.10.0 enabled dokku core certificate management plugin + checks 0.10.0 enabled dokku core checks plugin + common 0.10.0 enabled dokku core common plugin + config 0.10.0 enabled dokku core config plugin + docker-options 0.10.0 enabled dokku core docker-options plugin + domains 0.10.0 enabled dokku core domains plugin + enter 0.10.0 enabled dokku core enter plugin + git 0.10.0 enabled dokku core git plugin + logs 0.10.0 enabled dokku core logs plugin + named-containers 0.10.0 enabled dokku core named containers plugin + nginx-vhosts 0.10.0 enabled dokku core nginx-vhosts plugin + plugin 0.10.0 enabled dokku core plugin plugin + proxy 0.10.0 enabled dokku core proxy plugin + ps 0.10.0 enabled dokku core ps plugin + repo 0.10.0 enabled dokku core repo plugin + shell 0.10.0 enabled dokku core shell plugin + ssh-keys 0.10.0 enabled dokku core ssh-keys plugin + storage 0.10.0 enabled dokku core storage plugin + tags 0.10.0 enabled dokku core tags plugin + tar 0.10.0 enabled dokku core tar plugin ``` Installing a plugin is easy as well using the `plugin:install` command. This command will also trigger the `install` pluginhook on all existing plugins. diff --git a/docs/assets/favicons/browserconfig.xml b/docs/assets/favicons/browserconfig.xml index 76a478dfa..12cbd9a71 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 c3c4b0d8d..81b575c46 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.9.4\/docs\/assets\/favicons\/android-chrome-36x36.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.10.0\/docs\/assets\/favicons\/android-chrome-36x36.png", "sizes": "36x36", "type": "image\/png", "density": "0.75" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.9.4\/docs\/assets\/favicons\/android-chrome-48x48.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.10.0\/docs\/assets\/favicons\/android-chrome-48x48.png", "sizes": "48x48", "type": "image\/png", "density": "1.0" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.9.4\/docs\/assets\/favicons\/android-chrome-72x72.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.10.0\/docs\/assets\/favicons\/android-chrome-72x72.png", "sizes": "72x72", "type": "image\/png", "density": "1.5" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.9.4\/docs\/assets\/favicons\/android-chrome-96x96.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.10.0\/docs\/assets\/favicons\/android-chrome-96x96.png", "sizes": "96x96", "type": "image\/png", "density": "2.0" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.9.4\/docs\/assets\/favicons\/android-chrome-144x144.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.10.0\/docs\/assets\/favicons\/android-chrome-144x144.png", "sizes": "144x144", "type": "image\/png", "density": "3.0" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.9.4\/docs\/assets\/favicons\/android-chrome-192x192.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.10.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 bb0bc9e81..70b63c7e2 100644 --- a/docs/assets/style.css +++ b/docs/assets/style.css @@ -35,13 +35,13 @@ h1 { background-repeat: no-repeat; } .header .navbar-brand a { - background-image: url(https://cdn.rawgit.com/dokku/dokku/v0.9.4/docs/assets/dokku.png); + background-image: url(https://cdn.rawgit.com/dokku/dokku/v0.10.0/docs/assets/dokku.png); text-indent: 40px; } .blurb { color: #424242; background-color: #ededed; - background-image: url(https://cdn.rawgit.com/dokku/dokku/v0.9.4/docs/assets/gplaypattern.png); + background-image: url(https://cdn.rawgit.com/dokku/dokku/v0.10.0/docs/assets/gplaypattern.png); padding: 45px 0; text-align: center; } diff --git a/docs/assets/versions.json b/docs/assets/versions.json index 4dfd3da4c..54c8e140d 100644 --- a/docs/assets/versions.json +++ b/docs/assets/versions.json @@ -6,6 +6,7 @@ "0.6.5", "0.7.2", "0.8.2", - "0.9.4" + "0.9.4", + "0.10.0" ] } diff --git a/docs/development/release-process.md b/docs/development/release-process.md index 105ed8e80..852580cb8 100644 --- a/docs/development/release-process.md +++ b/docs/development/release-process.md @@ -67,7 +67,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.9.4-2 (Mon Feb 22 23:20:37 CET 2016)" +# wait for "==> build-arch: ==> Finished making: dokku 0.10.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/getting-started/installation.md b/docs/getting-started/installation.md index 23eb62619..3b60b7ce3 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/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.9.4/bootstrap.sh; -sudo DOKKU_TAG=v0.9.4 bash bootstrap.sh +wget https://raw.githubusercontent.com/dokku/dokku/v0.10.0/bootstrap.sh; +sudo DOKKU_TAG=v0.10.0 bash bootstrap.sh ``` The installation process takes about 5-10 minutes, depending upon internet connection speed. diff --git a/docs/home.html b/docs/home.html index 6a77113d2..6582b2444 100644 --- a/docs/home.html +++ b/docs/home.html @@ -10,30 +10,30 @@ Dokku - The smallest PaaS implementation you've ever seen - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - + + - + @@ -98,12 +98,12 @@

$ - wget https://raw.githubusercontent.com/dokku/dokku/v0.9.4/bootstrap.sh + wget https://raw.githubusercontent.com/dokku/dokku/v0.10.0/bootstrap.sh

$ - sudo DOKKU_TAG=v0.9.4 bash bootstrap.sh + sudo DOKKU_TAG=v0.10.0 bash bootstrap.sh

 # go to your server's IP and follow the web installer diff --git a/docs/template.html b/docs/template.html index ffc6ec793..3535a95d4 100644 --- a/docs/template.html +++ b/docs/template.html @@ -9,26 +9,26 @@ Dokku - The smallest PaaS implementation you've ever seen - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - + + - +