I just started using Malli for json-schema. this lib is becoming a swiss army knife for me 🙂
Hello guys. Any ideas when a stable version of malli will arrive? I’m using the malli for a while in production but the latest release broke my app because the transitive dependency doesn’t work with Java 11 (https://github.com/borkdude/sci) 😢
@sergey.tkachenko sci is optional with malli since a couple of releases, so if you aren't using it, it should not be a problem
if you are using it, then there are instructions in the README of sci what should be done with java 11
I’m not using it directly I’m using only a malli
then depending on a newer version of malli should automatically fix this
what is the latest version? I see only a 0.0.1-SNAPSHOT
0.0.1-20200920.124124-25
and it worked fine for a months but after the latest release/override it broke my build
all SNAPSHOTs have immutable versions behind them.
that version has these deps:
<dependencies>
<dependency>
<groupId>borkdude</groupId>
<artifactId>dynaload</artifactId>
<version>0.1.0</version>
</dependency>
<dependency>
<groupId>borkdude</groupId>
<artifactId>edamame</artifactId>
<version>0.0.11-alpha.13</version>
</dependency>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>test.check</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
is this version (0.0.1-20200920.124124-25) in the clojars?
so, you can use the “previous” SNAPSHOT too, just need to find the full version, e.g. .m2/repository/metosin/malli/0.0.1-SNAPSHOT
yes
… should be.
I used to have a way of seeing these fully qualified snapshot versions on clojars. forgot
I usually look it up in CI when it is pushed
➜ 0.0.1-SNAPSHOT ls -l
total 304
-rw-r--r-- 1 tommi staff 405 Sep 21 08:02 _remote.repositories
-rw-r--r-- 1 tommi staff 19391 Sep 21 08:02 malli-0.0.1-20200305.102752-13.jar
-rw-r--r-- 1 tommi staff 40 Sep 21 08:02 malli-0.0.1-20200305.102752-13.jar.sha1
-rw-r--r-- 1 tommi staff 1692 Sep 21 08:02 malli-0.0.1-20200305.102752-13.pom
-rw-r--r-- 1 tommi staff 40 Sep 21 08:02 malli-0.0.1-20200305.102752-13.pom.sha1
-rw-r--r-- 1 tommi staff 24437 Sep 21 07:37 malli-0.0.1-20200715.082439-21.jar
-rw-r--r-- 1 tommi staff 40 Sep 21 07:37 malli-0.0.1-20200715.082439-21.jar.sha1
-rw-r--r-- 1 tommi staff 1692 Sep 21 07:37 malli-0.0.1-20200715.082439-21.pom
-rw-r--r-- 1 tommi staff 40 Sep 21 07:37 malli-0.0.1-20200715.082439-21.pom.sha1
-rw-r--r-- 1 tommi staff 27727 Sep 20 15:43 malli-0.0.1-20200920.124124-25.jar
-rw-r--r-- 1 tommi staff 40 Sep 20 15:43 malli-0.0.1-20200920.124124-25.jar.sha1
-rw-r--r-- 1 tommi staff 1547 Sep 20 15:43 malli-0.0.1-20200920.124124-25.pom
-rw-r--r-- 1 tommi staff 40 Sep 20 15:43 malli-0.0.1-20200920.124124-25.pom.sha1
-rw-r--r-- 1 tommi staff 24437 Sep 21 07:37 malli-0.0.1-SNAPSHOT.jar
-rw-r--r-- 1 tommi staff 1692 Sep 21 07:37 malli-0.0.1-SNAPSHOT.pom
-rw-r--r-- 1 tommi staff 765 Sep 20 15:43 maven-metadata-clojars.xml
-rw-r--r-- 1 tommi staff 40 Sep 20 15:43 maven-metadata-clojars.xml.sha1
-rw-r--r-- 1 tommi staff 370 Sep 20 15:43 resolver-status.properties
there is only a snapshot
or I’m missing something?
btw @ikitommi please bump dynaload to 0.2.2 :)
will do + publish a new version out.
updated dynaload and pushed to clojars, ping @sergey.tkachenko
Downloading: metosin/malli/0.0.1-SNAPSHOT/malli-0.0.1-20200922.100025-26.pom from clojars
that’s the immutable version handle to it.
Thanks