v3.4.0-RC1 (2024-02-06)
This commit is contained in:
parent
578c585bbf
commit
b4d161db53
4 changed files with 26 additions and 4 deletions
22
CHANGELOG.md
22
CHANGELOG.md
|
|
@ -2,6 +2,28 @@ This project uses [**Break Versioning**](https://www.taoensso.com/break-versioni
|
|||
|
||||
---
|
||||
|
||||
# `v3.4.0-RC1` (2024-02-06)
|
||||
|
||||
> 📦 [Available on Clojars](https://clojars.org/com.taoensso/nippy/versions/3.4.0-RC1), this project uses [Break Versioning](https://www.taoensso.com/break-versioning).
|
||||
|
||||
This is a non-breaking **feature and maintenance** pre-release.
|
||||
Please **test carefully and report any unexpected problems**, thank you! 🙏
|
||||
|
||||
## Changes since `v3.3.0`
|
||||
|
||||
* 578c585 [mod] Remove `nippy/snappy-compressor`
|
||||
|
||||
## New since `v3.3.0`
|
||||
|
||||
* fb6f75e [new] Smarter, faster, protocol-based `freezable?` util
|
||||
* 6ad5aeb [new] Add `:zstd` compressor, new compressor backend
|
||||
* 9db09e1 [new] [#163] Track serialized output in tests
|
||||
* dcc6b08 [new] [#164] Update benchmarks
|
||||
* f3ff7ae [new] Add native `MapEntry` freezer
|
||||
* Misc internal improvements
|
||||
|
||||
---
|
||||
|
||||
# `v3.3.0` (2023-10-11)
|
||||
|
||||
> 📦 [Available on Clojars](https://clojars.org/com.taoensso/nippy/versions/3.3.3), this project uses [Break Versioning](https://www.taoensso.com/break-versioning).
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ Used by [Carmine](https://www.taoensso.com/carmine), [Faraday](https://www.taoen
|
|||
## Latest release/s
|
||||
|
||||
- `2023-10-11` `3.3.0` (stable): [changes](../../releases/tag/v3.3.0)
|
||||
- `2023-09-26` `3.4.0-beta1` (dev): [changes](../../releases/tag/v3.4.0-beta1)
|
||||
- `2024-02-06` `3.4.0-RC1` (dev): [changes](../../releases/tag/v3.4.0-RC1)
|
||||
|
||||
[![Main tests][Main tests SVG]][Main tests URL]
|
||||
[![Graal tests][Graal tests SVG]][Graal tests URL]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
(defproject com.taoensso/nippy "3.4.0-beta1"
|
||||
(defproject com.taoensso/nippy "3.4.0-RC1"
|
||||
:author "Peter Taoussanis <https://www.taoensso.com>"
|
||||
:description "The fastest serialization library for Clojure"
|
||||
:url "https://github.com/taoensso/nippy"
|
||||
|
|
|
|||
|
|
@ -203,11 +203,11 @@
|
|||
|
||||
(enc/def* ^:no-doc lz4hc-compressor
|
||||
"Different LZ4 modes no longer supported, prefer `lz4-compressor`."
|
||||
{:deprecated "vX.Y.Z (YYYY-MM-DD)"}
|
||||
{:deprecated "v3.4.0-RC1 (2024-02-06)"}
|
||||
(LZ4Compressor.))
|
||||
|
||||
(enc/def* ^:no-doc snappy-compressor
|
||||
"Snappy compressor no longer recommended, prefer `lz4-compressor`.
|
||||
Decompression can be unsafe against untrusted data!"
|
||||
{:deprecated "vX.Y.Z (YYYY-MM-DD)"}
|
||||
{:deprecated "v3.4.0-RC1 (2024-02-06)"}
|
||||
(SnappyCompressor. false))
|
||||
|
|
|
|||
Loading…
Reference in a new issue