You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: RELEASE_NOTES.md
+18-2
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,24 @@
1
1
# Release notes
2
2
3
-
## Changes from 2.1.1 to 2.1.2
3
+
## Changes from 2.1.1 to 2.2.0
4
4
5
-
XXX version-specific blurb XXX
5
+
* New bytedelta filter. We have blogged about this: https://www.blosc.org/posts/bytedelta-enhance-compression-toolset/. See the examples/ndarray/bytedelta_filter.py for a sample script. We also have a short video on how bytedelta works: https://www.youtube.com/watch?v=5OXs7w2x6nw
6
+
7
+
* The compression defaults are changed to get a better balance between compression ratio, compression speed and decompression speed. The new defaults are:
8
+
9
+
-`cparams.typesize = 8`
10
+
-`cparams.clevel = 1`
11
+
-`cparams.compcode = Codec.ZSTD`
12
+
-`filters = [Filter.SHUFFLE]`
13
+
-`splitmode = SplitMode.ALWAYS_SPLIT`
14
+
15
+
These changes have been based on the mentioned blog post above.
16
+
17
+
*`dtype.itemsize` will have preference over typesize in cparams (as it was documented).
18
+
19
+
*`blosc2.compressor_list(plugins=False)` do not list codec plugins by default now. If you want to list plugins too, you need to pass `plugins=True`.
20
+
21
+
* Internal C-Blosc2 updated to latest version (2.8.0).
0 commit comments