diff --git a/CHANGELOG.md b/CHANGELOG.md index b9ee625bd..4bd9d985d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) +## [16.3.5] - 2023-10-25 + +- `tenantId` is now passed to `origin` if its value is a function when calling SuperTokens `init`. + ## [16.3.4] - 2023-10-22 ### Fixes diff --git a/lib/build/version.d.ts b/lib/build/version.d.ts index 58a718bf4..7fc83339f 100644 --- a/lib/build/version.d.ts +++ b/lib/build/version.d.ts @@ -1,4 +1,4 @@ // @ts-nocheck -export declare const version = "16.3.4"; +export declare const version = "16.3.5"; export declare const cdiSupported: string[]; export declare const dashboardVersion = "0.8"; diff --git a/lib/build/version.js b/lib/build/version.js index 1a39a60ae..b994b55a0 100644 --- a/lib/build/version.js +++ b/lib/build/version.js @@ -15,7 +15,7 @@ exports.dashboardVersion = exports.cdiSupported = exports.version = void 0; * License for the specific language governing permissions and limitations * under the License. */ -exports.version = "16.3.4"; +exports.version = "16.3.5"; exports.cdiSupported = ["4.0"]; // Note: The actual script import for dashboard uses v{DASHBOARD_VERSION} exports.dashboardVersion = "0.8"; diff --git a/lib/ts/version.ts b/lib/ts/version.ts index 86c2c4b76..90ed68a68 100644 --- a/lib/ts/version.ts +++ b/lib/ts/version.ts @@ -12,7 +12,7 @@ * License for the specific language governing permissions and limitations * under the License. */ -export const version = "16.3.4"; +export const version = "16.3.5"; export const cdiSupported = ["4.0"]; diff --git a/package-lock.json b/package-lock.json index 62e07660d..47407bff2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "supertokens-node", - "version": "16.3.4", + "version": "16.3.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "supertokens-node", - "version": "16.3.4", + "version": "16.3.5", "license": "Apache-2.0", "dependencies": { "content-type": "^1.0.5", diff --git a/package.json b/package.json index 4227e3c5d..80625b04d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "supertokens-node", - "version": "16.3.4", + "version": "16.3.5", "description": "NodeJS driver for SuperTokens core", "main": "index.js", "scripts": {