v2.15.1
This commit is contained in:
parent
79612437ca
commit
aaf54d9c9c
3 changed files with 21 additions and 3 deletions
18
CHANGELOG.md
18
CHANGELOG.md
|
|
@ -1,5 +1,23 @@
|
||||||
> 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**.
|
||||||
|
|
||||||
|
## v2.15.1 / 2020 Aug 27
|
||||||
|
|
||||||
|
```clojure
|
||||||
|
[com.taoensso/nippy "2.15.1"]
|
||||||
|
```
|
||||||
|
|
||||||
|
> This is a minor feature release. Should be non-breaking.
|
||||||
|
|
||||||
|
**New** since `v2.15.0`:
|
||||||
|
|
||||||
|
- `*serializable-whitelist*`: sets of approved class names may now contain "*" wildcards.
|
||||||
|
- `*serializable-whitelist*`: added JVM properties and env vars to override initial value. See updated docstring for details.
|
||||||
|
|
||||||
|
**Changes** since `v2.15.0`:
|
||||||
|
|
||||||
|
- [#126] `extend-freeze`: include id collision odds in docstring.
|
||||||
|
|
||||||
|
|
||||||
## v2.15.0 / 2020 Jul 24
|
## v2.15.0 / 2020 Jul 24
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
**[CHANGELOG]** | [API] | current [Break Version]:
|
**[CHANGELOG]** | [API] | current [Break Version]:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[com.taoensso/nippy "2.15.0"] ; BREAKING, see CHANGELOG for details
|
[com.taoensso/nippy "2.15.1"] ; BREAKING, see CHANGELOG for details
|
||||||
```
|
```
|
||||||
|
|
||||||
## ** SECURITY ADVISORY **
|
## ** SECURITY ADVISORY **
|
||||||
|
|
@ -46,7 +46,7 @@ Nippy is an attempt to provide a reliable, high-performance **drop-in alternativ
|
||||||
Add the necessary dependency to your project:
|
Add the necessary dependency to your project:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[com.taoensso/nippy "2.15.0"]
|
[com.taoensso/nippy "2.15.1"]
|
||||||
```
|
```
|
||||||
|
|
||||||
And setup your namespace imports:
|
And setup your namespace imports:
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
(defproject com.taoensso/nippy "2.15.0"
|
(defproject com.taoensso/nippy "2.15.1"
|
||||||
: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