Release notes¶
0.5.0 (2026-08-14)¶
Bugfixes¶
JSONValue's array arm is now the covariantSequence["JSONValue"]rather than the invariantlist["JSONValue"] | tuple["JSONValue", ...]. Values typed with a narrower element type — alist[str]field on a TypedDict, aSequence[float]— now count as JSON values, and TypedDicts whose fields carry precise types are now assignable toMapping[str, JSONValue]. Type-level cost, accepted deliberately:Sequencesays nothing about the concrete container and admitsstr/bytes, so runtime code narrowing a JSON array must excludestr/bytes/bytearray— as it already had to, sincestrwas always a union arm. (#4264)
Deprecations and Removals¶
-
Unified the naming grammar for SCREAMING_SNAKE constants with the one used for type names. A constant's name is now a purely syntactic transformation of the name of the
Literaltype it manifests, so the format version is spelledZARR_V2/ZARR_V3and comes first, matching theZarrV2/ZarrV3prefix on the corresponding type: -
ARRAY_METADATA_STORE_KEY_V2→ZARR_V2_ARRAY_METADATA_STORE_KEY ARRAY_METADATA_STORE_KEY_V3→ZARR_V3_ARRAY_METADATA_STORE_KEYATTRIBUTES_STORE_KEY_V2→ZARR_V2_ATTRIBUTES_STORE_KEYGROUP_METADATA_STORE_KEY_V2→ZARR_V2_GROUP_METADATA_STORE_KEYGROUP_METADATA_STORE_KEY_V3→ZARR_V3_GROUP_METADATA_STORE_KEYCONSOLIDATED_METADATA_STORE_KEY_V2→ZARR_V2_CONSOLIDATED_METADATA_STORE_KEYARRAY_ORDER_V2→ZARR_V2_ARRAY_ORDERARRAY_DIMENSION_SEPARATOR_V2→ZARR_V2_ARRAY_DIMENSION_SEPARATORCONSOLIDATED_METADATA_KEY_V3→ZARR_V3_CONSOLIDATED_METADATA_KEY
The old names are removed, not aliased. This supersedes the 0.4.0 convention
under which type names put the format version first while constants put it
last: every constant that manifests a Literal type now follows the same rule
as that type.
The last of those is the one rename the syntactic rule does not force:
ZARR_V3_CONSOLIDATED_METADATA_KEY manifests no Literal type, so it is
outside the rule and was renamed for consistency with its siblings.
Digit runs stay glued to the token they follow, so spec vocabulary is
preserved: Uint8DataTypeName pairs with UINT8_DATA_TYPE_NAME (not
UINT_8_...) and Crc32cCodecName with CRC32C_CODEC_NAME. No dtype, codec,
chunk-grid, or chunk-key-encoding constant changed name.
Constants that do not manifest a Literal type are outside the rule and are
unchanged: the *_METADATA_*_KEYS_V2/_V3 key sets, the
CANONICAL_*_HEX_FLOAT* bit patterns, and UNSET. The key sets keep the
version-last spelling, so zarr_metadata.model exports both
ARRAY_METADATA_REQUIRED_KEYS_V2 and ZARR_V2_ARRAY_METADATA_STORE_KEY. They
name validation policy rather than a spec document, have no paired type to
derive from, and renaming them would be a second breaking change buying only
cosmetic consistency — so it is deliberately deferred.
tests/test_public_api.py::test_constant_names_derive_from_their_type_names
derives every constant name from the type it manifests and asserts they match,
so the two grammars cannot diverge again.
Store keys also moved to the modules that describe the documents they name,
matching the package's layering (the v2/v3 modules describe the specs; the
model layer is built on top of them). ZARR_V2_ATTRIBUTES_STORE_KEY now
lives in zarr_metadata.v2.attributes beside the .zattrs type it names,
rather than in the array model; the other five moved likewise, and
ZarrV2AttributesStoreKey is no longer an array-specific concept.
zarr_metadata.model re-exports all six, so
from zarr_metadata.model import ZARR_V2_ARRAY_METADATA_STORE_KEY is
unaffected.
CONSOLIDATED_METADATA_KEY_V3 moved to zarr_metadata.v3.consolidated and was
renamed to ZARR_V3_CONSOLIDATED_METADATA_KEY for consistency. It is not a
store key: unlike v2's .zmetadata file, v3 consolidated metadata is embedded
as an extension field inside the group's own zarr.json.
All seven keys and the six store-key Literal aliases are now also exported
from the top-level zarr_metadata namespace, alongside the document types and
the rest of the spec vocabulary, so from zarr_metadata import
ZARR_V2_ARRAY_METADATA_STORE_KEY works. The model layer's validators, parsers,
type guards, and metadata key sets remain zarr_metadata.model imports.
(#4232)
Misc¶
- The source distribution now ships an explicit allowlist (
/src,/tests,/docs,/mkdocs.yml,/justfile,/CHANGELOG.md) rather than whatever happens to sit in the package directory, so an sdist both tests and documents itself and cannot pick up scratch files from the tree it was built in. (#4248)
0.4.0 (2026-07-29)¶
Features¶
- Added
zarr_metadata.model: frozen-dataclass models (ZarrV2ArrayMetadata,ZarrV3ArrayMetadata,ZarrV2GroupMetadata,ZarrV3GroupMetadata,ZarrV2ConsolidatedMetadata,ZarrV3ConsolidatedMetadata,ZarrV3NamedConfig) that are canonical, semantically lossless representations of Zarr metadata documents, plus structural validators (validate_*/is_*/parse_*). Every v3 extension point (data type, chunk grid, chunk key encoding, codecs, storage transformers) is held asZarrV3NamedConfig: a name, configuration, andmust_understandobligation; nothing is interpreted. On the wire, an empty configuration with the default obligation uses the spec's plain-string shorthand. Model fields are annotated with the role aliasZarrV3MetadataField(today exactlyZarrV3NamedConfig), so annotations convey the logical meaning and stay put if the spec adds another field form.
Validation is strict about what the types declare: v2 dtype / order /
compressor / filters / dimension_separator shapes and the fixed
zarr_format / node_type literals are all enforced. Every
ValidationProblem carries a machine-readable kind
(missing_key / invalid_type / invalid_value / invalid_json) so
consumers can dispatch on the failure mode without matching message strings,
and every ingestion failure — including missing store keys and undecodable
bytes in from_key_value — surfaces as MetadataValidationError. An
adversarial review added further structural checks: JSON booleans are not
accepted as dimension lengths, dimensions are non-negative,
dimension_names must have one entry per dimension of shape, attributes
and configuration values are JSON-checked recursively (like fill_value),
non-finite floats and non-standard JSON constants are rejected, abstract
mappings and sequences normalize to encoder-safe canonical containers,
v2 shape and chunks must have the same rank, non-null v2 filter pipelines
contain at least one filter, document TypeIs guards only narrow values that
already use the declared canonical containers,
and the inline consolidated-metadata envelope and entries are deep-validated
so the group validator's verdict always agrees with the model constructor.
The v3 models expose must_understand_fields: the subset of extra_fields
not explicitly waived with must_understand: false (fields are implicitly
must-understand per the spec). Readers discharge the spec's fail-to-open
duty by subtracting the extension names they recognize; the model only
partitions by obligation, since recognition is reader-specific.
Optional pydantic integration ships as zarr_metadata.pydantic (importing it
requires pydantic 2.13 or newer; the core package does not depend on it): one
Annotated
field type per model, validating raw documents through from_json, passing
core-model instances through unchanged, serializing via to_json, and
publishing JSON Schemas derived from private constrained document types that
mirror the independently expressible runtime rules. Cross-field cardinality
relations still require runtime validation. The instances are the core model
classes, so values interoperate freely with non-pydantic code.
create_default keeps its output self-consistent: overriding shape without
a chunk grid derives one regular chunk covering the array (v3
chunk_shape == shape; v2 chunks == shape) instead of silently keeping the
scalar default's 0-d grid.
A v2 .zarray that omits dimension_separator is interpreted with the v2
convention's default "." (the model previously normalized absence to "/",
which would misaddress the chunks of real-world default-separator arrays).
The value is never null: absent, ".", or "/" are the only spellings.
Optional document keys use UNSET — a PEP 661 sentinel
(typing_extensions.Sentinel), usable directly in type expressions — never
None: in a model, None always corresponds to a JSON null in the
document (a v2 compressor, an unnamed dimension inside dimension_names),
and UNSET always means the key is absent. Checker note: ty types the
sentinel exactly; pyright needs <= 1.1.404 until microsoft/pyright#11115
is fixed (this package's CI pins it); mypy users need a cast or
type: ignore at narrowing sites until python/mypy#21647 merges. This keeps semantically distinct spellings
distinct — an absent dimension_names ("there are no dimension names") and
an explicit [null, null] ("every dimension has a name, which is null") are
different documents and round-trip as such. The consolidated_metadata: null
written by a historical zarr-python bug is the one deliberate exception to
faithful round-tripping: those stores remain readable, but the bug spelling
is repaired to absence on read and never written back.
The v2 models treat the .zattrs file's presence as part of the store:
attributes is UNSET when no .zattrs file exists (and to_key_value
emits none), while an explicit empty .zattrs is {} and round-trips as a
file. Previously to_key_value always emitted .zattrs, silently adding a
file to stores that never had one.
The store-key Literal aliases (ZarrV2ArrayMetadataStoreKey,
ZarrV2AttributesStoreKey, ...) are exported from zarr_metadata.model
alongside their constants, and each to_key_value return type is keyed by
them, so the set of store keys a model can emit is visible in its signature.
from_key_value deliberately keeps Mapping[str, bytes] input: it accepts
any string-keyed store mapping and ignores unrelated keys.
to_json returns a document that shares no mutable state with the model:
every value that can hold a mutable container (attributes, configurations,
extra fields, v2 codec configurations, fill values, consolidated entries) is
deep-copied on the way out, so editing a serialized document can never
silently mutate the frozen model that produced it. (#4119)
Improved Documentation¶
zarr-metadatanow has a standalone documentation site at https://zarr-metadata.readthedocs.io/, with a comprehensive API reference covering every public module, versioned by this package's release tags. The package also gained ajustfilecollecting its development commands (test,lint,typecheck,docs-check,docs-serve,changelog-draft), which the package CI workflow now delegates to. (#4208)
Deprecations and Removals¶
-
The document (TypedDict) types are renamed to put the format version at the front of the name and to mark the JSON-document form with a
JSONsuffix, so a format version can never be misread as a class revision and the bare entity names are reserved for thezarr_metadata.modeldataclasses: -
ArrayMetadataV2→ZarrV2ArrayMetadataJSON(and...Partialaccordingly) ArrayMetadataV3→ZarrV3ArrayMetadataJSON(and...Partialaccordingly)GroupMetadataV2→ZarrV2GroupMetadataJSON(and...Partialaccordingly)GroupMetadataV3→ZarrV3GroupMetadataJSON(and...Partialaccordingly)ConsolidatedMetadataV2→ZarrV2ConsolidatedMetadataJSONConsolidatedMetadataV3→ZarrV3ConsolidatedMetadataJSONNamedConfigV3→ZarrV3NamedConfigJSONMetadataV3→ZarrV3MetadataFieldJSON(the union of the bare-name and named-configuration spellings of one metadata field)ExtensionFieldV3→ZarrV3ExtensionFieldCodecMetadataV2→ZarrV2CodecMetadataDataTypeMetadataV2→ZarrV2DataTypeMetadataArrayOrderV2→ZarrV2ArrayOrderArrayDimensionSeparatorV2→ZarrV2ArrayDimensionSeparatorZArrayMetadata→ZarrV2ZArrayJSON(the strict on-disk.zarraydocument)ZGroupMetadata→ZarrV2ZGroupJSON(the strict on-disk.zgroupdocument)ZAttrsMetadata→ZarrV2ZAttrsJSON(the.zattrsdocument)
The old names are removed, not aliased. The zarr_metadata.pydantic field
types take the bare entity names (ZarrV3ArrayMetadata, ...), matching the
model classes they validate into.
The conventions, stated once for future additions: CamelCase type names put
the format version first (ZarrV2ArrayMetadataJSON,
ZarrV3ArrayMetadataStoreKey), while SCREAMING_SNAKE constants and
snake_case functions put it last (ARRAY_METADATA_STORE_KEY_V2,
validate_array_metadata_v3). The JSON suffix marks a raw-document type
whose bare name is taken by (or reserved for) a zarr_metadata.model
dataclass; raw field-level types the models hold verbatim
(ZarrV2CodecMetadata, ZarrV3ExtensionField) keep their bare names.
Extension-entity types put the registered entity name first and end in
exactly one role suffix (BloscCodecMetadata, Uint8DataTypeName) — the
V2 in V2ChunkKeyEncodingMetadata is that encoding's entity name, not a
format version, which is always spelled ZarrV2/ZarrV3. Every public
type name is checked against this grammar by
tests/test_public_api.py::test_public_type_names_comply_with_naming_grammar.
(#4119)
0.3.0 (2026-06-19)¶
Deprecations and Removals¶
- Introduces a new
JSONValuetype that models python objects that serialize directly to JSON. This type is used to annotate the contents ofattributesandfill_valuefields, replacing the use of the overly wideobjecttype. This is technically a breaking change. (#4037) - Promoted a curated "front door" of names to the top-level
zarr_metadatanamespace, so consumers can write e.g.from zarr_metadata import ArrayMetadataV3, ShardingIndexLocation, BLOSC_CNAMEinstead of importing from deep submodule paths. The front door covers every metadata-document TypedDict, each codec/chunk-grid/chunk-key-encoding canonical type, the full data-type trio for every dtype, and every constant +Literalpair. Deep submodule paths continue to work unchanged.
Several promoted names were given clearer, less ambiguous spellings than their
deep-module names, since they now appear bare at the top level:
Endian/ENDIAN → Endianness/ENDIANNESS,
IndexLocation/INDEX_LOCATION → ShardingIndexLocation/SHARDING_INDEX_LOCATION,
RoundingMode/ROUNDING_MODE → CastRoundingMode/CAST_ROUNDING_MODE,
OutOfRangeMode/OUT_OF_RANGE_MODE → CastOutOfRangeMode/CAST_OUT_OF_RANGE_MODE,
DateTimeUnit → NumpyTimeUnit,
NamedConfig → NamedConfigV3, and
MetadataFieldV3 → MetadataV3 (matching the name zarrs uses for this
name-or-{name, configuration} shape).
Also added the NUMPY_TIME_UNIT runtime constant (a Final tuple paired with
the NumpyTimeUnit Literal) in zarr_metadata.v3.data_type.numpy_timedelta64. (#4083)
0.2.0 (2026-05-19)¶
Bugfixes¶
GzipCodecConfiguration.levelis now required, andGzipCodecMetadatano longer accepts the bare-string"gzip"form. The codec's compressed output depends onlevel, so metadata that omits it cannot reproducibly identify the chunk bytes produced by a writer. Breaking for consumers that previously typed gzip codec metadata as the bare string or constructed aGzipCodecConfigurationwithoutlevel. (#3978)BytesCodecObject.configurationis nowNotRequired. The configuration has no required keys (endianis conditionally required at runtime based on data type), so the object form may omit it entirely — matching the bare-string short-hand. Soft-breaking for consumers that previously relied onconfigurationalways being present. (#3978)- Better modelling of Zarr v2 stored metadata. Zarr v2 splits a node's
metadata across two JSON documents (
.zarray/.zgroupand.zattrs), butGroupMetadataV2had noattributesfield whileArrayMetadataV2did — an inconsistency.GroupMetadataV2now also has an optionalattributesfield, andArrayMetadataV2.attributesis nowNotRequiredfor symmetry. Soft-breaking for consumers that relied onArrayMetadataV2.attributesalways being present. (#3962)
Features¶
- Added
ArrayMetadataV3Partial,GroupMetadataV3Partial,ArrayMetadataV2Partial, andGroupMetadataV2Partial— sibling TypedDicts to the existing full metadata types, declared withtotal=Falseso every field isNotRequired. Use these when typing dicts that intentionally hold a subset of a complete metadata document (test fixtures, fragment templates, in-progress builders). An equivalence test pins eachPartialto the keys and value types of its full sibling so the two cannot drift. (#3982) - Added three new top-level types modelling the strict on-disk shape
of Zarr v2 metadata documents:
ZArrayMetadata(the.zarrayfile),ZGroupMetadata(the.zgroupfile), andZAttrsMetadata(the.zattrsfile). Use these when you want a type that faithfully matches what's stored on disk; use the mergedArrayMetadataV2/GroupMetadataV2when you want the in-memory representation a Python program typically works with. (#3962) - Added typed constants exposing the spec-permitted values of constrained
Literal fields, importable at the per-codec module level. For example,
from zarr_metadata.v3.codec.bytes import ENDIANprovides("little", "big")as a tuple, enabling runtime iteration or validator generation without re-stating the Literal values by hand. (#3978)
0.1.1 (2026-05-06)¶
Misc¶
- First usable release on PyPI. Version 0.1.0 was uploaded then deleted to reserve the project name; this version is the first one PyPI will install. No source changes from 0.1.0. (#3949)
0.1.0 (2026-05-01)¶
Features¶
- Initial release. Provides
TypedDictdefinitions andLiteralaliases for the JSON shapes specified by Zarr v2 and v3 metadata, plus a subset ofzarr-extensionstypes and the un-specified-but-widely-used consolidated metadata documents. Pair with a runtime validator likepydanticto check JSON loaded from disk. (#3919)