diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fb83ed..1cf5ad9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +# [3.0.0-beta.22](https://github.com/authcompanion/authcompanion2/compare/3.0.0-beta.21...3.0.0-beta.22) (2023-11-23) + + +### Bug Fixes + +* correct admin unsuccessful login to dashboard ([beede9f](https://github.com/authcompanion/authcompanion2/commit/beede9f92c5509026318a49db4b358368bfb8ea7)) + + +### Features + +* add arm64v8/node dockerfile ([49542d9](https://github.com/authcompanion/authcompanion2/commit/49542d972d6eef803ac8ea31377f2f86db6a81da)) +* **admin:** enable dashboard logout ([c08bd5e](https://github.com/authcompanion/authcompanion2/commit/c08bd5e12ede288ba47f7667055b8d23ef92cb7a)) + + + # [3.0.0-beta.21](https://github.com/authcompanion/authcompanion2/compare/3.0.0-beta.20...3.0.0-beta.21) (2023-11-09) This release of AuthCompanion has two new configuration options including REGISTRATION_ORIGIN to redirect a user to a URL after registration and SAMESITE to declare if your cookie should be restricted to a first-party or same-site context. diff --git a/Dockerfile b/Dockerfile index e015457..803a9fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:18-slim as builder LABEL org.opencontainers.image.title="AuthCompanion" -LABEL org.opencontainers.image.version="3.0.0-beta.21" +LABEL org.opencontainers.image.version="3.0.0-beta.22" LABEL org.opencontainers.image.description="An admin-friendly, User Management Server (with Passkeys & JWTs) - for seamless and secure integration of user authentication" LABEL org.opencontainers.image.authors="Paul Fischer" LABEL org.opencontainers.image.source=https://github.com/authcompanion/authcompanion2 diff --git a/Dockerfile.arm64 b/Dockerfile.arm64 index f2829dc..f585e11 100644 --- a/Dockerfile.arm64 +++ b/Dockerfile.arm64 @@ -2,7 +2,7 @@ FROM node:18-slim as builder LABEL org.opencontainers.image.title="AuthCompanion" -LABEL org.opencontainers.image.version="3.0.0-beta.21" +LABEL org.opencontainers.image.version="3.0.0-beta.22" LABEL org.opencontainers.image.description="An admin-friendly, User Management Server (with Passkeys & JWTs) - for seamless and secure integration of user authentication" LABEL org.opencontainers.image.authors="Paul Fischer" LABEL org.opencontainers.image.source=https://github.com/authcompanion/authcompanion2 diff --git a/package.json b/package.json index 4f541a6..971a1cc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "authcompanion2", - "version": "3.0.0-beta.21", + "version": "3.0.0-beta.22", "description": "An admin-friendly, User Management Server (with Passkeys & JWTs) - for seamless and secure integration of user authentication.", "main": "server.js", "type": "module",