Skip to content

Commit

Permalink
fix: version and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
sattvikc committed Sep 19, 2023
1 parent b97a3fb commit 479853b
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
46 changes: 46 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,52 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [4.0.0] - 2023-09-19

- Adds support for account linking
- Adds `AuthRecipeUserInfo` class and removes `UserInfo` from emailpassword, passwordless and thirdparty.
- ActiveUsersStorage interface changes
- Removes `deleteUserActive`
- Adds `deleteUserActive_Transaction`
- Adds `countUsersThatHaveMoreThanOneLoginMethodAndActiveSince`
- EmailPasswordStorage interfaces changes
- Removes `deleteEmailPasswordUser`, `getUserInfoUsingId`, `getUserInfoUsingEmail`
- Changes return type of `signUp` from `UserInfo` to `AuthRecipeUserInfo`
- Changes `PasswordResetTokenInfo` to accept additional param `email`
- EmailPasswordSQLStorage interface changes
- Removes `getUserInfoUsingId_Transaction`
- Adds `deleteEmailPasswordUser_Transaction`
- EmailVerificationStorage interface changes
- Removes `deleteEmailVerificationUserInfo`
- EmailVerificationSQLStorage interface changes
- Adds `deleteEmailVerificationUserInfo_Transaction`
- MultitenancyStorage interface changes
- Removes `addUserIdToTenant`
- MultitenancySQLStorage interface changes
- Adds `addUserIdToTenant_Transaction`
- PasswordlessStorage interface changes
- Changes return type of `createUser` from `UserInfo` to `AuthRecipeUserInfo`
- Removes `deletePasswordlessUser`, `getUserById`, `getUserByEmail`, `getUserByPhoneNumber`
- PasswordlessSQLStorage interface changes
- Adds `deletePasswordlessUser_Transaction`
- SessionInfo accepts additional parameter `recipeUserId`
- SessionSQLStorage interface changes
- Adds `deleteSessionsOfUser_Transaction`
- ThirdPartyStorage interface changes
- Removes `deleteThirdPartyUser`, `getThirdPartyUserInfoUsingId`, `getThirdPartyUserInfoUsingId`, `getThirdPartyUsersByEmail`
- Changes return type of `signUp` from `UserInfo` to `AuthRecipeUserInfo`
- ThirdPartySQLStorage interface changes
- Adds `deleteThirdPartyUser_Transaction`
- Removes `getUserInfoUsingId_Transaction`
- UserIdMappingSQLStorage interface changes
- Adds `getUserIdMapping_Transaction`, `getUserIdMapping_Transaction`
- UserMetadataSQLStorage interface changes
- Adds `deleteUserMetadata_Transaction`
- UserRolesStorage interface changes
- Removes `deleteAllRolesForUser`
- UserRolesSQLStorage interface changes
- Adds `deleteAllRolesForUser_Transaction`

## [3.0.1] - 2023-07-04

- Updates `TenantConfig` toJson function to protect core config as well.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id 'java-library'
}

version = "3.0.1"
version = "4.0.0"

repositories {
mavenCentral()
Expand Down

0 comments on commit 479853b

Please sign in to comment.