Skip to content

Commit ce8310e

Browse files
committed
Update HISTORY for release 0.32.0 against TileDB 2.26.0
1 parent 21f5e73 commit ce8310e

File tree

3 files changed

+41
-3
lines changed

3 files changed

+41
-3
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ if (NOT TileDB_FOUND)
4646
message(STATUS "Downloading TileDB default version ...")
4747
# Download latest release
4848
fetch_prebuilt_tiledb(
49-
VERSION 2.25.0
50-
RELLIST_HASH SHA256=398a1da194a59817b6f354b3232f6575c97c350d6dc792de54c529162e30763c
49+
VERSION 2.26.0
50+
RELLIST_HASH SHA256=f9086d53d4f9daaf7f4b22d78cb66c45f571de5dd77caf8a18b3d7de3551e1c7
5151
)
5252
endif()
5353
find_package(TileDB REQUIRED)

HISTORY.md

+35
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
# Release 0.32.0
2+
3+
* TileDB-Py 0.32.0 includes TileDB Embedded [2.26.0](https://github.com/TileDB-Inc/TileDB/releases/tag/2.26.0)
4+
5+
## Improvements
6+
7+
* Replace dump() calls with operator<< by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/1975
8+
* Convert config values to strings in VFS init by @gspowley and @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2060
9+
* Move DomainIndexer, Stats, and Array helper functions from Cython to pybind by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2057
10+
* Refactor Aggregation from Cython to Pure Python by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2056
11+
* Move tiledb_object_* API calls from Cython to pybind by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2049
12+
* Don't check dtype if column_types is not set - from_pandas by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2055
13+
* Fix serialization test and add command line option by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2052
14+
* Remove deprecations by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2050
15+
* Make from_pandas respect column_types for index dimensions by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2046
16+
* Remove Dask test skips and add Dask as a test dependency by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2047
17+
* Fix exception when calling label_index on a Query object by @sric0880 and @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2044
18+
* Improve Query Condition error messages to align with TileDB-SOMA-Py by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2041
19+
* Fix numpy.ma.fix_invalid issue in NumPy 2.1.0 by replacing with numpy.ma.masked_invalid by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2042
20+
* Add scope_ctx to doc build by @spencerseale in https://github.com/TileDB-Inc/TileDB-Py/pull/2038
21+
* Passing Empty List to multirange_index and df should return Empty Results by @nguyenv and @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/1412
22+
* Get rid all BNF lines in QueryCondition docstring by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2028
23+
* Add tiledb_current_domain_t as type by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2033
24+
* Add Enumeration in api ref docs by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2026
25+
* Hide sensitive params shown in Config::__repr__ by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2029
26+
* Wrap current domain API by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2015
27+
28+
## Build system changes
29+
30+
* Bump libtiledb and numpy versions for daily tests / make CurrentDomain and NDRectangle code conditional by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2036
31+
* Fix compilation warnings by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/1940
32+
* Add packaging as dependency by @dudoslav in https://github.com/TileDB-Inc/TileDB-Py/pull/2032
33+
* Expose setup.py flag to enable deprecations by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2025
34+
* Update Cython minimum version to 3 by @kounelisagis in https://github.com/TileDB-Inc/TileDB-Py/pull/2027
35+
136
# Release 0.31.1
237

338
## Improvements

tiledb/tests/test_enumeration.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,10 @@ def test_array_schema_enumeration(self):
9292

9393
with self.assertRaises(tiledb.TileDBError) as excinfo:
9494
assert A.enum("enmr3") == []
95-
assert " No enumeration named 'enmr3'" in str(excinfo.value)
95+
assert (
96+
"ArraySchema: Unable to check if unknown enumeration is loaded. No enumeration named 'enmr3'."
97+
== str(excinfo.value)
98+
)
9699
assert attr3.enum_label is None
97100
assert A.attr("attr3").enum_label is None
98101

0 commit comments

Comments
 (0)