From bbd09e48916395370f49f5ae14280725b90427c5 Mon Sep 17 00:00:00 2001 From: Nemi Shah Date: Mon, 11 Sep 2023 16:44:18 +0530 Subject: [PATCH] Update version and changelog --- CHANGELOG.md | 10 ++++++++++ supertokens/constants.go | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ea4b2fc..3f2f6f90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +## [0.13.3] - 2023-09-11 + +### Added + +- The Dashboard recipe now accepts a new `Admins` property which can be used to give Dashboard Users write privileges for the user dashboard. + +### Changes + +- Dashboard APIs now return a status code `403` for all non-GET requests if the currently logged in Dashboard User is not listed in the `admins` array + ## [0.13.2] - 2023-08-28 - Adds logic to retry network calls if the core returns status 429 diff --git a/supertokens/constants.go b/supertokens/constants.go index 30ac269d..9b1ede9e 100644 --- a/supertokens/constants.go +++ b/supertokens/constants.go @@ -21,7 +21,7 @@ const ( ) // VERSION current version of the lib -const VERSION = "0.13.2" +const VERSION = "0.13.3" var ( cdiSupported = []string{"3.0"}