diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index ba49c57f..576fdf63 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -47,7 +47,7 @@ jobs: with: registry: ghcr.io username: ${{ github.repository_owner }} - password: ${{ secrets.REGISTRY_TOKEN }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Update version if: "github.event_name == 'release' && github.event.action == 'published'" diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f65904c..3299f8af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,18 @@ This file is a running track of new features and fixes to each version of the pa This project follows [Semantic Versioning](http://semver.org) guidelines. +## v1.11.9 + +### Fixed + +* Fixed issue with CI not pushing Docker image + +## v1.11.8 + +### Fixed + +* Fixed an issue where a `DELETE` request was used instead of a `POST`, potentially logging user passwords in plain text if they disable 2FA. + ## v1.11.7 ### Added diff --git a/config/app.php b/config/app.php index a1474d54..58432e46 100644 --- a/config/app.php +++ b/config/app.php @@ -11,7 +11,7 @@ return [ | change this value if you are not maintaining your own internal versions. */ - 'version' => '1.11.8', + 'version' => '1.11.9', /* |--------------------------------------------------------------------------