Skip to content

Commit 09b9fa8

Browse files
committed
Merge branch '0.6'
2 parents c8ee653 + b5d3f6a commit 09b9fa8

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
# Changelog
22

3+
* 0.6.0 (2026-03-23)
4+
* Added configuration option to fetch mirrored packages from their VCS repositories by default when possible
5+
* Improved the `packages:update` command with clearer arguments
6+
* Improved user roles by only allowing a single role per user
7+
* Improved sorting of package links by adding indices to the stored metadata
8+
* Improved code quality with:
9+
* Added scripts for development as Composer scripts
10+
* Integrated Rector into development workflow
11+
* Added development guidelines for AI agents
12+
* Added Claude commands for code reviewing
13+
* Updated various Composer dependencies
14+
315
* 0.5.0 (2025-10-17)
416
* **Breaking changes**
517
* Changed unique field for users from their email address to their username
618
* Added *optional* multi-factor authentication [#6](https://github.com/codedmonkey/dirigent/pull/6)
719
* Added source and distribution info to package pages
8-
* Added package links and for dependents, suggesters and providers
20+
* Added package links for dependents, suggesters and providers
921
* Improved package and package list pages
1022
* Implemented pretty URLs through EasyAdmin
1123
* Disabled online check for compromised password

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Proceed with caution.
1919
The easiest way to install Dirigent is through our Docker image.
2020

2121
```shell
22-
docker run -p "7015:7015" ghcr.io/codedmonkey/dirigent:0.5
22+
docker run -p "7015:7015" ghcr.io/codedmonkey/dirigent:0.6
2323
```
2424

2525
Learn more about installing and configuring Dirigent in our [installation guide][docs-install].

docs/installation/docker-standalone.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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.5
24+
ghcr.io/codedmonkey/dirigent:0.6
2525
```
2626

2727
### Docker Compose configuration
2828

2929
```yaml
3030
services:
3131
dirigent:
32-
image: ghcr.io/codedmonkey/dirigent:0.5
32+
image: ghcr.io/codedmonkey/dirigent:0.6
3333
ports:
3434
- "7015:7015"
3535
volumes:
@@ -95,7 +95,7 @@ commit you want to build. Simply run the `docker build` command inside the repos
9595
```shell
9696
git clone https://github.com/codedmonkey/dirigent.git
9797
cd dirigent
98-
git checkout v0.5.0
98+
git checkout v0.6.0
9999
docker build -t dirigent-standalone .
100100
```
101101

0 commit comments

Comments
 (0)