Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhpoddar authored Mar 5, 2024
1 parent 942b015 commit e00a7db
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,22 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

- Fixes issue with non-auth recipe related storage handling

### Migration

For Postgresql:
```sql
ALTER TABLE user_roles DROP CONSTRAINT IF EXISTS user_roles_role_fkey;
```

For MySQL:
```sql
ALTER TABLE user_roles DROP FOREIGN KEY user_roles_ibfk_1;
ALTER TABLE user_roles DROP FOREIGN KEY user_roles_ibfk_2;
ALTER TABLE user_roles
ADD FOREIGN KEY (app_id, tenant_id)
REFERENCES tenants (app_id, tenant_id) ON DELETE CASCADE;
```

## [7.0.18] - 2024-02-19

- Fixes vulnerabilities in dependencies
Expand Down Expand Up @@ -2633,4 +2649,4 @@ This script updates the `phone_number` column in the `passwordless_users`, `pass
### Changed
- Allow for an unlimited number of SuperTokens instances in production mode
- License changes to reflect the above
- License changes to reflect the above

0 comments on commit e00a7db

Please sign in to comment.