File tree Expand file tree Collapse file tree 2 files changed +24
-4
lines changed Expand file tree Collapse file tree 2 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 4
4
Release notes
5
5
=============
6
6
7
+
8
+ Release 0.5.1
9
+ =============
10
+
11
+ Breaking changes
12
+ ----------------
13
+ None
14
+
15
+ New features and bug fixes
16
+ --------------------------
17
+ - ``make_batch_reader `` and ``make_reader `` now take an optional ``schema_fields `` argument. The argument may contain
18
+ a list of field names or regular expression patterns that define a set of columns loaded from a parquet store.
19
+ - The following data types are now supported when opening a non-Petastorm Parquet store using ``make_batch_reader ``:
20
+
21
+ - ``DateType ``
22
+ - ``TimestampType ``
23
+ - ``ArrayType ``
24
+
25
+
7
26
Release 0.5.0
8
27
=============
9
28
@@ -12,9 +31,10 @@ Breaking changes
12
31
- :func: `~petastorm.reader.make_reader ` should be used to create new instance of a reader.
13
32
- It is still possible, but not recommended to use :class: `~petastorm.reader.Reader ` in most cases. Its constructor arguments
14
33
has changed:
15
- -- ``training_partition `` and ``num_training_partitions `` were renamed into ``cur_shard `` and ``shard_count ``.
16
- -- ``shuffle `` and ``shuffle_options `` were replaced by ``shuffle_row_groups=True, shuffle_row_drop_partitions=1 ``
17
- -- ``sequence `` argument was removed
34
+
35
+ - ``training_partition `` and ``num_training_partitions `` were renamed into ``cur_shard `` and ``shard_count ``.
36
+ - ``shuffle `` and ``shuffle_options `` were replaced by ``shuffle_row_groups=True, shuffle_row_drop_partitions=1 ``
37
+ - ``sequence `` argument was removed
18
38
19
39
20
40
New features and bug fixes
Original file line number Diff line number Diff line change 14
14
15
15
from petastorm .reader import make_reader , make_batch_reader # noqa: F401
16
16
17
- __version__ = '0.5.0 '
17
+ __version__ = '0.5.1 '
You can’t perform that action at this time.
0 commit comments