From 39d6fe7372fbd00758be7cd4b0d51241d7dbb102 Mon Sep 17 00:00:00 2001 From: authcompanion Date: Sat, 28 Oct 2023 23:08:36 -0400 Subject: [PATCH] chore: release 3.0.0-beta.20 --- CHANGELOG.md | 11 +++++++++++ Dockerfile | 2 +- package.json | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e4ed7b..5348534 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# [3.0.0-beta.20](https://github.com/authcompanion/authcompanion2/compare/3.0.0-beta.19...3.0.0-beta.20) (2023-10-29) + + +### Features + +This release of AuthCompanion features many improvements to the Admin API to make integrating with AuthC simpler. Additionally, newly added is the /refresh endpoint for the Admin API for refreshing your admin JWT without having to login again. + +* **admin api:** new /refresh api endpoint ([#17](https://github.com/authcompanion/authcompanion2/issues/17)) ([482ae8b](https://github.com/authcompanion/authcompanion2/commit/482ae8b919981d01be7fcef036fb3e4080d6f0e3)) + + + # [3.0.0-beta.19](https://github.com/authcompanion/authcompanion2/compare/3.0.0-beta.18...3.0.0-beta.19) (2023-10-16) This release of AuthCompanion features the ability to set custom claims on the user's JWT including setting the value for a public claim (called `metadata`) and a private claim (called `app`). Custom claims can be set via the AuthC APIs, please see API Developer Reference documentation for examples. diff --git a/Dockerfile b/Dockerfile index 8a06beb..995e830 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.19" +LABEL org.opencontainers.image.version="3.0.0-beta.20" 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 f048273..f1b9391 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "authcompanion2", - "version": "3.0.0-beta.19", + "version": "3.0.0-beta.20", "description": "An admin-friendly, User Management Server (with Passkeys & JWTs) - for seamless and secure integration of user authentication.", "main": "server.js", "type": "module",