chore(deps): bump the python-dependencies group across 1 directory with 7 updates - #283
Open
dependabot[bot] wants to merge 2 commits into
Open
chore(deps): bump the python-dependencies group across 1 directory with 7 updates#283dependabot[bot] wants to merge 2 commits into
dependabot[bot] wants to merge 2 commits into
Conversation
* fix: byte-order handling for structured dtypes in the bytes codec The bytes codec neither byte-swapped structured-dtype fields to its configured endian on encode (numpy reports byteorder '|' for void dtypes, so the top-level byteorder comparison never detected a mismatch) nor honored its endian when decoding, silently corrupting any structured data whose field byte order differed from the stored one (e.g. virtual references to external big-endian data). Encode now detects byte-order mismatches by comparing full dtypes via newbyteorder, and decode reinterprets raw bytes in the stored byte order before converting to the data type's declared byte order, so the stored layout (codec state) and the in-memory layout (array data type) are independent. Closes zarr-developers#4141 Assisted-by: ClaudeCode:claude-fable-5 * test: fold structured byte-order cases into existing bytes codec tests Extend test_endian's parametrization with structured dtypes and test_bytes_codec_sync_roundtrip with endian/dtype parametrization plus stored-layout and decoded-dtype assertions, instead of adding parallel test functions for the same properties. Assisted-by: ClaudeCode:claude-fable-5 * refactor: rename stored_dtype to view_dtype in BytesCodec decode The variable is the dtype used to view the raw chunk bytes (byte order from the codec's endian configuration), not a property of the stored data or of the returned buffer, which always carries the array's declared dtype. Assisted-by: ClaudeCode:claude-fable-5 * docs: note that the decode-side byte-order conversion copies the chunk Assisted-by: ClaudeCode:claude-fable-5
…th 7 updates Bumps the python-dependencies group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [fsspec](https://github.com/fsspec/filesystem_spec) | `2026.6.0` | `2026.7.0` | | [typer](https://github.com/fastapi/typer) | `0.27.0` | `0.27.1` | | [coverage](https://github.com/coveragepy/coveragepy) | `7.15.2` | `7.15.3` | | [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.160.0` | `6.165.0` | | [uv](https://github.com/astral-sh/uv) | `0.11.31` | `0.12.1` | | [ruff](https://github.com/astral-sh/ruff) | `0.16.0` | `0.16.1` | Updates `fsspec` from 2026.6.0 to 2026.7.0 - [Commits](fsspec/filesystem_spec@2026.6.0...2026.7.0) Updates `typer` from 0.27.0 to 0.27.1 - [Release notes](https://github.com/fastapi/typer/releases) - [Changelog](https://github.com/fastapi/typer/blob/master/docs/release-notes.md) - [Commits](fastapi/typer@0.27.0...0.27.1) Updates `coverage` from 7.15.2 to 7.15.3 - [Release notes](https://github.com/coveragepy/coveragepy/releases) - [Changelog](https://github.com/coveragepy/coveragepy/blob/main/CHANGES.rst) - [Commits](coveragepy/coveragepy@7.15.2...7.15.3) Updates `hypothesis` from 6.160.0 to 6.165.0 - [Release notes](https://github.com/HypothesisWorks/hypothesis/releases) - [Commits](HypothesisWorks/hypothesis@v6.160.0...v6.165.0) Updates `uv` from 0.11.31 to 0.12.1 - [Release notes](https://github.com/astral-sh/uv/releases) - [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md) - [Commits](astral-sh/uv@0.11.31...0.12.1) Updates `s3fs` from 2026.6.0 to 2026.7.0 - [Changelog](https://github.com/fsspec/s3fs/blob/main/release-procedure.md) - [Commits](https://github.com/fsspec/s3fs/commits/2026.7.0) Updates `ruff` from 0.16.0 to 0.16.1 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](astral-sh/ruff@0.16.0...0.16.1) --- updated-dependencies: - dependency-name: fsspec dependency-version: 2026.7.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: typer dependency-version: 0.27.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-dependencies - dependency-name: coverage dependency-version: 7.15.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: python-dependencies - dependency-name: hypothesis dependency-version: 6.165.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: uv dependency-version: 0.12.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: s3fs dependency-version: 2026.7.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: python-dependencies - dependency-name: ruff dependency-version: 0.16.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: python-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps the python-dependencies group with 6 updates in the / directory:
2026.6.02026.7.00.27.00.27.17.15.27.15.36.160.06.165.00.11.310.12.10.16.00.16.1Updates
fsspecfrom 2026.6.0 to 2026.7.0Commits
9e22b60Changelog (#2089)33e6da3Shut down background cache workers on file close (#2069)4adecd3tar: make members with duplicate slashes reachable via ls/find/glob (#1947) (...59f98d7Forward ls kwargs from cached filesystems (#2068)5e266e0Single-pass MemoryFileSystem.find() to avoid quadratic listing (#2055)19a042breplay DEP: de-duplicate and sort optional dependencies (#2021) (#2031)fec09b0Propagate storage_options to all backends resolved by GenericFileSystem (#185...dee64dbfixes for deprecation: https://docs.pytest.org/en/stable/deprecations.html#cl...7a9b98bPermit composite URI protocol schemes ininfer_storage_options(#2085)901282cFix incorrect glob docstring for '[!]' (empty negated class) (#2084)Updates
typerfrom 0.27.0 to 0.27.1Release notes
Sourced from typer's releases.
Changelog
Sourced from typer's changelog.
Commits
fe2aa0e🔖 Release version 0.27.1 (#1919)680dc99📝 Update release notesac3efd5✨ Makeepilogformatting consistent with other parts of the help string (#1...32d80ef📝 Update release notes10cb3c9⬆️ Upgrade latest-changes to 0.7.1 (#1909)ac329a0📝 Update release notesc37ae2f📝 Add Library Skills documentation (#1906)0974a7e📝 Update release notes951178c🐛 Prevent scroll-to-top on restart/fast buttons in the documentation (#1904)9051baa📝 Update release notesUpdates
coveragefrom 7.15.2 to 7.15.3Release notes
Sourced from coverage's releases.
Changelog
Sourced from coverage's changelog.
Commits
b7470d9docs: sample HTML for 7.15.327e6e80docs: prep for 7.15.3396dbbbbuild: include NOTICE in wheels (#2232)54dde05chore: bump the action-dependencies group with 7 updates (#2248)c83a0e0perf: skip AST parsing without soft keywords (#2240)a57f981refactor: fix some uncovered lines0252c34refactor: move numbits aggregate to numbits1c4184cdocs: maintainer workflowe8a1c87perf: speed up SQLite numbits aggregation (#2239)18c2a59test: conditional use of HypothesisUpdates
hypothesisfrom 6.160.0 to 6.165.0Commits
a11e4b4Bump hypothesis version to 6.165.0 and update changelog2e08ef3Merge pull request #4831 from Zac-HD/claude/codec-non-round-tripping-chars-hh...72bfab7Merge pull request #4838 from Zac-HD/website-fixtures-article6f1a14cOnly enforce 100% combined coverage when the python tests actually ran9153fd1Warn rather than raise for non-round-tripping characters1815cabWrite pytest consistently, and fix code block renderingcbcd1ccUpdate the pytest-fixtures article for the function-scoped health checkce7ef4aMerge pull request #4840 from Zac-HD/website-preview-pr-lookup8a4c803Fix PR lookup in the website preview workflowf94aae1Merge pull request #4836 from Zac-HD/claude/pr-build-live-preview-15crofUpdates
uvfrom 0.11.31 to 0.12.1Release notes
Sourced from uv's releases.
... (truncated)
Changelog
Sourced from uv's changelog.
... (truncated)
Commits
329541aBump version to 0.12.1 (#20867)a68f64bfix ost-simple-sts.json (#20866)a531d91Generate README files for issue context branches (#20862)3a9573cAdd--frozentouv runhook invocation (#20865)2a805bdRelocate script (#20864)d709d47Honor direct sources shared across workspace dependencies (#20847)a51d7dbRebase promoted pull requests in uv (#20861)ec8ad5bHonor direct URL constraints when validating metadata-free locks (#20796)1ac4b3eAllow commands run in workspace members to use root dependency groups (#20840)139f2cfRemove stale Node 20 action TODOs (#20843)Updates
s3fsfrom 2026.6.0 to 2026.7.0Commits
Updates
rufffrom 0.16.0 to 0.16.1Release notes
Sourced from ruff's releases.
... (truncated)
Changelog
Sourced from ruff's changelog.
... (truncated)
Commits
80790b3Bump 0.16.1 (#27330)63830f3[ty] Borrow from constraint set storage less often (#27328)f40dca9[ty] Preserve forwarded expanded-variadic diagnostic sources (#27266)0d80497Lint TOML files in the LSP (#26862)d91586bUpdate prek dependencies (#27293)7da4b8b[ty] Respect bounds and constraints in generic materializations (#27228)b20daf7[ty] refactor: add helper function to send partial results (#27249)4d4c8fa[ty] Emit diagnostic when specializing a non-generic class (#26883)7c3e2db[ty] Fix enum class container assignability (#27318)d5ef97f[flake8-return] Fix false positive when variable is read infinallyclaus...Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions