Skip to content

Commit

Permalink
update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
ikitommi committed Jun 30, 2024
1 parent 51617cd commit aa39a16
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,14 @@ Malli is in well matured [alpha](README.md#alpha).
* Experimental `:->` for simpler function defintions (not available on default schema registry) [#1027](https://github.com/metosin/malli/pull/1027)

```clojure
[:=> [:cat :int] :int]
[:-> :int :int]

[:=> [:cat :int [:? :int]] :int]
[:-> :int [:? :int] :int]
[:-> :any] ; [:=> :cat :any]
[:-> :int :any] ; [:=> [:cat :int] :any]
[:-> [:cat :int] :any] ; [:=> [:cat [:cat :int]] :any]
[:-> a b c d :any] ; [:=> [:cat a b c d] :any]

;; guard property
[:-> {:guard (fn [[[arg] ret]] ...)} :string :boolean]
; [:=> [:cat :string] :boolean [:fn (fn [[[arg] ret]] ...)]]
```

* Fix `mu/get-in` for false-y keys [#1065](https://github.com/metosin/malli/pull/1065)
Expand Down

0 comments on commit aa39a16

Please sign in to comment.