Tiledb

Latest version: v0.33.6

Safety actively analyzes 723976 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 15 of 33

2.4.2

- Note that 2.4.1 was skipped due to accidental tagging of the 2.4.1 git tag during CI testing

API Changes
* Addition of `overwrite` parameter to `Array.create` [713](https://github.com/TileDB-Inc/TileDB-Py/pull/713)
* Addition of `"ascii"` dtype for `Dim`s [720](https://github.com/TileDB-Inc/TileDB-Py/pull/720)

Bug fixes
* Pass `Ctx` to `ArraySchema.load` in `from_pandas` [709](https://github.com/TileDB-Inc/TileDB-Py/pull/709)
* Give clear error message when attempting to apply `QueryCondition` on dimensions [722](https://github.com/TileDB-Inc/TileDB-Py/pull/722)
* Do not add string range when querying empty array [721](https://github.com/TileDB-Inc/TileDB-Py/pull/721)

Improvements
* String dimension default fix in core [2436](https://github.com/TileDB-Inc/TileDB/pull/2436) reverts a previous change in which the nonempty domain was passed the to multi-range indexer if unspecified [#712](https://github.com/TileDB-Inc/TileDB-Py/pull/712)

TileDB-Py 0.10.2 Release Notes

API Changes
* Deprecate sparse writes to dense arrays [681](https://github.com/TileDB-Inc/TileDB-Py/pull/681)
* Addition of `Attr.isascii` [681](https://github.com/TileDB-Inc/TileDB-Py/pull/681)
* Addition of `Ctx.get_stats` and `Query.get_stats` [698](https://github.com/TileDB-Inc/TileDB-Py/pull/698)

Improvements
* Added support for `timestamp` argument in `tiledb.from_numpy` [699](https://github.com/TileDB-Inc/TileDB-Py/pull/699)

TileDB-Py 0.10.1 Release Notes

API Changes
* Do not require `domain=(None, None)` for string dimensions [662](https://github.com/TileDB-Inc/TileDB-Py/pull/662)

Improvements
* Print a warning about ContextVar bug when running under ipykernel < 6.0. [665](https://github.com/TileDB-Inc/TileDB-Py/pull/665)
Please see https://github.com/TileDB-Inc/TileDB-Py/issues/667 for more information.
* `tiledb.Dim` representation now displays `var=True` for dimensions with `bytes` datatype, consistent with `tiledb.Attr` [669](https://github.com/TileDB-Inc/TileDB-Py/pull/669)

Bug fixes
* Fix concurrent use of `Array.multi_index` and `.df` by using new instance for each invocation [672](https://github.com/TileDB-Inc/TileDB-Py/pull/672)
* For attributes, if `var=False` but the bytestring is fixed-width or if `var=True` but the bytestring is variable length, error out [663](https://github.com/TileDB-Inc/TileDB-Py/pull/663)

TileDB-Py 0.10.0 Release Notes

TileDB Embedded updates:
* TileDB-Py 0.10.0 includes TileDB Embedded [TileDB 2.4.0](https://github.com/TileDB-Inc/TileDB/releases/tag/2.4.0) with a number of
new features and improvements, including:
- new platform support: Apple M1
- support for ArraySchema evolution (adding and removing attributes)
- support for Azure SAS (shared access signature) tokens

API Changes
* When using `Array.multi_index`, an empty result is returned if the nonempty domain is empty [656](https://github.com/TileDB-Inc/TileDB-Py/pull/656)
* Addition of `Array.set_query` to read array using a serialized query [651](https://github.com/TileDB-Inc/TileDB-Py/pull/651)

Improvements
* Support numeric column names in `from_pandas` by casting to str dtype [652](https://github.com/TileDB-Inc/TileDB-Py/pull/652)
* New `tiledb.ArraySchemaEvolution` API to add and drop attributes from an existing array [657](https://github.com/TileDB-Inc/TileDB-Py/pull/657)

Bug Fixes
* Correct listing of consolidated fragments to vacuum in the Fragment Info API by deprecating `FragmentInfoList.to_vacuum_uri`, `FragmentInfoList.to_vacuum_num`, `FragmentInfo.to_vacuum_uri`, and `FragmentInfo.to_vacuum_num` and replacing with `FragmentInfoList.to_vacuum` [650](https://github.com/TileDB-Inc/TileDB-Py/pull/650)
* Correct issue where appending `None` to `FilterList` causes segfault by checking the `filter` argument [653](https://github.com/TileDB-Inc/TileDB-Py/pull/653)

TileDB-Py 0.9.5 Release Notes

TileDB Embedded updates:

2.4.0

Disk Format

* Store array schemas under `__schema` directory [2258](https://github.com/TileDB-Inc/TileDB/pull/2258)

New features

* Perform early audit for acceptable aws sdk windows path length [2260](https://github.com/TileDB-Inc/TileDB/pull/2260)
* Support setting via config s3 BucketCannedACL and ObjectCannedACL via SetACL() methods [2383](https://github.com/TileDB-Inc/TileDB/pull/2383)
* Update spdlog dependency to 1.9.0 fixing c++17 compatibility and general improvements [1973](https://github.com/TileDB-Inc/TileDB/pull/1973)
* Added Azure SAS token config support and new config option [2420](https://github.com/TileDB-Inc/TileDB/pull/2420)
* Load all array schemas in storage manager and pass the appropriate schema pointer to each fragment [2415](https://github.com/TileDB-Inc/TileDB/pull/2415)
* First revision of the Interval class [2417](https://github.com/TileDB-Inc/TileDB/pull/2417)
* Add `tiledb_schema_evolution_t` and new apis for schema evolution [2426](https://github.com/TileDB-Inc/TileDB/pull/2426)
* Add `ArraySchemaEvolution` to cpp_api and its unit tests are also added. [2462](https://github.com/TileDB-Inc/TileDB/pull/2462)
* Add c and cpp api functions for getting the array schema of a fragment [2468](https://github.com/TileDB-Inc/TileDB/pull/2468)
* Add capnp serialization and rest support for array schema evolution objects [2467](https://github.com/TileDB-Inc/TileDB/pull/2467)

Improvements

* `encryption_key` and `encryption_type` parameters have been added to the config; internal APIs now use these parameters to set the key. [2245](https://github.com/TileDB-Inc/TileDB/pull/2245)
* Initial read refactor [2374](https://github.com/TileDB-Inc/TileDB/pull/2374)
* Create class ByteVecValue from typedef [2368](https://github.com/TileDB-Inc/TileDB/pull/2368)
* Encapsulate spdlog.h [2396](https://github.com/TileDB-Inc/TileDB/pull/2396)
* Update OSX target to 10.14 for release artifacts [2401](https://github.com/TileDB-Inc/TileDB/pull/2401)
* Add nullable (and unordered, nullable) support to the smoke test. [2405](https://github.com/TileDB-Inc/TileDB/pull/2405)
* Initial sparse global order reader [2395](https://github.com/TileDB-Inc/TileDB/pull/2395)
* Remove sm.sub_partitioner_memory_budget [2402](https://github.com/TileDB-Inc/TileDB/pull/2402)
* Update the markdown documents for our new version of array schemas [2416](https://github.com/TileDB-Inc/TileDB/pull/2416)
* Sparse global order reader: no more result cell slab copy. [2411](https://github.com/TileDB-Inc/TileDB/pull/2411)
* Sparse global order reader: initial memory budget improvements. [2413](https://github.com/TileDB-Inc/TileDB/pull/2413)
* Optimization of result cell slabs generation for sparse global order reader. [2414](https://github.com/TileDB-Inc/TileDB/pull/2414)
* Remove selective unfiltering. [2410](https://github.com/TileDB-Inc/TileDB/pull/2410)
* Updated Azure Storage Lite SDK to 0.3.0 [2419](https://github.com/TileDB-Inc/TileDB/pull/2419)
* Respect memory budget for sparse global order reader. [2425](https://github.com/TileDB-Inc/TileDB/pull/2425)
* Use newer Azure patch for all platforms to solve missing header error [2433](https://github.com/TileDB-Inc/TileDB/pull/2433)
* increased diag output for differences reported by tiledb_unit (some of which may be reasonable) [2437](https://github.com/TileDB-Inc/TileDB/pull/2437)
* Adjustments to schema evolution new attribute reads [2484](https://github.com/TileDB-Inc/TileDB/pull/2484)
* Change `Quickstart` link in readthedocs/doxygen `index.rst` [2448](https://github.com/TileDB-Inc/TileDB/pull/2448)
* Initial sparse unordered with duplicates reader. [2441](https://github.com/TileDB-Inc/TileDB/pull/2441)
* Add calls to `malloc_trim` on context and query destruction linux to potentially reduce idle memory usage [2443](https://github.com/TileDB-Inc/TileDB/pull/2443)
* Add logger internals for `std::string` and `std::stringstream` for developer convenience [2454](https://github.com/TileDB-Inc/TileDB/pull/2454)
* Allow empty attribute writes. [2461](https://github.com/TileDB-Inc/TileDB/pull/2461)
* Refactored readers: serialization. [2458](https://github.com/TileDB-Inc/TileDB/pull/2458)
* Allow null data pointers for writes. [2481](https://github.com/TileDB-Inc/TileDB/pull/2481)
* Update backwards compatibility arrays for 2.3.0 [2487](https://github.com/TileDB-Inc/TileDB/pull/2487)

Deprecations

* Deprecate all `*_with_key` APIs. [2245](https://github.com/TileDB-Inc/TileDB/pull/2245) [#2308](https://github.com/TileDB-Inc/TileDB/pull/2308) [#2412](https://github.com/TileDB-Inc/TileDB/pull/2412)

Bug fixes

* Fix to correctly apply capnproto create_symlink avoidance patch [2264](https://github.com/TileDB-Inc/TileDB/pull/2264)
* The bug for calculating max_size_validity for var_size attribute caused incomplete query [2266](https://github.com/TileDB-Inc/TileDB/pull/2266)
* Always run ASAN with matching compiler versions [2277](https://github.com/TileDB-Inc/TileDB/pull/2277)
* Fix some loop bounds that reference non-existent elements [2282](https://github.com/TileDB-Inc/TileDB/pull/2282)
* Treating `std::vector` like an array; accessing an element that is not present to get its address. [2276](https://github.com/TileDB-Inc/TileDB/pull/2276)
* Fix buffer arguments in unit-curl.cc [2287](https://github.com/TileDB-Inc/TileDB/pull/2287)
* Stop loop iterations within limits of vector being initialized. [2320](https://github.com/TileDB-Inc/TileDB/pull/2320)
* Modify FindCurl_EP.cmake to work for WIN32 -EnableDebug builds [2319](https://github.com/TileDB-Inc/TileDB/pull/2319)
* Fixing test failure because of an uninitialized buffer. [2386](https://github.com/TileDB-Inc/TileDB/pull/2386)
* Change a condition that assumed MSVC was the only compiler for WIN32 [2388](https://github.com/TileDB-Inc/TileDB/pull/2388)
* Fix defects in buffer classes: read, set_offset, advance_offset [2342](https://github.com/TileDB-Inc/TileDB/pull/2342)
* Use CHECK_SAFE() to avoid multi-threaded conflict [2394](https://github.com/TileDB-Inc/TileDB/pull/2394)
* Use tiledb _SAFE() items when overlapping threads may invoke code [2418](https://github.com/TileDB-Inc/TileDB/pull/2418)
* Changes to address issues with default string dimension ranges in query [2436](https://github.com/TileDB-Inc/TileDB/pull/2436)
* Only set cmake policy CMP0076 if cmake version in use knows about it [2463](https://github.com/TileDB-Inc/TileDB/pull/2463)
* Fix handling curl REST request having all data in single call back [2485](https://github.com/TileDB-Inc/TileDB/pull/2485)
* Write queries should post start/end timestamps for REST arrays [2492](https://github.com/TileDB-Inc/TileDB/pull/2492)

API additions

* Introduce new `tiledb_experimental.h` c-api header for new feature that don't have a stabilized api yet [2453](https://github.com/TileDB-Inc/TileDB/pull/2453)
* Introduce new `tiledb_experimental` cpp-api header for new feature that don't have a stabilized api yet [2453](https://github.com/TileDB-Inc/TileDB/pull/2462)

C API

* Refactoring [get/set]_buffer APIs [2315](https://github.com/TileDB-Inc/TileDB/pull/2315)
* Add `tiledb_fragment_info_get_array_schema` functions for getting the array schema of a fragment [2468](https://github.com/TileDB-Inc/TileDB/pull/2468)
* Add `tiledb_schema_evolution_t` and new apis for schema evolution [2426](https://github.com/TileDB-Inc/TileDB/pull/2426)

C++ API

* Refactoring [get/set]_buffer APIs [2399](https://github.com/TileDB-Inc/TileDB/pull/2399)
* Add `FragmentInfo::array_schema` functions for getting the array schema of a fragment [2468](https://github.com/TileDB-Inc/TileDB/pull/2468)
* Add `ArraySchemaEvolution` to cpp_api and its unit tests are also added. [2462](https://github.com/TileDB-Inc/TileDB/pull/2462)

2.3.4

Improvements

* `Query::set_layout`: setting the layout on the subarray. [2451](https://github.com/TileDB-Inc/TileDB/pull/2451)
* Allow empty attribute writes. [2461](https://github.com/TileDB-Inc/TileDB/pull/2461)

Bug fixes

* Fix deserialization of buffers in write queries with nullable var-length attributes [2442](https://github.com/TileDB-Inc/TileDB/pull/2442)

2.3.3

Improvements
* Consolidate `_nonempty_domain_var` into `nonempty_domain` [632](https://github.com/TileDB-Inc/TileDB-Py/pull/632)
* Support more valid Python syntax for `QueryCondition` statements [636](https://github.com/TileDB-Inc/TileDB-Py/pull/636)
* Addition of `ascii` dtype to `Attr` allows `QueryCondition` to support var-length strings [637](https://github.com/TileDB-Inc/TileDB-Py/pull/637)

TileDB-Py 0.9.4 Release Notes

Improvements
* Support pickling for arrays in write-mode [626](https://github.com/TileDB-Inc/TileDB-Py/pull/626)

Bug Fixes
* Fixed multi-range indexer to default to explicitly pass in the non-empty domain if dimensions are unspecified [630](https://github.com/TileDB-Inc/TileDB-Py/pull/630)

TileDB-Py 0.9.3 Release Notes

Packaging Notes
* Due to a packaging issue released with 0.9.3 (NumPy ABI compatibility with NumPy < 1.20 for Python 3.8), this section is intentionally left blank.

TileDB-Py 0.9.2 Release Notes

Packaging Notes
* Fixed release builder ordering issue which led to CRLF line endings in 0.9.1 source distribution.

API Changes
* Deprecate `Array.timestamp` and replace with `Array.timestamp_range` [616](https://github.com/TileDB-Inc/TileDB-Py/pull/616)

Improvements
* Set `ArraySchema.tile_order=None` for Hilbert-ordered arrays [609](https://github.com/TileDB-Inc/TileDB-Py/pull/609)
* Use CIBW to build release wheels on Linux [613](https://github.com/TileDB-Inc/TileDB-Py/pull/613)
* Addition of Pickling functionality for `SparseArray` [618](https://github.com/TileDB-Inc/TileDB-Py/pull/618)

TileDB-Py 0.9.1 Release Notes

TileDB Embedded updates:

2.3.2

Improvements
* Support more env selectable options in both azure-windows.yml and azure-windows-release.yml [2384](https://github.com/TileDB-Inc/TileDB/pull/2384)
* Enable Azure/Serialization for windows CI artifacts [2400](https://github.com/TileDB-Inc/TileDB/pull/2400)

Bug fixes
* Correct check for last offset position so that undefined memory is not accessed. [2390](https://github.com/TileDB-Inc/TileDB/pull/2390)
* Fix ch8416, failure to read array written with tiledb 2.2 via REST [2404](https://github.com/TileDB-Inc/TileDB/pull/2404)
* Fix ch7582: use the correct buffer for validity deserialization [2407](https://github.com/TileDB-Inc/TileDB/pull/2407)

2.3.1

Improvements
* Support passing a timestamp range for consolidation and vacuuming [603](https://github.com/TileDB-Inc/TileDB-Py/pull/603)

Bug Fixes
* FragmentInfo API's to_vacuum_uri() function corrected to iterate through `to_vacuum_num` rather than `fragment_num`[603](https://github.com/TileDB-Inc/TileDB-Py/pull/603)
* Return "NA" For ArraySchema.tile_order if "Hilbert" [605](https://github.com/TileDB-Inc/TileDB-Py/pull/605)

TileDB-Py 0.9.0 Release Notes

TileDB Embedded updates:
* TileDB-Py 0.9.0 includes TileDB Embedded [TileDB 2.3](https://github.com/TileDB-Inc/TileDB/releases/tag/2.3) with a significant
number of new features and improvements.

Packaging Notes
* Windows wheels are now built with TileDB Cloud REST support enabled [541](https://github.com/TileDB-Inc/TileDB-Py/pull/541)

Improvements
* Addition of `QueryCondition` API to filter query on attributes [576](https://github.com/TileDB-Inc/TileDB-Py/pull/576)

Bug Fixes
* Fixed `from_pandas` append error for sparse arrayse: no need to specify 'row_start_idx' [593](https://github.com/TileDB-Inc/TileDB-Py/pull/593)
* Fixed 'index_dims' kwarg handling for `from_pandas` [590](https://github.com/TileDB-Inc/TileDB-Py/pull/590)

API Changes
* `from_dataframe` function has been removed; deprecated in TileDB-Py 0.6 and replaced by `from_pandas`.

---

TileDB-Py 0.8.11 Release Notes

Bug fixes
* Fixed incorrect NumPy ABI target in Linux wheels [590](https://github.com/TileDB-Inc/TileDB-Py/pull/590)
* QueryCondition API will cast condition values to the datatype of the corresponding attribute [589](https://github.com/TileDB-Inc/TileDB-Py/pull/589)
* QueryCondition API errors out when there are mismatched attributes to `query`'s `attr_cond` and `attrs` arguments [589](https://github.com/TileDB-Inc/TileDB-Py/pull/589)
* QueryCondition API can now parse negative numbers [589](https://github.com/TileDB-Inc/TileDB-Py/pull/589)


TileDB-Py 0.8.10 Release Notes

Improvements
* Disabled libtiledb Werror compilation argument for from-source builds via setup.py [574](https://github.com/TileDB-Inc/TileDB-Py/pull/574)
* Relaxed NumPy version requirements for from-source builds via setup.py [575](https://github.com/TileDB-Inc/TileDB-Py/pull/575)

Bug fixes
* Fixed FragmentInfoList where context was not being passed to ArraySchema [573](https://github.com/TileDB-Inc/TileDB-Py/pull/573)
* Fixed FragmentInfoList where context was not being passed to ArraySchema [578](https://github.com/TileDB-Inc/TileDB-Py/pull/578)
* Fixed read bug due to large estimated result size [579](https://github.com/TileDB-Inc/TileDB-Py/pull/579)
* Fixed bug reading nullable attributes due to missing buffer resize [581](https://github.com/TileDB-Inc/TileDB-Py/pull/581)
* Fixed Python output for `tiledb.stats_dump` [586](https://github.com/TileDB-Inc/TileDB-Py/pull/586)

TileDB-Py 0.8.9 Release Notes

TileDB Embedded updates:

Page 15 of 33

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.