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

(chore): generate 0.11.0rc1 release notes #1656

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
32 changes: 32 additions & 0 deletions docs/release-notes/0.11.0rc1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
(v0.11.0rc1)=
### 0.11.0rc1 {small}`2024-09-04`

### Breaking changes

- Removed deprecated modules `anndata.core` and `anndata.readwrite` {user}`ivirshup` ({pr}`1197`)
- No longer export `sparse_dataset` from `anndata.experimental`, instead exporting {func}`anndata.sparse_dataset` {user}`ilan-gold` ({pr}`1642`)
- Move `RWAble` and `InMemoryElem` out of `experimental`, renaming `RWAble` to {type}`~anndata.typing.AxisStorable` and `InMemoryElem` to {type}`~anndata.typing.RWAble` {user}`ilan-gold` ({pr}`1643`)

### Development Process

- create new `cupy` installation options for cuda 11 & 12 called `cu11` and `cu12` {user}`Intron7` ({pr}`1596`)

### Documentation

- Correct {attr}`anndata.AnnData.X` type to include {class}`~anndata.abc.CSRDataset` and {class}`~anndata.abc.CSCDataset` as possible types and being deprecation process for non-csr/csc {class}`scipy.sparse.spmatrix` types in {attr}`anndata.AnnData.X` {user}`ilan-gold` ({pr}`1616`)

### Features

- `scipy.sparse.csr_array` and `scipy.sparse.csc_array` are now supported when constructing `AnnData` objects {user}`ilan-gold` {user}`isaac-virshup` ({pr}`1028`)
- Allow `axis` parameter of e.g. :func:`anndata.concat` to accept `'obs'` and `'var'` {user}`flying-sheep` ({pr}`1244`)
- Add `settings` object with methods for altering internally-used options, like checking for uniqueness on `obs`' index {user}`ilan-gold` ({pr}`1270`)
- Add {attr}`~anndata.settings.shall_remove_unused_categories` option to {attr}`anndata.settings` to override current behavior {user}`ilan-gold` ({pr}`1340`)
- Add :func:`~anndata.experimental.read_elem_as_dask` function to handle i/o with sparse and dense arrays {user}`ilan-gold` ({pr}`1469`)
- Add ability to convert strings to categoricals on write in {meth}`~anndata.AnnData.write_h5ad` and {meth}`~anndata.AnnData.write_zarr` via `convert_strings_to_categoricals` parameter {user}` falexwolf` ({pr}`1474`)
- Add {attr}`~anndata.settings.shall_check_uniqueness` option to {attr}`anndata.settings` to override current behavior {user}`ilan-gold` ({pr}`1507`)
- Add functionality to write from GPU {class}`dask.array.Array` to disk {user}`ilan-gold` ({pr}`1550`)
- Read and write support for nullable string arrays ({class}`pandas.arrays.StringArray`).
Use pandas’ {doc}`pandas:user_guide/options` `mode.string_storage` to control which storage mode is used when reading `dtype="string"` columns.
{user}`flying-sheep` ({pr}`1558`)
- Export {func}`~anndata.write_elem` and {func}`~anndata.read_elem` directly from the main package instead of `experimental` {user}`ilan-gold` ({pr}`1598`)
- Allow reading sparse data (via {func}`~anndata.read_elem` or {func}`~anndata.sparse_dataset`) into either {class}`scipy.sparse.csr_array` or {class}`scipy.sparse.csc_array` via {attr}`anndata.settings.shall_use_sparse_array_on_read` {user}`ilan-gold` ({pr}`1633`)
1 change: 0 additions & 1 deletion docs/release-notes/1028.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/release-notes/1197.breaking.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/release-notes/1244.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/release-notes/1270.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/release-notes/1340.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/release-notes/1469.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/release-notes/1474.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/release-notes/1507.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/release-notes/1550.feature.md

This file was deleted.

3 changes: 0 additions & 3 deletions docs/release-notes/1558.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/release-notes/1596.dev.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/release-notes/1598.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/release-notes/1616.doc.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/release-notes/1633.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/release-notes/1642.breaking.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/release-notes/1643.breaking.md

This file was deleted.

Loading