Skip to content

Commit 145b4d7

Browse files
author
Dokku Bot
committed
Release 0.32.4
# History ## 0.32.4 Install/update via the bootstrap script: ```shell wget -NP . https://dokku.com/install/v0.32.4/bootstrap.sh sudo DOKKU_TAG=v0.32.4 bash bootstrap.sh ``` ### Bug Fixes - dokku#6407: @josegonzalez Upgrade ruby to fix the release process - dokku#6394: @josegonzalez Scope the delete of symlinked plugins in debian post-install to the plugin folders ### Refactors - dokku#6388: @Juneezee Replace deprecated `io/ioutil` functions ### Documentation - dokku#6385: @josegonzalez Fix docblock entries for properties in plugins - dokku#6384: @josegonzalez Cleanup some markdown in documentation - dokku#6365: @josegonzalez Split out archive/image deployment docs into their own file ### Tests - dokku#6408: @josegonzalez Add options to the release workflow - dokku#6359: @josegonzalez Update buildpack api for test buildpack ### Dependencies - dokku#6399: @dependabot[bot] chore(deps): bump pymdown-extensions from 10.5 to 10.7 in /docs/_build - dokku#6398: @dependabot[bot] chore(deps): bump sinatra from 3.1.0 to 3.2.0 in /tests/apps/ruby - dokku#6395: @dependabot[bot] chore(deps): bump ruby from 3.2.2 to 3.3.0 in /tests/apps/dockerfile-entrypoint - dokku#6391: @dependabot[bot] chore(deps): bump mkdocs-material from 9.5.2 to 9.5.3 in /docs/_build - dokku#6392: @dependabot[bot] chore(deps): bump importlib-metadata from 7.0.0 to 7.0.1 in /docs/_build - dokku#6393: @dependabot[bot] chore(deps): bump tj-actions/changed-files from 40.2.3 to 41.0.1 - dokku#6387: @dependabot[bot] chore(deps): bump org.eclipse.jetty:jetty-servlet from 11.0.18 to 11.0.19 in /tests/apps/java - dokku#6386: @dependabot[bot] chore(deps): bump tj-actions/changed-files from 40.2.2 to 40.2.3 - dokku#6377: @dependabot[bot] chore(deps): bump tj-actions/changed-files from 40.2.1 to 40.2.2 - dokku#6380: @dependabot[bot] chore(deps): bump github/codeql-action from 2 to 3 - dokku#6379: @dependabot[bot] chore(deps): bump mkdocs-material from 9.5.1 to 9.5.2 in /docs/_build - dokku#6378: @dependabot[bot] chore(deps): bump python from 3.12.0-alpine to 3.12.1-alpine in /docs/_build - dokku#6376: @dependabot[bot] chore(deps): bump mkdocs-material from 9.4.14 to 9.5.1 in /docs/_build - dokku#6371: @dependabot[bot] chore(deps): bump golang from 1.21.4 to 1.21.5 in /tests/apps/gogrpc - dokku#6369: @dependabot[bot] chore(deps): bump golang from 1.21.4 to 1.21.5 in /tests/apps/zombies-dockerfile-tini - dokku#6368: @dependabot[bot] chore(deps): bump golang from 1.21.4 to 1.21.5 in /tests/apps/zombies-dockerfile-no-tini - dokku#6367: @dependabot[bot] chore(deps): bump importlib-metadata from 6.8.0 to 7.0.0 in /docs/_build - dokku#6366: @dependabot[bot] chore(deps): bump tj-actions/changed-files from 40.2.0 to 40.2.1 - dokku#6370: @dependabot[bot] chore(deps): bump golang from 1.21.4 to 1.21.5 in /tests/apps/go-fail-predeploy - dokku#6372: @dependabot[bot] chore(deps): bump golang from 1.21.4 to 1.21.5 in /tests/apps/go-fail-postdeploy - dokku#6373: @dependabot[bot] chore(deps): bump actions/setup-python from 4 to 5 - dokku#6364: @dependabot[bot] chore(deps): bump golang.org/x/net from 0.18.0 to 0.19.0 in /tests/apps/gogrpc - dokku#6361: @dependabot[bot] chore(deps): bump pymdown-extensions from 10.4 to 10.5 in /docs/_build - dokku#6362: @dependabot[bot] chore(deps): bump mkdocs-material from 9.4.12 to 9.4.14 in /docs/_build - dokku#6360: @dependabot[bot] chore(deps): bump tj-actions/changed-files from 40.1.1 to 40.2.0 - dokku#6357: @dependabot[bot] chore(deps): bump mkdocs-material-extensions from 1.3 to 1.3.1 in /docs/_build - dokku#6355: @dependabot[bot] chore(deps): bump pygments from 2.16.1 to 2.17.2 in /docs/_build - dokku#6358: @dependabot[bot] chore(deps): bump mkdocs-material from 9.4.8 to 9.4.12 in /docs/_build - dokku#6348: @dependabot[bot] chore(deps): bump pymdown-extensions from 10.3.1 to 10.4 in /docs/_build
1 parent d8cad25 commit 145b4d7

