Releases: textnow/vessel
Releases · textnow/vessel
Release 1.2.1 (16)
Changed
- Update JDK for GHA jobs
Release 1.1.0 (13)
Changed
preload/preloadBlockingnow return a status objectPreloadReportwhich contains info about any errors encountered while preloadingpreload/preloadBlockingnow catch errors during deserialization of individual values - any errors here are reported in thePreloadReport(as above)- For completeness similar info has been added to the profiling data (see
Vessel.snapshot) - Fixed issue #36
Release 1.0.0 (12)
Added
- New Vesel functions
preloadandpreloadBlocking, to load all data into the cache - this is a breaking change to the Vessel interface - New Vessel getter
profileData, which returns profiling data - time spent in the database by each thread/coroutine, cache hits - New constructor parameter
profile, to enable/disable above profiling
Changed
get/getBlockingnow caches the value read from the databaseset/setBlockingnow checks the cache before writing to avoid redundant writes to the databasedelete/deleteBlockingnow caches that the value was deletedreplacesimilarly caches the results of the replace operation- all of the above APIs now check the cache before going to the database, to avoid unnecessary I/O
- Update Robolectric to 4.7 - this allows testing on Arm Macs
Release 0.1.3 (11)
Changed
- VSL-24 Change code coverage engine to Kover + IntelliJ
Removed
- Remove
manifest =lines from Robolectric@Configas per http://robolectric.org/migrating/#migrating-to-40 - Remove
@ExperimentalCoroutinesApifromflowaccessor due to IDE recommendation
Release 0.1.2 (10)
Release 0.1.1 (9)
Changed
- VSL-2 Upgrade Kotlin version from 1.3.72 ➞ 1.5.21
- VSL-5 Upgrade Android Gradle plugin version from 3.6.4 ➞ 7.0.1
- VSL-6 To match that, upgraded Gradle from 5.6.4 ➞ 7.0.2
- This in turn required changing our JDK version from 8 ➞ 11
- Upgrade the build tools from 30.0.2 ➞ 31.0.0
- Upgrade Room from 2.2.5 ➞ 2.4.0-alpha04 to be compatible with the Kotlin upgrade (2.3.0 failed to compile)
- Upgrade jacoco from 0.8.6 ➞ 0.8.7
- Upgrade Koin from 2.1.6 ➞ 3.1.2
- Updated build tools from 30.0.2 ➞ 31.0.0
- Updated compile SDK from 30 ➞ 31
Fixed
- Previously the published dependencies (pom.xml) mapped
implementation➞compileandapi➞runtime. That has now been corrected toimplementation➞runtimeandapi➞compile.
Release 0.1.0 (8)
Added
- Initial release of Vessel. Documentation and Release Process still WIP.