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"}