[1.1.0] 14th July 2025
- fix: (BREAKING) Can not logout and login again with same Client object (Christian Kußowski)
- refactor: Clean up new dart version lints (Christian Kußowski)
Now if you logout and login again you will reuse the same database. In case you use
database encryption and want to use a new key, please consider recreating the database
like this:
await client.database.delete();
client.database = await MatrixSdkDatabase.init(/*...*/);