diff --git a/.github/workflows/lint-pr-title.yml b/.github/workflows/lint-pr-title.yml index 904efde8b..6be517e9c 100644 --- a/.github/workflows/lint-pr-title.yml +++ b/.github/workflows/lint-pr-title.yml @@ -17,4 +17,4 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - validateSingleCommit: true \ No newline at end of file + validateSingleCommit: true diff --git a/CHANGELOG.md b/CHANGELOG.md index f787eab38..2ff39e2d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,10 +8,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +## [8.6.0] - 2022-01-31 + ### Changed -- Added userId as an optional property to the response of `recipe/user/password/reset`. +- Added userId as an optional property to the response of `recipe/user/password/reset` (compatibility with CDI 2.12). - Fixes https://github.com/supertokens/supertokens-node/issues/244 - throws an error if a user tries to update email / password of a third party login user. + +### Added + - Adds ability to give a path for each of the hostnames in the connectionURI: https://github.com/supertokens/supertokens-node/issues/252 - add workflow to verify if pr title follows conventional commits diff --git a/lib/build/version.d.ts b/lib/build/version.d.ts index 060c33572..d607862f6 100644 --- a/lib/build/version.d.ts +++ b/lib/build/version.d.ts @@ -1,3 +1,3 @@ // @ts-nocheck -export declare const version = "8.5.0"; +export declare const version = "8.6.0"; export declare const cdiSupported: string[]; diff --git a/lib/build/version.js b/lib/build/version.js index 620192777..31fccbbb2 100644 --- a/lib/build/version.js +++ b/lib/build/version.js @@ -14,5 +14,5 @@ Object.defineProperty(exports, "__esModule", { value: true }); * License for the specific language governing permissions and limitations * under the License. */ -exports.version = "8.5.0"; +exports.version = "8.6.0"; exports.cdiSupported = ["2.8", "2.9", "2.10", "2.11", "2.12"]; diff --git a/lib/ts/version.ts b/lib/ts/version.ts index 93bb3dace..10bc152a5 100644 --- a/lib/ts/version.ts +++ b/lib/ts/version.ts @@ -12,6 +12,6 @@ * License for the specific language governing permissions and limitations * under the License. */ -export const version = "8.5.0"; +export const version = "8.6.0"; export const cdiSupported = ["2.8", "2.9", "2.10", "2.11", "2.12"]; diff --git a/package-lock.json b/package-lock.json index 2d6d03dd5..ea11f7149 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "supertokens-node", - "version": "8.5.0", + "version": "8.6.0", "lockfileVersion": 1, "requires": true, "packages": { diff --git a/package.json b/package.json index c63cc653a..13f2c91f3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "supertokens-node", - "version": "8.5.0", + "version": "8.6.0", "description": "NodeJS driver for SuperTokens core", "main": "index.js", "scripts": {