1.2.2
What's Changed
- FFM-7277 Reduce Guava usage (in preparation for removal) by @checketts in #145
- FFM-7277 Open the Evaluator and Query class/interfaces to allow usage by @checketts in #146
Known issues
On startupjava.lang.NoSuchMethodError: kotlin.collections.ArraysKt.copyInto([B[BIII)[B
or similar is thrown.
This is caused by conflicting kotlin-stdlib JARs on the classpath brought in by okhttp.
- Make sure no other dependency brings in kotlin-stdlib earlier than 1.4.10
- If you're using SpringBoot, it's recommend that you upgrade to at least 2.7.x
If you're unable to resolve the following dependencycom.github.heremaps:oksse:jar:0.9.0
you will need to add the following repository to your Gradle file or Maven POM:
- Gradle:
repositories { maven { url 'https://jitpack.io' } }
- Maven:
<repository> <url>https://jitpack.io</url> ... </repository>
Full Changelog: 1.2.1...1.2.2