File tree

55 files changed

+193
-132
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+193
-132
lines changed

HISTORY.md

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,66 @@
11
# History
22

3+
## 0.32.4
4+
5+
Install/update via the bootstrap script:
6+
7+
```shell
8+
wget -NP . https://dokku.com/install/v0.32.4/bootstrap.sh
9+
sudo DOKKU_TAG=v0.32.4 bash bootstrap.sh
10+
```
11+
12+
### Bug Fixes
13+
14+
- #6407: @josegonzalez Upgrade ruby to fix the release process
15+
- #6394: @josegonzalez Scope the delete of symlinked plugins in debian post-install to the plugin folders
16+
17+
### Refactors
18+
19+
- #6388: @Juneezee Replace deprecated `io/ioutil` functions
20+
21+
### Documentation
22+
23+
- #6385: @josegonzalez Fix docblock entries for properties in plugins
24+
- #6384: @josegonzalez Cleanup some markdown in documentation
25+
- #6365: @josegonzalez Split out archive/image deployment docs into their own file
26+
27+
### Tests
28+
29+
- #6408: @josegonzalez Add options to the release workflow
30+
- #6359: @josegonzalez Update buildpack api for test buildpack
31+
32+
### Dependencies
33+
34+
- #6399: @dependabot[bot] chore(deps): bump pymdown-extensions from 10.5 to 10.7 in /docs/_build
35+
- #6398: @dependabot[bot] chore(deps): bump sinatra from 3.1.0 to 3.2.0 in /tests/apps/ruby
36+
- #6395: @dependabot[bot] chore(deps): bump ruby from 3.2.2 to 3.3.0 in /tests/apps/dockerfile-entrypoint
37+
- #6391: @dependabot[bot] chore(deps): bump mkdocs-material from 9.5.2 to 9.5.3 in /docs/_build
38+
- #6392: @dependabot[bot] chore(deps): bump importlib-metadata from 7.0.0 to 7.0.1 in /docs/_build
39+
- #6393: @dependabot[bot] chore(deps): bump tj-actions/changed-files from 40.2.3 to 41.0.1
40+
- #6387: @dependabot[bot] chore(deps): bump org.eclipse.jetty:jetty-servlet from 11.0.18 to 11.0.19 in /tests/apps/java
41+
- #6386: @dependabot[bot] chore(deps): bump tj-actions/changed-files from 40.2.2 to 40.2.3
42+
- #6377: @dependabot[bot] chore(deps): bump tj-actions/changed-files from 40.2.1 to 40.2.2
43+
- #6380: @dependabot[bot] chore(deps): bump github/codeql-action from 2 to 3
44+
- #6379: @dependabot[bot] chore(deps): bump mkdocs-material from 9.5.1 to 9.5.2 in /docs/_build
45+
- #6378: @dependabot[bot] chore(deps): bump python from 3.12.0-alpine to 3.12.1-alpine in /docs/_build
46+
- #6376: @dependabot[bot] chore(deps): bump mkdocs-material from 9.4.14 to 9.5.1 in /docs/_build
47+
- #6371: @dependabot[bot] chore(deps): bump golang from 1.21.4 to 1.21.5 in /tests/apps/gogrpc
48+
- #6369: @dependabot[bot] chore(deps): bump golang from 1.21.4 to 1.21.5 in /tests/apps/zombies-dockerfile-tini
49+
- #6368: @dependabot[bot] chore(deps): bump golang from 1.21.4 to 1.21.5 in /tests/apps/zombies-dockerfile-no-tini
50+
- #6367: @dependabot[bot] chore(deps): bump importlib-metadata from 6.8.0 to 7.0.0 in /docs/_build
51+
- #6366: @dependabot[bot] chore(deps): bump tj-actions/changed-files from 40.2.0 to 40.2.1
52+
- #6370: @dependabot[bot] chore(deps): bump golang from 1.21.4 to 1.21.5 in /tests/apps/go-fail-predeploy
53+
- #6372: @dependabot[bot] chore(deps): bump golang from 1.21.4 to 1.21.5 in /tests/apps/go-fail-postdeploy
54+
- #6373: @dependabot[bot] chore(deps): bump actions/setup-python from 4 to 5
55+
- #6364: @dependabot[bot] chore(deps): bump golang.org/x/net from 0.18.0 to 0.19.0 in /tests/apps/gogrpc
56+
- #6361: @dependabot[bot] chore(deps): bump pymdown-extensions from 10.4 to 10.5 in /docs/_build
57+
- #6362: @dependabot[bot] chore(deps): bump mkdocs-material from 9.4.12 to 9.4.14 in /docs/_build
58+
- #6360: @dependabot[bot] chore(deps): bump tj-actions/changed-files from 40.1.1 to 40.2.0
59+
- #6357: @dependabot[bot] chore(deps): bump mkdocs-material-extensions from 1.3 to 1.3.1 in /docs/_build
60+
- #6355: @dependabot[bot] chore(deps): bump pygments from 2.16.1 to 2.17.2 in /docs/_build
61+
- #6358: @dependabot[bot] chore(deps): bump mkdocs-material from 9.4.8 to 9.4.12 in /docs/_build
62+
- #6348: @dependabot[bot] chore(deps): bump pymdown-extensions from 10.3.1 to 10.4 in /docs/_build
63+
364
## 0.32.3
465

