Skip to content

Release v0.3.2

Compare
Choose a tag to compare
@github-actions github-actions released this 18 Jul 15:34
· 183 commits to main since this release
275714c

0.3.2 (2023-07-18)

Breaking Change

listBatchMessages no longer takes a single pagination for all topics but instead a list of Pairs with a topic and pagination for each pair.

Replace an current batch messages code with the something like below:

        val messages = conversations.listBatchMessages(
            listOf(
                Pair("topic1", Pagination(limit = 1, after = Date())),
                Pair("topic2", null)
            )
        )

Documentation

What's Changed

Full Changelog: 0.3.1...0.3.2