From 201898548c9a2b8b8a3d81d4524e60a9c02a22a0 Mon Sep 17 00:00:00 2001 From: Chakravarthi Medicharla Date: Tue, 26 Sep 2023 16:30:44 +0530 Subject: [PATCH] bump v0.35.3 --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ lib/build/version.d.ts | 2 +- lib/ts/version.ts | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 5 files changed, 32 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be75c2fe4..4d5a072ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +## [0.35.3] - 2023-09-26 + +### Added + +- Introduced a new option `logo` for thirdparty custom providers to set a custom logo, just like the `name` property. + +Following is an example of how to use this new `logo` property. + +```tsx +ThirdPartyPasswordless.init({ + signInUpFeature: { + providers: [ + ThirdPartyPasswordless.Google.init(), + ThirdPartyPasswordless.Apple.init(), + { + id: "discord", + name: "Discord", + logo: + + , +... +``` + ## [0.35.2] - 2023-09-24 ### Test changes diff --git a/lib/build/version.d.ts b/lib/build/version.d.ts index 2930185f2..08244704e 100644 --- a/lib/build/version.d.ts +++ b/lib/build/version.d.ts @@ -1 +1 @@ -export declare const package_version = "0.35.2"; +export declare const package_version = "0.35.3"; diff --git a/lib/ts/version.ts b/lib/ts/version.ts index d6c04883e..d1f657eba 100644 --- a/lib/ts/version.ts +++ b/lib/ts/version.ts @@ -12,4 +12,4 @@ * License for the specific language governing permissions and limitations * under the License. */ -export const package_version = "0.35.2"; +export const package_version = "0.35.3"; diff --git a/package-lock.json b/package-lock.json index ce8b7dfff..475fb8546 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "supertokens-auth-react", - "version": "0.35.2", + "version": "0.35.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "supertokens-auth-react", - "version": "0.35.2", + "version": "0.35.3", "license": "Apache-2.0", "dependencies": { "intl-tel-input": "^17.0.19", diff --git a/package.json b/package.json index 82ef8f647..d5a7c04f0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "supertokens-auth-react", - "version": "0.35.2", + "version": "0.35.3", "description": "ReactJS SDK that provides login functionality with SuperTokens.", "main": "./index.js", "engines": {