Skip to content

v1.1.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 14 Jul 13:01
· 5 commits to main since this release
v1.1.0
8cd4050

[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(/*...*/);