From 1d2549e7d7092e820bfaa0e42cb1f1da7fa2f4d4 Mon Sep 17 00:00:00 2001 From: Dokku Bot Date: Wed, 13 Mar 2024 03:24:14 +0000 Subject: [PATCH 1/2] Release 0.33.9 # History ## 0.33.9 Install/update via the bootstrap script: ```shell wget -NP . https://dokku.com/install/v0.33.9/bootstrap.sh sudo DOKKU_TAG=v0.33.9 bash bootstrap.sh ``` ### Bug Fixes - #6695: @josegonzalez Do not attempt to install both k3s and traefik - #6687: @josegonzalez Correct issue where ClusterTriggerAuthentication objects were filtered based on prefix - #6686: @josegonzalez Validate input for the autoscaling-auth:set command - #6678: @josegonzalez Handle case where most builders didn't detect amd64 images on arm64 - #6677: @josegonzalez Handle case where keda isn't installed properly - #6676: @josegonzalez Drop extra logging call from app-json plugin - #6674: @josegonzalez Remove systemd reverse dependency by dropping software-properties-common ### New Features - #6698: @josegonzalez Upgrade ingress-nginx - #6588: @taraszka Add extra tags to every image dokku push when push-extra-tags are set - #6680: @josegonzalez Wait until helm charts are installed before marking a deploy as failed or completed ### Documentation - #6699: @josegonzalez Add a placeholder migration guide for 0.33.0 - #6682: @josegonzalez Fix reference to formation key in autoscaling example ### Tests - #6696: @josegonzalez Run k3s tests with a specified server ip - #6679: @josegonzalez Split out k3s tests to speed up ci ### Dependencies - #6697: @dependabot[bot] chore(deps): bump timberio/vector from 0.36.0-debian to 0.36.1-debian in /plugins/logs - #6685: @dependabot[bot] chore(deps): bump github.com/go-jose/go-jose/v3 from 3.0.1 to 3.0.3 in /plugins/scheduler-k3s - #6692: @dependabot[bot] chore(deps): bump packaging from 23.2 to 24.0 in /docs/_build - #6693: @dependabot[bot] chore(deps): bump tj-actions/changed-files from 42.0.7 to 42.1.0 - #6689: @dependabot[bot] chore(deps): bump tj-actions/changed-files from 42.0.6 to 42.0.7 - #6683: @dependabot[bot] chore(deps): bump importlib-metadata from 7.0.1 to 7.0.2 in /docs/_build - #6684: @dependabot[bot] chore(deps): bump tj-actions/changed-files from 42.0.5 to 42.0.6 --- HISTORY.md | 45 +++++++++++++++++ README.md | 4 +- debian/control | 2 +- docs/advanced-usage/plugin-management.md | 58 +++++++++++----------- docs/assets/favicons/browserconfig.xml | 8 +-- docs/assets/favicons/manifest.json | 12 ++--- docs/assets/versions.json | 2 +- docs/development/release-process.md | 2 +- docs/getting-started/install/docker.md | 6 +-- docs/getting-started/installation/index.md | 4 +- docs/home.html | 50 +++++++++---------- docs/template.html | 36 +++++++------- plugins/00_dokku-standard/plugin.toml | 2 +- plugins/20_events/plugin.toml | 2 +- plugins/app-json/plugin.toml | 2 +- plugins/apps/plugin.toml | 2 +- plugins/builder-dockerfile/plugin.toml | 2 +- plugins/builder-herokuish/plugin.toml | 2 +- plugins/builder-lambda/plugin.toml | 2 +- plugins/builder-nixpacks/plugin.toml | 2 +- plugins/builder-null/plugin.toml | 2 +- plugins/builder-pack/plugin.toml | 2 +- plugins/builder/plugin.toml | 2 +- plugins/buildpacks/plugin.toml | 2 +- plugins/caddy-vhosts/plugin.toml | 2 +- plugins/certs/plugin.toml | 2 +- plugins/checks/plugin.toml | 2 +- plugins/common/plugin.toml | 2 +- plugins/config/plugin.toml | 2 +- plugins/cron/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/haproxy-vhosts/plugin.toml | 2 +- plugins/logs/plugin.toml | 2 +- plugins/network/plugin.toml | 2 +- plugins/nginx-vhosts/plugin.toml | 2 +- plugins/openresty-vhosts/plugin.toml | 2 +- plugins/plugin/plugin.toml | 2 +- plugins/ports/plugin.toml | 2 +- plugins/proxy/plugin.toml | 2 +- plugins/ps/plugin.toml | 2 +- plugins/registry/plugin.toml | 2 +- plugins/repo/plugin.toml | 2 +- plugins/resource/plugin.toml | 2 +- plugins/run/plugin.toml | 2 +- plugins/scheduler-docker-local/plugin.toml | 2 +- plugins/scheduler-k3s/plugin.toml | 2 +- plugins/scheduler-null/plugin.toml | 2 +- plugins/scheduler/plugin.toml | 2 +- plugins/shell/plugin.toml | 2 +- plugins/ssh-keys/plugin.toml | 2 +- plugins/storage/plugin.toml | 2 +- plugins/trace/plugin.toml | 2 +- plugins/traefik-vhosts/plugin.toml | 2 +- 56 files changed, 181 insertions(+), 136 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 7b5075cb671..d33208310cc 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,50 @@ # History +## 0.33.9 + +Install/update via the bootstrap script: + +```shell +wget -NP . https://dokku.com/install/v0.33.9/bootstrap.sh +sudo DOKKU_TAG=v0.33.9 bash bootstrap.sh +``` + +### Bug Fixes + +- #6695: @josegonzalez Do not attempt to install both k3s and traefik +- #6687: @josegonzalez Correct issue where ClusterTriggerAuthentication objects were filtered based on prefix +- #6686: @josegonzalez Validate input for the autoscaling-auth:set command +- #6678: @josegonzalez Handle case where most builders didn't detect amd64 images on arm64 +- #6677: @josegonzalez Handle case where keda isn't installed properly +- #6676: @josegonzalez Drop extra logging call from app-json plugin +- #6674: @josegonzalez Remove systemd reverse dependency by dropping software-properties-common + +### New Features + +- #6698: @josegonzalez Upgrade ingress-nginx +- #6588: @taraszka Add extra tags to every image dokku push when push-extra-tags are set +- #6680: @josegonzalez Wait until helm charts are installed before marking a deploy as failed or completed + +### Documentation + +- #6699: @josegonzalez Add a placeholder migration guide for 0.33.0 +- #6682: @josegonzalez Fix reference to formation key in autoscaling example + +### Tests + +- #6696: @josegonzalez Run k3s tests with a specified server ip +- #6679: @josegonzalez Split out k3s tests to speed up ci + +### Dependencies + +- #6697: @dependabot[bot] chore(deps): bump timberio/vector from 0.36.0-debian to 0.36.1-debian in /plugins/logs +- #6685: @dependabot[bot] chore(deps): bump github.com/go-jose/go-jose/v3 from 3.0.1 to 3.0.3 in /plugins/scheduler-k3s +- #6692: @dependabot[bot] chore(deps): bump packaging from 23.2 to 24.0 in /docs/_build +- #6693: @dependabot[bot] chore(deps): bump tj-actions/changed-files from 42.0.7 to 42.1.0 +- #6689: @dependabot[bot] chore(deps): bump tj-actions/changed-files from 42.0.6 to 42.0.7 +- #6683: @dependabot[bot] chore(deps): bump importlib-metadata from 7.0.1 to 7.0.2 in /docs/_build +- #6684: @dependabot[bot] chore(deps): bump tj-actions/changed-files from 42.0.5 to 42.0.6 + ## 0.33.8 Install/update via the bootstrap script: diff --git a/README.md b/README.md index b2e0d70da4e..40dd4c6e59c 100644 --- a/README.md +++ b/README.md @@ -86,8 +86,8 @@ Otherwise, you will need to import the keypair manually after installation using To install the latest stable release, run the following commands as a user who has access to `sudo`: ```shell -wget -NP . https://dokku.com/install/v0.33.8/bootstrap.sh -sudo DOKKU_TAG=v0.33.8 bash bootstrap.sh +wget -NP . https://dokku.com/install/v0.33.9/bootstrap.sh +sudo DOKKU_TAG=v0.33.9 bash bootstrap.sh ``` You can then proceed to configure your server domain (via `dokku domains:set-global`) and user access (via `dokku ssh-keys:add`) to complete the installation. diff --git a/debian/control b/debian/control index ef129902dd2..6732b9fbc2e 100644 --- a/debian/control +++ b/debian/control @@ -1,5 +1,5 @@ Package: dokku -Version: 0.33.8 +Version: 0.33.9 Section: web Priority: optional Architecture: amd64 diff --git a/docs/advanced-usage/plugin-management.md b/docs/advanced-usage/plugin-management.md index 6ce16ff88b2..a78987851df 100644 --- a/docs/advanced-usage/plugin-management.md +++ b/docs/advanced-usage/plugin-management.md @@ -36,35 +36,35 @@ dokku plugin:list ``` plugn: dev - 00_dokku-standard 0.33.8 enabled dokku core standard plugin - 20_events 0.33.8 enabled dokku core events logging plugin - app-json 0.33.8 enabled dokku core app-json plugin - apps 0.33.8 enabled dokku core apps plugin - build-env 0.33.8 enabled dokku core build-env plugin - buildpacks 0.33.8 enabled dokku core buildpacks plugin - certs 0.33.8 enabled dokku core certificate management plugin - checks 0.33.8 enabled dokku core checks plugin - common 0.33.8 enabled dokku core common plugin - config 0.33.8 enabled dokku core config plugin - docker-options 0.33.8 enabled dokku core docker-options plugin - domains 0.33.8 enabled dokku core domains plugin - enter 0.33.8 enabled dokku core enter plugin - git 0.33.8 enabled dokku core git plugin - logs 0.33.8 enabled dokku core logs plugin - network 0.33.8 enabled dokku core network plugin - nginx-vhosts 0.33.8 enabled dokku core nginx-vhosts plugin - plugin 0.33.8 enabled dokku core plugin plugin - proxy 0.33.8 enabled dokku core proxy plugin - ps 0.33.8 enabled dokku core ps plugin - repo 0.33.8 enabled dokku core repo plugin - resource 0.33.8 enabled dokku core resource plugin - scheduler-docker-local 0.33.8 enabled dokku core scheduler-docker-local plugin - shell 0.33.8 enabled dokku core shell plugin - ssh-keys 0.33.8 enabled dokku core ssh-keys plugin - storage 0.33.8 enabled dokku core storage plugin - tags 0.33.8 enabled dokku core tags plugin - tar 0.33.8 enabled dokku core tar plugin - trace 0.33.8 enabled dokku core trace plugin + 00_dokku-standard 0.33.9 enabled dokku core standard plugin + 20_events 0.33.9 enabled dokku core events logging plugin + app-json 0.33.9 enabled dokku core app-json plugin + apps 0.33.9 enabled dokku core apps plugin + build-env 0.33.9 enabled dokku core build-env plugin + buildpacks 0.33.9 enabled dokku core buildpacks plugin + certs 0.33.9 enabled dokku core certificate management plugin + checks 0.33.9 enabled dokku core checks plugin + common 0.33.9 enabled dokku core common plugin + config 0.33.9 enabled dokku core config plugin + docker-options 0.33.9 enabled dokku core docker-options plugin + domains 0.33.9 enabled dokku core domains plugin + enter 0.33.9 enabled dokku core enter plugin + git 0.33.9 enabled dokku core git plugin + logs 0.33.9 enabled dokku core logs plugin + network 0.33.9 enabled dokku core network plugin + nginx-vhosts 0.33.9 enabled dokku core nginx-vhosts plugin + plugin 0.33.9 enabled dokku core plugin plugin + proxy 0.33.9 enabled dokku core proxy plugin + ps 0.33.9 enabled dokku core ps plugin + repo 0.33.9 enabled dokku core repo plugin + resource 0.33.9 enabled dokku core resource plugin + scheduler-docker-local 0.33.9 enabled dokku core scheduler-docker-local plugin + shell 0.33.9 enabled dokku core shell plugin + ssh-keys 0.33.9 enabled dokku core ssh-keys plugin + storage 0.33.9 enabled dokku core storage plugin + tags 0.33.9 enabled dokku core tags plugin + tar 0.33.9 enabled dokku core tar plugin + trace 0.33.9 enabled dokku core trace plugin ``` > [!WARNING] diff --git a/docs/assets/favicons/browserconfig.xml b/docs/assets/favicons/browserconfig.xml index 6bae0cc61e9..e7978d9bd06 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 c4c0a318a6d..0a5d4119e4b 100644 --- a/docs/assets/favicons/manifest.json +++ b/docs/assets/favicons/manifest.json @@ -2,37 +2,37 @@ "name": "Dokku", "icons": [ { - "src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.33.8\/docs\/assets\/favicons\/android-chrome-36x36.png", + "src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.33.9\/docs\/assets\/favicons\/android-chrome-36x36.png", "sizes": "36x36", "type": "image\/png", "density": "0.75" }, { - "src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.33.8\/docs\/assets\/favicons\/android-chrome-48x48.png", + "src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.33.9\/docs\/assets\/favicons\/android-chrome-48x48.png", "sizes": "48x48", "type": "image\/png", "density": "1.0" }, { - "src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.33.8\/docs\/assets\/favicons\/android-chrome-72x72.png", + "src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.33.9\/docs\/assets\/favicons\/android-chrome-72x72.png", "sizes": "72x72", "type": "image\/png", "density": "1.5" }, { - "src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.33.8\/docs\/assets\/favicons\/android-chrome-96x96.png", + "src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.33.9\/docs\/assets\/favicons\/android-chrome-96x96.png", "sizes": "96x96", "type": "image\/png", "density": "2.0" }, { - "src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.33.8\/docs\/assets\/favicons\/android-chrome-144x144.png", + "src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.33.9\/docs\/assets\/favicons\/android-chrome-144x144.png", "sizes": "144x144", "type": "image\/png", "density": "3.0" }, { - "src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.33.8\/docs\/assets\/favicons\/android-chrome-192x192.png", + "src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.33.9\/docs\/assets\/favicons\/android-chrome-192x192.png", "sizes": "192x192", "type": "image\/png", "density": "4.0" diff --git a/docs/assets/versions.json b/docs/assets/versions.json index 5e3af2e8802..c6b7d1198c8 100644 --- a/docs/assets/versions.json +++ b/docs/assets/versions.json @@ -30,6 +30,6 @@ "0.30.11", "0.31.5", "0.32.4", - "0.33.8" + "0.33.9" ] } diff --git a/docs/development/release-process.md b/docs/development/release-process.md index 4b8b511b9e4..066a85a76ed 100644 --- a/docs/development/release-process.md +++ b/docs/development/release-process.md @@ -29,7 +29,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.33.8-2 (Mon Feb 22 23:20:37 CET 2016)" +# wait for "==> build-arch: ==> Finished making: dokku 0.33.9-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/install/docker.md b/docs/getting-started/install/docker.md index fbb572c84a0..166ee9bbe0b 100644 --- a/docs/getting-started/install/docker.md +++ b/docs/getting-started/install/docker.md @@ -3,7 +3,7 @@ Pull the dokku/dokku image: ```shell -docker pull dokku/dokku:0.33.8 +docker pull dokku/dokku:0.33.9 ``` Next, run the image. @@ -19,7 +19,7 @@ docker container run -d \ --publish 8443:443 \ --volume /var/lib/dokku:/mnt/dokku \ --volume /var/run/docker.sock:/var/run/docker.sock \ - dokku/dokku:0.33.8 + dokku/dokku:0.33.9 ``` The above command will start a new docker container that is ready when a message similar to `Runit started as PID 12345` appears. @@ -61,7 +61,7 @@ redis: https://github.com/dokku/dokku-redis.git The alternative is to build a custom docker image via a custom Dockerfile. This Dockerfile can run any `plugin:install` command. Note that the version installed at that time will be the one that persists. Below is an example Dockerfile showing this method. ```Dockerfile -FROM dokku/dokku:0.33.8 +FROM dokku/dokku:0.33.9 RUN dokku plugin:install https://github.com/dokku/dokku-postgres.git postgres RUN dokku plugin:install https://github.com/dokku/dokku-redis.git redis ``` diff --git a/docs/getting-started/installation/index.md b/docs/getting-started/installation/index.md index ea0d6f36bcd..748a7c570cb 100644 --- a/docs/getting-started/installation/index.md +++ b/docs/getting-started/installation/index.md @@ -37,8 +37,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 -NP . https://dokku.com/install/v0.33.8/bootstrap.sh -sudo DOKKU_TAG=v0.33.8 bash bootstrap.sh +wget -NP . https://dokku.com/install/v0.33.9/bootstrap.sh +sudo DOKKU_TAG=v0.33.9 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 3d4166a045e..d59ed7b1662 100644 --- a/docs/home.html +++ b/docs/home.html @@ -10,26 +10,26 @@ Dokku - The smallest PaaS implementation you've ever seen - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - + + @@ -38,7 +38,7 @@ - + @@ -98,7 +98,7 @@
-
Latest release v0.33.8
+
Latest release v0.33.9

An open source PAAS alternative to Heroku.

Dokku helps you build and manage the lifecycle of applications from building to scaling.

@@ -125,7 +125,7 @@

Dokku helps you build and manage the lifecycle of ap

$ - sudo DOKKU_TAG=v0.33.8 bash bootstrap.sh + sudo DOKKU_TAG=v0.33.9 bash bootstrap.sh


@@ -226,8 +226,8 @@

Getting started is extremely easy

Create - - + + Deploy @@ -382,11 +382,11 @@

Getting started is extremely easy

- + - + @@ -402,7 +402,7 @@

Getting started is extremely easy

- + diff --git a/docs/template.html b/docs/template.html index 873949f424a..52f6941c1c4 100644 --- a/docs/template.html +++ b/docs/template.html @@ -9,26 +9,26 @@ Dokku - {{DOC_TITLE}} - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - + +