From 15e9e137f416ad56c0636f48bb0463febce16241 Mon Sep 17 00:00:00 2001 From: Matthew Penner Date: Thu, 24 Oct 2024 12:04:30 -0600 Subject: [PATCH 1/3] ci: use `GITHUB_TOKEN` for authenticating against ghcr.io Signed-off-by: Matthew Penner --- .github/workflows/docker.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index ffa30b34..d9e82409 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -46,7 +46,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'" From a366785ece204f3f96a0e8d26db2918a7998b2eb Mon Sep 17 00:00:00 2001 From: Matthew Penner Date: Sun, 27 Oct 2024 13:51:50 -0600 Subject: [PATCH 2/3] Update CHANGELOG.md Signed-off-by: Matthew Penner --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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 From 26c45ff8d401950266753c188d6419cd8fe4760b Mon Sep 17 00:00:00 2001 From: Pterodactyl CI Date: Sun, 27 Oct 2024 19:53:15 +0000 Subject: [PATCH 3/3] ci(release): bump version --- config/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/app.php b/config/app.php index c3764619..bc8dfa01 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' => 'canary', + 'version' => '1.11.9', /* |--------------------------------------------------------------------------