Dask-awkward

Latest version: v2024.9.0

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

Scan your dependencies

Page 5 of 8

2023.9.0

What's Changed

New features

* feat: configuration can handle list of optimizations to run by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/341
* feat: add internal `_bytes_with_sample` for creating bytes reading instructions by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/357
* feat: add custom pickle implementation by agoose77 in https://github.com/dask-contrib/dask-awkward/pull/354

Fixes

* fix: sync `to_parquet` arguments by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/334
* fix: parquet list separator by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/347
* fix: xfail some parquet tests due to `item -> element` change in pyarrow 13 by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/352

Misc

* ci: add uprootmain `pytest -k dask` run by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/342
* docs: reorganize directories; add goatcounter by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/345
* docs: fix goatcounter link by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/348
* ci: use fetch-depth 0 to get tags for correct versioning by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/350
* refactor: use `ak.typetracer.touch_data` by agoose77 in https://github.com/dask-contrib/dask-awkward/pull/349
* refactor: use `ak.typetracer.XX` high-level functions by agoose77 in https://github.com/dask-contrib/dask-awkward/pull/351
* various pre-commit autoupdates

**Full Changelog**: https://github.com/dask-contrib/dask-awkward/compare/2023.8.1...2023.9.0

2023.8.1

What's Changed

Fixes

* fix: add `lib` modules to top level import; enable simple downstream test in CI by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/336


**Full Changelog**: https://github.com/dask-contrib/dask-awkward/compare/2023.8.0...2023.8.1

2023.8.0

What's Changed

Features

* feat: add new attribute for when divisions are known by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/326

Fixes
* fix: make `dak.Array` copy-able by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/324
* fix: better error message when no collections passed to `map_partitions`. by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/325
* fix: Lazy `dak.num(..., axis=0)` (or negative axis that is equivalent to `axis=0`) by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/333
* fix: sync `from_parquet` function arguments with upstream awkward version by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/328
* fix: `from_awkward` compatible with empty arrays by jrueb in https://github.com/dask-contrib/dask-awkward/pull/330


Misc

* chore: rename `schema` -> `form` in internal parquet code by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/320
* chore: add main API functions & classes to top level `__init__.py` by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/331


**Full Changelog**: https://github.com/dask-contrib/dask-awkward/compare/2023.7.1...2023.8.0

2023.7.1

What's Changed

Fixes

* fix: in optimization pass only ask scheduler for a single compute by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/318
* fix: make `unproject_layout` do nothing (reverting form rehydration) by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/319


**Full Changelog**: https://github.com/dask-contrib/dask-awkward/compare/2023.7.0...2023.7.1

2023.7.0

What's Changed

Features
* feat: add `Array.__awkward_function__` method by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/295
* feat: add `drop_none` method by iasonkrom in https://github.com/dask-contrib/dask-awkward/pull/298
* feat: support for `dask.array` collections in `map_partitions` by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/311
* feat: do partition compat. checks with `PartitionCompatibility` sum type by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/304
* feat: add `repartition` method by martindurant in https://github.com/dask-contrib/dask-awkward/pull/253


Fixes
* fix: remove passing xfail by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/296
* fix: ensure that we can `dask.compute` multiple collections simultaneously by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/312
* fix: more cases where `output_divisions=1` should be used by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/303


Misc

* chore: bump awkward requirement (NDArrayOperatorMixin for behaviors fix) by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/297
* chore: Add dependabot.yml by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/309
* docs: format docs with blacken-docs by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/310
* [pre-commit.ci] pre-commit autoupdate by pre-commit-ci in https://github.com/dask-contrib/dask-awkward/pull/306
* [pre-commit.ci] pre-commit autoupdate by pre-commit-ci in https://github.com/dask-contrib/dask-awkward/pull/302

New Contributors
* iasonkrom made their first contribution in https://github.com/dask-contrib/dask-awkward/pull/298

**Full Changelog**: https://github.com/dask-contrib/dask-awkward/compare/2023.6.3...2023.7.0

2023.6.3

What's Changed

Features

* feat: add mock-able `AwkwardTreeReductionLayer` class by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/290
* feat: add comprehensive `axis=0` and `axis=None` reduction by agoose77 in https://github.com/dask-contrib/dask-awkward/pull/267
* feat(map_partitions): allow for dask collections to be passed as kwargs or as part of higher level structures by lgray in https://github.com/dask-contrib/dask-awkward/pull/294

Fixes

* fix: use pytest `tmp_path_factory` over legacy `tmpdir_factory` by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/288
* fix: in `unproject_layout` protect against `None` form; add docstring by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/289
* fix: update NDArrayOperatorMixin import to awkward's by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/293

Misc

* refactor: harden tests by adjusting current array-providing fixtures by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/277
* [pre-commit.ci] pre-commit autoupdate by pre-commit-ci in https://github.com/dask-contrib/dask-awkward/pull/291
* chore: cleaning out old, unused code by douglasdavis in https://github.com/dask-contrib/dask-awkward/pull/292


**Full Changelog**: https://github.com/dask-contrib/dask-awkward/compare/2023.6.2...2023.6.3

Page 5 of 8

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.