diff --git a/CHANGELOG.md b/CHANGELOG.md index 5348534..4fb83ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# [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. + +Also, we introduce on the /refresh endpoint the ability to invalidate the user's refresh_token as a part of logging a user out. + +### Features + +* new configuration options ([#19](https://github.com/authcompanion/authcompanion2/issues/19)) ([3e07d84](https://github.com/authcompanion/authcompanion2/commit/3e07d84e513b69a217162421b8650b20020b7b03)) + + + # [3.0.0-beta.20](https://github.com/authcompanion/authcompanion2/compare/3.0.0-beta.19...3.0.0-beta.20) (2023-10-29) diff --git a/Dockerfile b/Dockerfile index 995e830..e015457 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.20" +LABEL org.opencontainers.image.version="3.0.0-beta.21" 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 f1b9391..db83b37 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "authcompanion2", - "version": "3.0.0-beta.20", + "version": "3.0.0-beta.21", "description": "An admin-friendly, User Management Server (with Passkeys & JWTs) - for seamless and secure integration of user authentication.", "main": "server.js", "type": "module",