566
Install/update via the bootstrap script:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ Otherwise, you will need to import the keypair manually after installation using
8686
To install the latest stable release, run the following commands as a user who has access to `sudo`:
8787

8888
```shell
89-
wget -NP . https://dokku.com/install/v0.32.3/bootstrap.sh
90-
sudo DOKKU_TAG=v0.32.3 bash bootstrap.sh
89+
wget -NP . https://dokku.com/install/v0.32.4/bootstrap.sh
90+
sudo DOKKU_TAG=v0.32.4 bash bootstrap.sh
9191
```
9292

9393
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.

debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: dokku
2-
Version: 0.32.3
2+
Version: 0.32.4
33
Section: web
44
Priority: optional
55
Architecture: amd64

docs/advanced-usage/plugin-management.md

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -36,35 +36,35 @@ dokku plugin:list
3636

3737
```
3838
plugn: dev
39-
00_dokku-standard 0.32.3 enabled dokku core standard plugin
40-
20_events 0.32.3 enabled dokku core events logging plugin
41-
app-json 0.32.3 enabled dokku core app-json plugin
42-
apps 0.32.3 enabled dokku core apps plugin
43-
build-env 0.32.3 enabled dokku core build-env plugin
44-
buildpacks 0.32.3 enabled dokku core buildpacks plugin
45-
certs 0.32.3 enabled dokku core certificate management plugin
46-
checks 0.32.3 enabled dokku core checks plugin
47-
common 0.32.3 enabled dokku core common plugin
48-
config 0.32.3 enabled dokku core config plugin
49-
docker-options 0.32.3 enabled dokku core docker-options plugin
50-
domains 0.32.3 enabled dokku core domains plugin
51-
enter 0.32.3 enabled dokku core enter plugin
52-
git 0.32.3 enabled dokku core git plugin
53-
logs 0.32.3 enabled dokku core logs plugin
54-
network 0.32.3 enabled dokku core network plugin
55-
nginx-vhosts 0.32.3 enabled dokku core nginx-vhosts plugin
56-
plugin 0.32.3 enabled dokku core plugin plugin
57-
proxy 0.32.3 enabled dokku core proxy plugin
58-
ps 0.32.3 enabled dokku core ps plugin
59-
repo 0.32.3 enabled dokku core repo plugin
60-
resource 0.32.3 enabled dokku core resource plugin
61-
scheduler-docker-local 0.32.3 enabled dokku core scheduler-docker-local plugin
62-
shell 0.32.3 enabled dokku core shell plugin
63-
ssh-keys 0.32.3 enabled dokku core ssh-keys plugin
64-
storage 0.32.3 enabled dokku core storage plugin
65-
tags 0.32.3 enabled dokku core tags plugin
66-
tar 0.32.3 enabled dokku core tar plugin
67-
trace 0.32.3 enabled dokku core trace plugin
39+
00_dokku-standard 0.32.4 enabled dokku core standard plugin
40+
20_events 0.32.4 enabled dokku core events logging plugin
41+
app-json 0.32.4 enabled dokku core app-json plugin
42+
apps 0.32.4 enabled dokku core apps plugin
43+
build-env 0.32.4 enabled dokku core build-env plugin
44+
buildpacks 0.32.4 enabled dokku core buildpacks plugin
45+
certs 0.32.4 enabled dokku core certificate management plugin
46+
checks 0.32.4 enabled dokku core checks plugin
47+
common 0.32.4 enabled dokku core common plugin
48+
config 0.32.4 enabled dokku core config plugin
49+
docker-options 0.32.4 enabled dokku core docker-options plugin
50+
domains 0.32.4 enabled dokku core domains plugin
51+
enter 0.32.4 enabled dokku core enter plugin
52+
git 0.32.4 enabled dokku core git plugin
53+
logs 0.32.4 enabled dokku core logs plugin
54+
network 0.32.4 enabled dokku core network plugin
55+
nginx-vhosts 0.32.4 enabled dokku core nginx-vhosts plugin
56+
plugin 0.32.4 enabled dokku core plugin plugin
57+
proxy 0.32.4 enabled dokku core proxy plugin
58+
ps 0.32.4 enabled dokku core ps plugin
59+
repo 0.32.4 enabled dokku core repo plugin
60+
resource 0.32.4 enabled dokku core resource plugin
61+
scheduler-docker-local 0.32.4 enabled dokku core scheduler-docker-local plugin
62+
shell 0.32.4 enabled dokku core shell plugin
63+
ssh-keys 0.32.4 enabled dokku core ssh-keys plugin
64+
storage 0.32.4 enabled dokku core storage plugin
65+
tags 0.32.4 enabled dokku core tags plugin
66+
tar 0.32.4 enabled dokku core tar plugin
67+
trace 0.32.4 enabled dokku core trace plugin
6868
```
6969

