diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b76a8f6..cf6eadd 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -25,11 +25,9 @@ jobs: REF: ${{ github.ref }} run: | GOARCH=amd64 go build -o dist/wings_linux_amd64 -v -trimpath -ldflags="-s -w -X github.com/pterodactyl/wings/system.Version=${REF:11}" github.com/pterodactyl/wings - GOARCH=arm64 go build -o dist/wings_linux_ard64 -v -trimpath -ldflags="-s -w -X github.com/pterodactyl/wings/system.Version=${REF:11}" github.com/pterodactyl/wings - - - name: Compress binary and make it executable - run: | - chmod 755 dist/wings_linux_amd64 dist/wings_linux_arm64 + chmod 755 dist/wings_linux_amd64 + GOARCH=arm64 go build -o dist/wings_linux_arm64 -v -trimpath -ldflags="-s -w -X github.com/pterodactyl/wings/system.Version=${REF:11}" github.com/pterodactyl/wings + chmod 755 dist/wings_linux_arm64 - name: Extract changelog env: diff --git a/CHANGELOG.md b/CHANGELOG.md index 3504684..443311a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## v1.11.0-rc.1 +### Changed +* Wings release versions will now follow the major and minor version of the panel. +* Transfers no longer buffer to disk, instead they are fully streamed with only a small amount of memory used for buffering. +* Release binaries are no longer compressed with UPX. + +### Fixed +* Wings can be run with podman instead of Docker, this is still experimental and not recommended for production use. +* Archive progress is now reported correctly. +* Labels for containers can now be set by the Panel. + ## v1.7.2 ### Fixed * The S3 backup driver now supports Cloudflare R2