Tommi Reiman

Results 173 issues of Tommi Reiman

XState has an api to ask which signals are allowed given the current state: ```js const { initialState } = lightMachine; console.log(initialState.nextEvents); // => ['TIMER', 'EMERGENCY'] ``` This is really...

would be good to know if the process is done. Currently just `:parallel` is supported as `:type` in the Schema + would be good to not to allow signals after...

Using Cheshire with anything usin `jackson-databind` with different version causes errors. More discussion here: https://clojureverse.org/t/depending-on-the-right-versions-of-jackson-libraries/5111 I would be happy to publish new versions of Cheshire to the latest everytime Jsonista...

Hi. I was testing different routing libs and noticed that ataraxy fails on large routing trees: ```clj (require '[ataraxy.core :as ataraxy]) (def aroutes (ataraxy/compile (->> (range 100) (map (partial str...

```clj WARNING: parse-double already refers to: #'clojure.core/parse-double in namespace: cuerdas.core, being replaced by: #'cuerdas.core/parse-double WARNING: parse-long already refers to: #'clojure.core/parse-long in namespace: cuerdas.core, being replaced by: #'cuerdas.core/parse-long ```

bug

```clojure (malli.dev.pretty/explain [:map [:id :int] [:tags [:set :keyword]] [:address [:map [:street :string] [:city :string] [:zip :int] [:lonlat [:tuple :double :double]]]]] {:id "123" :EXTRA "KEY" :tags #{:artesan "coffee" :garden} :address {:street...

We would like to better understand who is using our libraries. Are you using malli at work? Please comment below! A link to the company website would be great too.

for discussion

As malli is designed with JSON Schema in mind, we should have a conversion from JSON Schema to Malli. This enables things like generating OpenAPI server templates from spesifications. We...

enhancement

Converting Malli Schemas with TypeScript Types, two ways. This would be most welcome for future interop. Initial work: https://github.com/flowyourmoney/malli-ts.

enhancement

Maybe `:date-time` and `:local-date` mapping to Java8 Time & Google dates? Or should we lean on libs like [tick](https://github.com/juxt/tick)?

enhancement