7070
> [!WARNING]

docs/assets/favicons/browserconfig.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<browserconfig>
33
<msapplication>
44
<tile>
5-
<square70x70logo src="https://cdn.jsdelivr.net/gh/dokku/dokku@v0.32.3/docs/assets/favicons/mstile-70x70.png"/>
6-
<square150x150logo src="https://cdn.jsdelivr.net/gh/dokku/dokku@v0.32.3/docs/assets/favicons/mstile-150x150.png"/>
7-
<square310x310logo src="https://cdn.jsdelivr.net/gh/dokku/dokku@v0.32.3/docs/assets/favicons/mstile-310x310.png"/>
8-
<wide310x150logo src="https://cdn.jsdelivr.net/gh/dokku/dokku@v0.32.3/docs/assets/favicons/mstile-310x150.png"/>
5+
<square70x70logo src="https://cdn.jsdelivr.net/gh/dokku/dokku@v0.32.4/docs/assets/favicons/mstile-70x70.png"/>
6+
<square150x150logo src="https://cdn.jsdelivr.net/gh/dokku/dokku@v0.32.4/docs/assets/favicons/mstile-150x150.png"/>
7+
<square310x310logo src="https://cdn.jsdelivr.net/gh/dokku/dokku@v0.32.4/docs/assets/favicons/mstile-310x310.png"/>
8+
<wide310x150logo src="https://cdn.jsdelivr.net/gh/dokku/dokku@v0.32.4/docs/assets/favicons/mstile-310x150.png"/>
99
<TileColor>#da532c</TileColor>
1010
</tile>
1111
</msapplication>

