v3.2.0-RC3 2022-06-27
This commit is contained in:
parent
a362398ccd
commit
3e928a9d33
3 changed files with 30 additions and 2 deletions
28
CHANGELOG.md
28
CHANGELOG.md
|
|
@ -1,5 +1,33 @@
|
||||||
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
|
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
|
||||||
|
|
||||||
|
## v3.2.0-RC3 / 2022 Jun 27
|
||||||
|
|
||||||
|
```clojure
|
||||||
|
[com.taoensso/nippy "3.2.0-RC3"]
|
||||||
|
```
|
||||||
|
|
||||||
|
> This is a non-breaking maintenance release.
|
||||||
|
> See [here](https://github.com/ptaoussanis/encore#recommended-steps-after-any-significant-dependency-update) for recommended steps when updating any Clojure/Script dependencies.
|
||||||
|
|
||||||
|
#### New since `v3.1.3`
|
||||||
|
|
||||||
|
* [#144] [New] Add `org.joda.time.DateTime` to `default-thaw-serializable-allowlist` (@slipset)
|
||||||
|
* [#146] [New] Add Graal native configurations (@FieryCod)
|
||||||
|
|
||||||
|
#### Changes since `v3.1.3`
|
||||||
|
|
||||||
|
* Bump dependencies, incl. minimum Encore version
|
||||||
|
|
||||||
|
#### Fixes since `v3.1.1`
|
||||||
|
|
||||||
|
* [#89 #150] [Fix] Boxed Booleans incorrectly freezing to primitive `true` (@RolT)
|
||||||
|
* [#148] [Fix] `tools/freeze` should use `*freeze-opts*` even for unwrapped vals
|
||||||
|
* [#145] [Fix] Freezing custom types with munged field names
|
||||||
|
|
||||||
|
The boxed Boolean bug has been around since the first version of Nippy and is mostly
|
||||||
|
relevant to users doing Java interop. For more info see: https://github.com/ptaoussanis/nippy/commit/8909a32bdd654a136da385e0e09c9cc44416f964
|
||||||
|
|
||||||
|
|
||||||
## v3.2.0-RC2 / 2022 Jun 23
|
## v3.2.0-RC2 / 2022 Jun 23
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[com.taoensso/nippy "3.1.3"] ; Stable
|
[com.taoensso/nippy "3.1.3"] ; Stable
|
||||||
[com.taoensso/nippy "3.2.0-RC2"] ; Dev, see CHANGELOG for details
|
[com.taoensso/nippy "3.2.0-RC3"] ; Forthcoming, see CHANGELOG for details
|
||||||
```
|
```
|
||||||
|
|
||||||
<!--  -->
|
<!--  -->
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
(defproject com.taoensso/nippy "3.2.0-RC2"
|
(defproject com.taoensso/nippy "3.2.0-RC3"
|
||||||
:author "Peter Taoussanis <https://www.taoensso.com>"
|
:author "Peter Taoussanis <https://www.taoensso.com>"
|
||||||
:description "High-performance serialization library for Clojure"
|
:description "High-performance serialization library for Clojure"
|
||||||
:url "https://github.com/ptaoussanis/nippy"
|
:url "https://github.com/ptaoussanis/nippy"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue