File tree Expand file tree Collapse file tree 4 files changed +20
-9
lines changed
Expand file tree Collapse file tree 4 files changed +20
-9
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ * 0.4.0 (2025-03-xx)
4+ * Added ` bin/dirigent ` binary with only app-related commands
5+ * Added automated random kernel secret in standalone image, stored in ` /srv/config/secrets/kernel_secret `
6+ * Improved initialization process of standalone image
7+ * Improved code quality with:
8+ * Testing of images with [ Testcontainers] ( https://github.com/testcontainers/testcontainers-php/ )
9+ * Static analysis with [ PHPStan] ( https://phpstan.org )
10+ * Various improvements to GitHub Actions workflows
11+ * Bumped minimum PHP version to 8.3
12+ * Updated Symfony dependencies to version 7.2
13+
314* 0.3.1 (2025-01-15)
4- * Fix error on dashboard root when not logged in
5- * Fix permission error on ` /srv/data ` in Docker image
6- * Fix PostgreSQL sequences in database migrations
15+ * Fixed error on dashboard root when not logged in
16+ * Fixed permission error on ` /srv/data ` in Docker image
17+ * Fixed PostgreSQL sequences in database migrations
718
819* 0.3.0 (2025-01-14)
920 * Renamed project to Dirigent
1829 * Fixed access token form events triggering in all forms
1930
2031* 0.2.2 (2024-12-10)
21- * Changed internal names of downloads to installations
32+ * Changed internal names of downloads to installations
2233 * Fixed database migrations
2334
2435* 0.2.1 (2024-11-23)
Original file line number Diff line number Diff line change @@ -21,15 +21,15 @@ docker container run -d \
2121 -p " 7015:7015" \
2222 -v /path/to/dirigent/config:/srv/config \
2323 -v dirigent-data:/srv/data \
24- ghcr.io/codedmonkey/dirigent:0.3
24+ ghcr.io/codedmonkey/dirigent:0.4
2525```
2626
2727### Docker Compose configuration
2828
2929``` yaml
3030services :
3131 dirigent :
32- image : ghcr.io/codedmonkey/dirigent:0.3
32+ image : ghcr.io/codedmonkey/dirigent:0.4
3333 ports :
3434 - " 7015:7015"
3535 volumes :
@@ -85,7 +85,7 @@ commit you want to build. Simply run the `docker build` command inside the repos
8585` ` ` shell
8686git clone https://github.com/codedmonkey/dirigent.git
8787cd dirigent
88- git checkout v0.3.1
88+ git checkout v0.4.0
8989docker build -t dirigent-standalone .
9090` ` `
9191
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Proceed with caution.
1919The easiest way to install Dirigent is through our Docker image.
2020
2121``` shell
22- docker run -p " 7015:7015" ghcr.io/codedmonkey/dirigent:0.3
22+ docker run -p " 7015:7015" ghcr.io/codedmonkey/dirigent:0.4
2323```
2424
2525Learn more about installing and configuring Dirigent in our [ installation guide] [ docs-install ] .
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ class Kernel extends BaseKernel
1212{
1313 use MicroKernelTrait;
1414
15- public const VERSION = '0.3.x-dev ' ;
15+ public const VERSION = '0.4.0 ' ;
1616
1717 protected function configureContainer (ContainerConfigurator $ container ): void
1818 {
You can’t perform that action at this time.
0 commit comments