Skip to content

2.13.0a2 release notes #1126

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

Merged
merged 7 commits into from
Sep 8, 2022
Merged
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
14 changes: 9 additions & 5 deletions docs/_static/custom.css
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
/* override text color */
.wy-menu-vertical a {
color: #000000;
}

/* Sidebar background color */
.wy-nav-side, div.wy-side-nav-search {
background-color: rgb(38, 34, 98, 0); /* full alpha */
background-color: rgb(198, 197, 213, 0); /* full alpha */
}

/* Sidebar link click color */
.wy-menu-vertical .toctree-l1 > a:active {
background-color: rgb(38, 34, 98);
color: rgb(252, 252, 252);
background-color: rgb(198, 197, 213);
color: rgb(0, 0, 0);
}

/* Link color is darker to make hovering more clear */
.wy-menu-vertical .toctree-l1 > a:hover {
background-color: rgb(25, 22, 65);
color: rgb(252, 252, 252);
background-color: rgb(198, 197, 213);
color: rgb(0, 0, 0);
}

.wy-menu-vertical li.current > a:hover, .wy-menu-vertical li.current > a:active {
Expand Down
41 changes: 33 additions & 8 deletions docs/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,34 +21,59 @@ Release notes
Major changes
~~~~~~~~~~~~~

* Remove support for Python 3.7 in concert with NumPy dependency.
By :user:`Davis Bennett <d-v-b>`; :issue:`1067`.
* **Support of alternative array classes** by introducing a new argument,
meta_array, that specifies the type/class of the underlying array. The
meta_array argument can be any class instance that can be used as the like
argument in NumPy (see `NEP 35
<https://numpy.org/neps/nep-0035-array-creation-dispatch-with-array-function.html>`_).
enabling support for CuPy through, for example, the creation of a CuPy CPU
compressor.
By :user:`Mads R. B. Kristensen <madsbk>` :issue:`934`.

* **Remove support for Python 3.7** in concert with NumPy dependency.
By :user:`Davis Bennett <d-v-b>` :issue:`1067`.

* **Zarr v3: add support for the default root path** rather than requiring
that all API users pass an explicit path.
By :user:`Gregory R. Lee <grlee77>` :issue:`1085`.


Bug fixes
~~~~~~~~~

* Remove/relax erroneous "meta" path check (**regression**).
By :user:`Gregory R. Lee <grlee77>` :issue:`1123`.

* Cast all attribute keys to strings (and issue deprecation warning).
By :user:`Mattia Almansi <malmans2>` :issue:`1066`.

* Fix bug in N5 storage that prevented arrays located in the root of the hierarchy from
bearing the `n5` keyword. Along with fixing this bug, new tests were added for N5 routines
that had previously been excluded from testing, and type annotations were added to the N5 codebase.
By :user:`Davis Bennett <d-v-b>`; :issue:`1092`.
By :user:`Davis Bennett <d-v-b>` :issue:`1092`.

* Fix bug in LRUEStoreCache in which the current size wasn't reset on invalidation.
By :user:`BGCMHou <BGCMHou>` and :user:`Josh Moore <joshmoore>` :issue:`1076`, :issue:`1077`.

* Remove erroneous check that disallowed array keys starting with "meta".
By :user:`Gregory R. Lee <grlee77>`; :issue:`1105`.
By :user:`Gregory R. Lee <grlee77>` :issue:`1105`.

Documentation
~~~~~~~~~~~~~

* Typo fixes to close quotes. By :user:`Pavithra Eswaramoorthy <pavithraes>`
* Added copy button to documentation :user:`Altay Sansal <tasansal>`

* Added copy button to documentation.
By :user:`Altay Sansal <tasansal>` :issue:`1124`.

Maintenance
~~~~~~~~~~~

* Simplify release docs.
By :user:`Josh Moore <joshmoore>` :issue:`1119`.

* Pin werkzeug to prevent test hangs.
By :user:`Davis Bennett <d-v-b>`; :issue:`1098`.
By :user:`Davis Bennett <d-v-b>` :issue:`1098`.

* Fix a few DeepSource.io alerts
By :user:`Dimitri Papadopoulos Orfanos <DimitriPapadopoulos>` :issue:`1080`.
Expand All @@ -63,10 +88,10 @@ Maintenance
By :user:`Saransh Chopra <Saransh-cpp>` :issue:`1079`.

* Remove option to return None from _ensure_store.
By :user:`Greggory Lee <grlee77>`; :issue:`1068`.
By :user:`Greggory Lee <grlee77>` :issue:`1068`.

* Fix a typo of "integers".
By :user:`Richard Scott <RichardScottOZ>`; :issue:`1056`.
By :user:`Richard Scott <RichardScottOZ>` :issue:`1056`.

.. _release_2.12.0:

Expand Down