docs/assets/favicons/manifest.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,37 +2,37 @@
22
"name": "Dokku",
33
"icons": [
44
{
5-
"src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.32.3\/docs\/assets\/favicons\/android-chrome-36x36.png",
5+
"src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.32.4\/docs\/assets\/favicons\/android-chrome-36x36.png",
66
"sizes": "36x36",
77
"type": "image\/png",
88
"density": "0.75"
99
},
1010
{
11-
"src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.32.3\/docs\/assets\/favicons\/android-chrome-48x48.png",
11+
"src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.32.4\/docs\/assets\/favicons\/android-chrome-48x48.png",
1212
"sizes": "48x48",
1313
"type": "image\/png",
1414
"density": "1.0"
1515
},
1616
{
17-
"src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.32.3\/docs\/assets\/favicons\/android-chrome-72x72.png",
17+
"src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.32.4\/docs\/assets\/favicons\/android-chrome-72x72.png",
1818
"sizes": "72x72",
1919
"type": "image\/png",
2020
"density": "1.5"
2121
},
2222
{
23-
"src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.32.3\/docs\/assets\/favicons\/android-chrome-96x96.png",
23+
"src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.32.4\/docs\/assets\/favicons\/android-chrome-96x96.png",
2424
"sizes": "96x96",
2525
"type": "image\/png",
2626
"density": "2.0"
2727
},
2828
{
29-
"src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.32.3\/docs\/assets\/favicons\/android-chrome-144x144.png",
29+
"src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.32.4\/docs\/assets\/favicons\/android-chrome-144x144.png",
3030
"sizes": "144x144",
3131
"type": "image\/png",
3232
"density": "3.0"
3333
},
3434
{
35-
"src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.32.3\/docs\/assets\/favicons\/android-chrome-192x192.png",
35+
"src": "https:\/\/cdn.jsdelivr.net\/dokku\/dokku@v0.32.4\/docs\/assets\/favicons\/android-chrome-192x192.png",
3636
"sizes": "192x192",
3737
"type": "image\/png",
3838
"density": "4.0"

docs/assets/versions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929
"0.29.4",
3030
"0.30.11",
3131
"0.31.5",
32-
"0.32.3"
32+
"0.32.4"
3333
]
3434
}

docs/development/release-process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The workflow looks like this:
2929
```shell
3030
# having dokku-arch in ../dokku-arch
3131
vagrant up build-arch
32-
# wait for "==> build-arch: ==> Finished making: dokku 0.32.3-2 (Mon Feb 22 23:20:37 CET 2016)"
32+
# wait for "==> build-arch: ==> Finished making: dokku 0.32.4-2 (Mon Feb 22 23:20:37 CET 2016)"
3333
cd ../dokku-arch
3434
git add PKGBUILD .SRCINFO
3535
git commit -m 'Update to dokku 0.9.9'

docs/getting-started/install/docker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Pull the dokku/dokku image:
44

55
```shell
6-
docker pull dokku/dokku:0.32.3
6+
docker pull dokku/dokku:0.32.4
77
```
88

99
Next, run the image.
@@ -19,7 +19,7 @@ docker container run \
1919
--publish 8443:443 \
2020
--volume /var/lib/dokku:/mnt/dokku \
2121
--volume /var/run/docker.sock:/var/run/docker.sock \
22-
dokku/dokku:0.32.3
22+
dokku/dokku:0.32.4
2323
```
2424

2525
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
6161
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.
6262

6363
```Dockerfile
64-
FROM dokku/dokku:0.32.3
64+
FROM dokku/dokku:0.32.4
6565
RUN dokku plugin:install https://github.com/dokku/dokku-postgres.git postgres
6666
RUN dokku plugin:install https://github.com/dokku/dokku-redis.git redis
6767
```

docs/getting-started/installation/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ To install the latest stable version of Dokku, you can run the following shell c
3737

3838
```shell
3939
# for debian systems, installs Dokku via apt-get
40-
wget -NP . https://dokku.com/install/v0.32.3/bootstrap.sh
41-
sudo DOKKU_TAG=v0.32.3 bash bootstrap.sh
40+
wget -NP . https://dokku.com/install/v0.32.4/bootstrap.sh
41+
sudo DOKKU_TAG=v0.32.4 bash bootstrap.sh
4242
```
4343

4444
The installation process takes about 5-10 minutes, depending upon internet connection speed.

0 commit comments

Comments
 (0)