You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: adds migration api and queries
* fixes
* fixes
* removes unnecessary query
* refactor, starts adding tests
* fixes
* fixes
* adds remaining tests for passwordhashes
* fixes
* fixes comment
* udpates CHANGELOG and dependencies
* minor fixes
* implements some feedback
* comment fixes
* fixes
* fix
* implements feedback
* updates CHANGELOG.md and versio
* fixes
* adds hashingAlgorithm field param
* fixes
* implements feedback
* fixes
* test fixes
* marks function as testonly
* adds test for checking hahsing algorithm with lowercase and upper case names
* remvoes unnecessary enum
* feat: Adds support to migrate users from Firebase (#507)
* progress on adding firebase scrypt
* implements feedback
* removes unnecessary spacing
* adds poolsize for firebase scrypt hashing
* removes unnecessary file
* removes unnecessary statements
* adds some feedback
* fixes configs
* adds comment
* implements feedback
* fixs comment
* adds more tests; test fixs
* adds test to check that not setting signer keys throws error
* adds more tests and fixes
* adds test for signing in when wrong signer key is set
* adds test for firebase scrypt validation with different config values
* adds tests for firebase scrypt pool checking
* fixs for test
* feedback changes
* test fixs
* adds additional test check
* updates CHANGELOG.md and fixs typo
* updates CHANGELOG.md
* updates CHANGELOG.md
* test fixs
* fixs
* updates query
* updates CHANGELOG.md
Copy file name to clipboardExpand all lines: CHANGELOG.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,26 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
8
## [unreleased]
9
9
10
+
## [4.0.0] - 2022-09-19
11
+
10
12
### Added
11
13
14
+
- EmailPassword User migration API which allows you to import users with their email and password hashes.
15
+
- Support to import users with password hashes from Firebase
16
+
- Support with CDI version `2.16`
12
17
- Hello API on `/` route.
13
18
19
+
### Database Changes
20
+
- Updates the `password_hash` column in the `emailpassword_users` table from `VARCHAR(128)` to `VARCHAR(256)` to support more password hash lengths.
21
+
- Updates the `third_party_user_id` column in the `thirdparty_users` table from `VARCHAR(128)` to `VARCHAR(256)` to resolve https://github.com/supertokens/supertokens-core/issues/306
22
+
23
+
- For legacy users who are self hosting the SuperTokens core run the following command to update your database with the changes:
0 commit comments