diff --git a/CHANGELOG.md b/CHANGELOG.md index 57457ed..fa4bae4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,22 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [v2.2.0](https://github.com/kinde-oss/kinde-auth-nextjs/compare/v2.1.15...v2.2.0) + +- Peter/feat refresh tokens [`#137`](https://github.com/kinde-oss/kinde-auth-nextjs/pull/137) +- Added properties to KindeAccessToken type [`#134`](https://github.com/kinde-oss/kinde-auth-nextjs/pull/134) +- deps: update TS SDK and use validateClientSecret [`#133`](https://github.com/kinde-oss/kinde-auth-nextjs/pull/133) +- fix: error handling refreshTokens [`5c845fd`](https://github.com/kinde-oss/kinde-auth-nextjs/commit/5c845fd44f199a9928aa369653ed32cad828b220) +- chore: upgrade TS SDK version [`77458ce`](https://github.com/kinde-oss/kinde-auth-nextjs/commit/77458ceb5e37c18da13970879c502167e92041d3) +- Added properties to KindeAccessToken type to support access token customization fields [`0c3fba7`](https://github.com/kinde-oss/kinde-auth-nextjs/commit/0c3fba7d3285f173c887fe450dcc7f416e5bc625) + #### [v2.1.15](https://github.com/kinde-oss/kinde-auth-nextjs/compare/v2.1.14...v2.1.15) +> 26 February 2024 + - Update TTL [`#131`](https://github.com/kinde-oss/kinde-auth-nextjs/pull/131) - fix: move router type definitions [`#130`](https://github.com/kinde-oss/kinde-auth-nextjs/pull/130) +- chore: release v2.1.15 [`059547d`](https://github.com/kinde-oss/kinde-auth-nextjs/commit/059547d6b6eb88b808aab04c653a380ecdb30ab3) - feat: update TTL [`9fe5889`](https://github.com/kinde-oss/kinde-auth-nextjs/commit/9fe5889527d3fd2c0021ed5f8534c0784c159da7) #### [v2.1.14](https://github.com/kinde-oss/kinde-auth-nextjs/compare/v2.1.13...v2.1.14) @@ -303,14 +315,20 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - fix: check flag exists [`bc3f97e`](https://github.com/kinde-oss/kinde-auth-nextjs/commit/bc3f97ed53028fe29159c1d22655d5cd9168db75) - fix: check the flag [`8b5e010`](https://github.com/kinde-oss/kinde-auth-nextjs/commit/8b5e010b69e858bb769354654948d51a2afb696c) -#### [1.8.9](https://github.com/kinde-oss/kinde-auth-nextjs/compare/1.8.7...1.8.9) +#### [1.8.9](https://github.com/kinde-oss/kinde-auth-nextjs/compare/1.8.8...1.8.9) > 6 July 2023 - updated package.json version to fix failed release [`#37`](https://github.com/kinde-oss/kinde-auth-nextjs/pull/37) -- fix: get feature flags [`#36`](https://github.com/kinde-oss/kinde-auth-nextjs/pull/36) - chore: release v1.8.9 [`37f450f`](https://github.com/kinde-oss/kinde-auth-nextjs/commit/37f450f95f76507b4cd92761af6abf54f8a667b3) +#### [1.8.8](https://github.com/kinde-oss/kinde-auth-nextjs/compare/1.8.7...1.8.8) + +> 5 July 2023 + +- fix: get feature flags [`#36`](https://github.com/kinde-oss/kinde-auth-nextjs/pull/36) +- chore: release v1.8.8 [`d40f374`](https://github.com/kinde-oss/kinde-auth-nextjs/commit/d40f374103fd72d4fea1195cb88c82a7353f2c79) + #### [1.8.7](https://github.com/kinde-oss/kinde-auth-nextjs/compare/1.8.6...1.8.7) > 29 June 2023 diff --git a/package-lock.json b/package-lock.json index 0f2de75..529068d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@kinde-oss/kinde-auth-nextjs", - "version": "2.1.15", + "version": "2.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@kinde-oss/kinde-auth-nextjs", - "version": "2.1.15", + "version": "2.2.0", "dependencies": { "@babel/preset-env": "^7.23.9", "@kinde-oss/kinde-typescript-sdk": "^2.8.0", diff --git a/package.json b/package.json index ada0cf6..d986844 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@kinde-oss/kinde-auth-nextjs", - "version": "2.1.15", + "version": "2.2.0", "description": "Kinde Auth SDK for NextJS", "main": "dist/cjs/index.js", "module": "dist/index.js", diff --git a/src/utils/version.js b/src/utils/version.js index bdb4850..4dc2c55 100644 --- a/src/utils/version.js +++ b/src/utils/version.js @@ -1,2 +1,2 @@ // Generated by genversion. -export const version = '2.1.15' +export const version = '2.2.0'