Skip to content

Releases: lamba92/kotlin.document.store

0.0.3

16 Sep 15:12
0bf248d
Compare
Choose a tag to compare

What's Changed

  • Fix coroutines to 8.0 and Add Flow.chunked extension function by @fscarponi in #2

Full Changelog: 0.0.2...0.0.3

0.0.2

13 Sep 13:42
93923c2
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.0.1-dev7...0.0.2

0.0.1-dev7: fix(JsonCollection): ensure ID is preserved during update operations

25 Jul 10:56
Compare
Choose a tag to compare
- Ensure the ID is preserved when updating a JsonObject by copying the ID to the new item.
- Correct the return value of the updateWhere function to return the updated status.

0.0.1-dev6: Add JVM toolchain configuration and Foojay resolver plugin

25 Jul 09:41
Compare
Choose a tag to compare
- Add `org.gradle.toolchains.foojay-resolver-convention` plugin to `settings.gradle.kts`
- Configure JVM toolchain to use version 17 in `convention.gradle.kts` for both Kotlin JVM and Multiplatform projects

0.0.1-dev5: Update build condition for RocksDB and CI workflows

24 Jul 10:16
Compare
Choose a tag to compare
Changed the RocksDB build condition in build.gradle.kts to check for the "ENABLE_ROCKSDB_NATIVE" environment variable instead of the "CI" variable. Also updated the Github Actions workflows to include a separate check for RocksDB.

0.0.1-dev4

23 Jul 20:00
Compare
Choose a tag to compare
damn you ktlint

0.0.1-dev3

23 Jul 19:58
Compare
Choose a tag to compare
Added find tests.

0.0.1-dev2: Enhance find function in ObjectCollection class

23 Jul 19:32
Compare
Choose a tag to compare
The find() function in the ObjectCollection class has been updated to take a value of any type, along with its serializer. A corresponding inline function is also created to accommodate inferred type parameter passing. This improvement provides more flexibility when querying data.

0.0.1-dev1

23 Jul 12:57
Compare
Choose a tag to compare
Added support for using complex objects as indexes. Simplified select…