Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: release 1.11 branch #250

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,56 @@
# Changelog

## 1.11.0 (2025-XX-XX)

### Major Changes

This release targets the 2024.12 Array API revision. This includes

- `__array_api_version__` for the wrapped APIs is now set to `2024.12`; **TODO**
Comment on lines +7 to +9
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
This release targets the 2024.12 Array API revision. This includes
- `__array_api_version__` for the wrapped APIs is now set to `2024.12`; **TODO**
This release introduces partial compatibility with the 2024.12 Array API draft.
The `__array_api_version__` for the wrapped APIs remains set to `2023.12`
for the time being. Changes include:

- Wrappers for `count_nonzero`;
- Wrappers for `cumulative_prod`;
- Wrappers for `take_along_axis` (with the exception of Dask);
- Wrappers for `diff`;
- `__capabilities__` dict contains a `max_dimensions` key;
- Python scalars are accepted as arguments to `result_type`;
- `fft.fftfreq` and `fft.rfftfreq` functions now accept an optional `dtype`
argument to control the output data type.

New functions to test properties of arrays:
- `is_writeable_array` (benefits NumPy, JAX, Sparse)
- `is_lazy_array` (benefits JAX, Dask, ndonnx)

Improved support for JAX:
- Work arounds for `.device` attribute and `to_device` function
not working correctly within `jax.jit`

### Minor Changes

- Several improvements to `dask.array` wrappers:

- `size` returns None for arrays of unknown shapes.
- `astype(..., copy=True)` always copies, independently of the Dask version.
- implementations of `sort` and `argsort` are now available. Note that these
implementations are relatively crude, and might be memory intensive.
- `asarray` no longer accidentally materializes the Dask graph
- `torch` wrappers contain unsigned integer dtypes of widths >8 bits, `uint16`,
`uint32` and `uint64` if PyTorch version is at least 2.3. Note that the
unsigned int support for PyTorch is incomplete and will be improved in a
future release.

### Authors

The following users contributed to this release:

Athan Reines
Guido Imperiale
Evgeni Burovski
Guido Imperiale
Lucas Colley
Ralf Gommers
Thomas Li


## 1.10.0 (2024-12-25)

### Major Changes
Expand Down
Loading