Skip to content

chore(deps): bump the all group across 1 directory with 29 updates - #139

Open
dependabot[bot] wants to merge 3 commits into
mainfrom
dependabot/uv/all-03c86f2133
Open

chore(deps): bump the all group across 1 directory with 29 updates#139
dependabot[bot] wants to merge 3 commits into
mainfrom
dependabot/uv/all-03c86f2133

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 14, 2026

Copy link
Copy Markdown
Contributor

Bumps the all group with 24 updates in the / directory:

Package From To
aiohttp 3.13.5 3.14.3
fsspec 2026.4.0 2026.7.0
icechunk 2.0.5 2.1.2
numpy 2.4.6 2.5.1
obstore 0.9.5 0.11.0
pydantic-settings 2.14.1 2.15.0
redis 8.0.0 8.1.0
rioxarray 0.22.0 0.23.0
xarray 2026.4.0 2026.7.0
zarr 3.2.1 3.3.0
uvicorn 0.48.0 0.52.1
opentelemetry-exporter-otlp-proto-http 1.42.1 1.44.0
dask 2026.3.0 2026.7.1
fakeredis 2.35.1 2.37.0
httpx2 2.2.0 2.9.1
ipykernel 7.2.0 7.3.0
ipython 9.14.0 9.16.1
pre-commit 4.6.0 4.6.1
pytest 9.0.3 9.1.1
ruff 0.15.15 0.16.2
virtualizarr 2.6.2 2.7.3
aws-cdk-lib 2.257.0 2.263.0
constructs 10.6.0 10.8.1
matplotlib 3.10.9 3.11.1

Updates aiohttp from 3.13.5 to 3.14.3
Updates fsspec from 2026.4.0 to 2026.7.0

Commits

Updates icechunk from 2.0.5 to 2.1.2

Changelog

Sourced from icechunk's changelog.

Python Icechunk Library 2.1.2

Features

  • Add an exception tree: all Icechunk errors now derive from IcechunkError and are grouped into catchable categories. Every exception carries a stable machine-readable kind code (see the new icechunk.ErrorKind enum), and the full diagnostic report is attached as a PEP 678 note (#2267).
  • Add ManifestConfig.max_concurrent_manifest_fetches_during_commit to control how many manifests are fetched and updated concurrently during a commit, amend, flush, or rewrite_manifests. Defaults to 1 (serial) (#2274).

Fixes

  • shift_array and reindex_array on an array with a rectilinear chunk grid used to silently corrupt the array: chunk indices were relabeled without updating the chunk grid, leaving chunk payloads that no longer matched the sizes of their new grid positions. These operations now fail up front unless the array's metadata declares a regular chunk grid (#2257).
  • A conditional write whose success response was lost in transit (connection drop, proxy timeout) used to surface as a spurious conflict after the transparent retry's precondition failed against Icechunk's own write: "tag already exists", "config was updated by other session", or a commit parent mismatch. Conditional writes are now stamped with a unique write id and read back on suspicious failures, so a write that landed is recognized as a success (#2156).
  • Conditional operations on object_store-backed storage no longer strip quotes from ETags, which caused endless commit retries against stores that compare ETags exactly, such as object_store 0.14.1's InMemory and LocalFileSystem (#2289).
  • Fix to_icechunk and icechunk.dask.store_dask failing with AttributeError: 'function' object has no attribute 'session' when the dask-array package is installed (#2292).

Python Icechunk Library 2.1.1

Features

  • Add read_headers, write_headers, and headers arguments to s3_storage, s3_object_store_storage, tigris_storage, r2_storage, and gcs_storage to attach custom HTTP headers to object-store requests (#2246).

Fixes

  • Fix redirect storage failing to resolve HTTP backends: URLs with http+icechunk, http+ic, https+icechunk, or https+ic schemes are now correctly stripped to plain http/https targets (#2262).

Python Icechunk Library 2.1.0

This release introduces on-disk spec version 2.1, an additive change that is forward- and backward-compatible with spec 2.0.

Features

  • Add a read-only Rust API to inspect metadata file headers (#2216).
  • Add a headers argument to http_storage (and ObjectStoreConfig.Http) to inject static HTTP headers, such as an authorization bearer token, into every request (#2143).
  • Add optional, experimental OpenTelemetry export: when ICECHUNK_OTLP_ENDPOINT or OTEL_EXPORTER_OTLP_ENDPOINT are set, tracing spans are exported over OTLP/gRPC. Off by default for Rust library builds via the new otel Cargo feature (#2234).
  • Add explicit icechunk.credentials.LocalFileSystemAccess and icechunk.credentials.HttpAccess credential sentinels for authorizing virtual chunk containers that need no credentials (#2194).
  • Build Python wheels with the abi3-py312 stable ABI, greatly reducing the number of published wheels. The minimum supported Python version remains 3.12 (#2213).

Deprecations

  • Passing None as a value in authorize_virtual_chunk_access is deprecated and now emits a DeprecationWarning; it will be unsupported in a future release. Pass an explicit credential (e.g. S3Credentials.FromEnv(), s3_anonymous_credentials()) or the icechunk.credentials.LocalFileSystemAccess / icechunk.credentials.HttpAccess sentinel instead (#2194).

Fixes

  • Expiration now records the full ancestry of pruned transaction logs in a new optional pruned_ancestor_tx_logs field on SnapshotInfo, so diff, amend, rebase, and inspect produce correct results after expiration (#2184).
  • The native S3 backend used to write every object under a leading slash (/chunks/...) when prefix was empty, which made repositories unreadable by external tools and could cause garbage collection to silently orphan objects. Pre-existing "rooted" repositories are detected and handled automatically. Creating new repositories at an empty prefix on an object store is no longer allowed. Existing empty-prefix repositories can still be opened and updated (#2239).
  • Preserve all URL parts (userinfo, port, query, fragment, and empty path segments) when storing virtual chunk locations (#2219).
  • Honor the port when reading virtual chunks from HTTP stores, so a reference like http://host:8080/... is fetched from the correct port (#2223).
  • The objects returned by the async iteration APIs (Store.list/list_prefix/list_dir/array_chunk_iterator, Repository.async_ancestry/ops_log_async) are now correctly typed and named as async iterators (AsyncCloseableIterator) rather than the misleading PyAsyncGenerator, and gained an aclose() method so contextlib.aclosing(...) and deterministic early-exit cleanup work (#2240).

Breaking Changes

... (truncated)

Commits
  • d4b5b04 Prepare v2.1.2 release (#2308)
  • 52553da Stop mkdocs-jupyter from probing plain markdown pages (#2307)
  • e55c95e chore(deps): bump the actions group across 1 directory with 3 updates (#2300)
  • 203d0d5 Reduce ReadTheDocs build time, CI cache sizes (#2305)
  • 9f3502b Expose manifest update concurrency configuration option (#2274)
  • ea8aa97 chore(deps-dev): bump the js-dependencies group in /icechunk-js with 3 update...
  • d6e27c5 Re-enable xarray timedelta/datetime roundtrip tests on xarray >= 2026.7.0 (#2...
  • 4615c81 chore(deps): bump quinn-proto from 0.11.14 to 0.11.16 (#2298)
  • ae75773 Fix upstream-dev CI job: zarr test overrides, stateful testing, upstream GHA ...
  • 718963d Python: build an exception tree rooted by IcechunkError (#2267)
  • Additional commits viewable in compare view

Updates numpy from 2.4.6 to 2.5.1

Release notes

Sourced from numpy's releases.

v2.5.1 (July 4, 2026)

NumPy 2.5.1 Release Notes

The NumPy 2.5.1 is a patch release that fixes bugs discovered after the 2.5.0 release. The most noticeable is the fix is to the numpy datetime cython API which should allow downstream to support NumPy versions older than 2.5. Preparation for Python 3.15 continues along with typing improvements.

This release supports Python versions 3.12-3.14

Changes

  • The minimum supported GCC version has been updated from 9.3.0 to 10.3.0

    (gh-31843)

Contributors

A total of 10 people contributed to this release. People with a "+" by their names contributed a patch for the first time.

  • Adhyan Gupta +
  • Ankit Ahlawat
  • Charles Harris
  • Iason Krommydas
  • Joren Hammudoglu
  • Kumar Aditya
  • Nathan Goldbaum
  • Sebastian Berg
  • Ties Jan Hefting +
  • Vineet Kumar

Pull requests merged

A total of 20 pull requests were merged for this release.

  • #31707: MAINT: Prepare 2.5.x for further development
  • #31721: CI: fix new cython-lint errors (#31711)
  • #31723: MAINT: Update meson to match main
  • #31729: TST: use setup-sde instead of curl to get SDE binaries (#31727)
  • #31829: BUG: Relax finfo to be easier accessible for all user dtypes...
  • #31831: TYP: Fix flatiter.__next__ return type for object_ and...
  • #31832: BUG: avoid deadlocks using NpyString API (#31682)
  • #31833: BUG: fix out array leak in reduceat and accumulate when dtype...
  • #31835: BUG: fix numpy datetime cython APIs to be compatible with older...
  • #31836: TYP: Fix incorrect dtype inference of asarray([]) (#31732)
  • #31837: TYP: Fix np.ma.masked_array 2.5.0 regression
  • #31838: FIX: Refactor error handling in array_setstate to prevent typecode...
  • #31839: TST: xfail multithreaded BLAS test more generously
  • #31840: MAINT: Rename subroutine for crackfortran tests

... (truncated)

Commits
  • 5e1d03f Merge pull request #31863 from charris/prepare-2.5.1
  • ad0b66b REL: Prepare for the NumPy 2.5.1 release.
  • 9df8516 Merge pull request #31858 from charris/backport-31688
  • 4dee265 Merge pull request #31857 from charris/backport-31775
  • dc8d553 Merge pull request #31856 from charris/backport-31846
  • 67cb4a8 fix:Signed integer overflow in datetime.c (#31688)
  • baa2589 TST: Clean up imports, formatting, and assertions
  • 2fe5ba4 TEST: Refactor tests to use np.testing.assert_raises_regex per review
  • bb46581 MAINT: Remove deprecated Python recursion fix
  • 8f34214 MAINT: Move SeedSequence recursion guard to C-layer and add tests
  • Additional commits viewable in compare view

Updates obstore from 0.9.5 to 0.11.0

Commits

Updates pydantic-settings from 2.14.1 to 2.15.0

Release notes

Sourced from pydantic-settings's releases.

v2.15.0

Highlights

Behavior changes

  • case_sensitive now applies to init kwargs and config-file sources (#900). InitSettingsSource and the JSON/TOML/YAML config sources previously ignored case_sensitive. Since it defaults to False, case-insensitive matching is now the default for these sources — e.g. Settings(TeSt=...) now populates a test field where it previously did not. Nested keys are still matched case-sensitively.
  • Fields with unresolved forward references now emit a warning (#901). Settings sources can silently fail to resolve such fields; they now raise IncompleteFieldDefinitionWarning telling you to call model_rebuild(). If you have filterwarnings = error configured, this may surface as a new failure.
  • Non-JSON env values for strict fields now raise ValidationError (#926) instead of a less specific error.

New features

  • Show environment variable names in CLI help via cli_show_env_vars=True (#860), so generated --help output doubles as configuration documentation.
  • PYDANTIC_SETTINGS_DEBUG for debugging settings resolution (#906, #913). Set it to a truthy value with DEBUG logging enabled to see each source's contribution in priority order, which source won for each value, and which env_file/secret files were probed, loaded, or skipped — the long-standing "why isn't my .env being picked up?" question.
  • toml_table_header for regular TOML files (#882, #886, #887), letting you root settings at a nested table in any TOML file, not just pyproject.toml.
  • Traversable support for JSON/TOML/YAML file sources (#902), so you can load config packaged inside a distribution — including files inside a zip or wheel — via importlib.resources.files(...) without casting to Path.
  • GCP: project_id can come from an earlier settings source (#878), rather than only from the constructor or GOOGLE_CLOUD_PROJECT.

Bug fixes

  • Fix env vars not loading on Windows with case_sensitive=True (#894). Windows upper-cases os.environ keys, so fields raised Field required instead of picking up their values.
  • Read secret files as UTF-8 instead of the platform locale encoding (#917). On Windows code pages such as cp1252 this silently corrupted non-ASCII secrets.
  • Fix AliasPath on nested model fields not JSON-decoding env values (#898).
  • Fix case-insensitive matching for optional nested models (#905).
  • Fix dotenv extras being wrongly claimed by a complex field sharing a name prefix (#912) — e.g. dbx_token being swallowed by a db: dict field.
  • Fix nested_model_default_partial_update=True corrupting discriminated unions (#876).
  • Fix Secret subclasses crashing when loaded from the environment (#920).
  • Fix enum names not parsing through nested annotations such as Optional[Annotated[MyEnum, ...]] with env_parse_enums=True (#910).
  • An empty yaml_config_section now falls back to defaults instead of raising AttributeError: 'NoneType' object has no attribute 'keys' (#914).
  • NestedSecretsSettingsSource no longer follows symlinks pointing outside secrets_dir (#889).
  • GCP: skip the list_secrets call when case_sensitive=True (#862), lowering the required IAM permissions to just roles/secretmanager.secretAccessor.
  • AWS: types-boto3[secretsmanager] is no longer required at runtime (#880).

Documentation

  • Document JSON parsing of complex env values, plus a comma-separated-values recipe (#919).
  • Recommend an async settings loading pattern (#908).
  • Clarify behavior when an unprefixed value is present in a dotenv file (#895).
  • Clarify environment variable helper descriptions (#867) and fix assorted typos (#904).

What's Changed

... (truncated)

Commits
  • f725ca1 Prepare release 2.15.0 (#930)
  • 28f35c2 Bump the python-packages group with 4 updates (#929)
  • 9056db0 test: move function-local imports to the top of test modules (#927)
  • f077e3a fix: raise ValidationError for non-JSON env values on strict fields (#926)
  • ae25d70 fix: treat Secret subclasses as non-complex fields (#716) (#920)
  • 798dcea Bump the python-packages group with 4 updates (#924)
  • a190041 Bump the github-actions group with 4 updates (#925)
  • 5d93332 Bump the python-packages group with 4 updates (#921)
  • d2fdeda fix: read secret files as UTF-8 instead of the locale encoding (#917)
  • 2256a4e Bump the python-packages group with 3 updates (#915)
  • Additional commits viewable in compare view

Updates redis from 8.0.0 to 8.1.0

Release notes

Sourced from redis's releases.

8.1.0

Changes

✨ Highlights

Async maintenance notifications

redis-py now supports server-pushed maintenance notifications in the asyncio stack for both standalone and cluster clients, bringing the async client to parity with the sync implementation. When a Redis deployment signals maintenance events (such as node migration or failover windows), the async client reacts through the maintenance-notifications handler (redis/maint_notifications.py and its async integration under redis/asyncio/), allowing applications to adapt connection handling during maintenance without downtime. (#4177)

Expanded command coverage

This release adds a batch of new command surfaces across core data types and modules:

  • ListsLMOVEM / BLMOVEM for moving multiple elements between lists (#4174).
  • SetsSDIFFCARD and SUNIONCARD cardinality commands (#4171).
  • StreamsMAXCOUNT / MAXSIZE options for XREAD and XREADGROUP (#4173).
  • Time SeriesTS.READ (#4170), TS.QUERYLABELS (#4197), TS.NRANGE / TS.NREVRANGE (#4163), and an exclude_empty (EXCLUDEEMPTY) option for TS.MRANGE / TS.MREVRANGE (#4188).
  • SearchFT.ALIASLIST (#4198) and a COLLECT reducer for aggregations (#4179).
  • Sentinel — replica sentinel aliases (#4127).

🚀 New Features

  • Add replica sentinel aliases (#4127)
  • Add TS.NRANGE and TS.NREVRANGE support to the timeseries command surface (#4163)
  • feat: add TS.READ command support to the timeseries module (#4170)
  • feat: add SDIFFCARD and SUNIONCARD command support (#4171)
  • feat: add MAXCOUNT/MAXSIZE support to XREAD and XREADGROUP (#4173)
  • feat: add LMOVEM and BLMOVEM commands for moving multiple list elements (#4174)
  • feat: add async maintenance-notifications support for standalone and cluster clients (#4177)
  • feat: add COLLECT reducer support to search aggregations (#4179)
  • feat: add exclude_empty (EXCLUDEEMPTY) option to TS.MRANGE and TS.MREVRANGE (#4188)
  • feat: add TS.QUERYLABELS support to the timeseries command surface (#4197)
  • feat: add FT.ALIASLIST support (#4198)

⚠️ Experimental

  • feat: add client-side HIMPORT fieldset support for standalone and cluster clients (#4205)

The feature considered unstable and public API might be changed in the future minor version

🐛 Bug Fixes

  • fix: detect closed pooled connection without consuming pending push data (RESP3 + hiredis) (#4156)
  • Fix Sentinel pool capacity loss after failover (#4193)

... (truncated)

Commits
  • e013126 Testing with 8.10 GA (#4227)
  • 059d1e9 Fixed TS.NRANGE commands to correctly apply aggregators (#4225)
  • d486a0a Fix FIELDNAME alias dropping first character of un-prefixed fields (#4224)
  • fb93104 feat: add client-side HIMPORT fieldset support for standalone and cluster cli...
  • 9197609 Fix lat/lon swap in search querystring geo() helper (#4223)
  • 14714a0 fix: Fixed double decoding issue with unquote() (#4222)
  • 227280a Update lib version to 8.1.0
  • 88d16d0 Decode ACL LOG string values on the default RESP3 legacy callback (#4201)
  • 599fd75 feat: add FT.ALIASLIST support (#4198)
  • 71e275e test: add VectorField RERANK serialization tests for sync and async search (#...
  • Additional commits viewable in compare view

Updates rioxarray from 0.22.0 to 0.23.0

Release notes

Sourced from rioxarray's releases.

0.23.0

What's Changed

Full Changelog: corteva/rioxarray@0.22.0...0.23.0

Changelog

Sourced from rioxarray's changelog.

0.23.0

  • ENH: Add write support for Zarr spatial and proj conventions
Commits
  • 4be23c4 DOC: Update version to 0.23
  • c0f9783 MNT: Version 0.23
  • dc21bdb TST: Update test_interpolate_na_veris for scipy 1.18 (#934)
  • f71f280 Bump actions/setup-python from 6 to 7 (#933)
  • eb61ade MNT: several updates to pyproject.toml, ignore uv.lock (#927)
  • cdc1092 Bump actions/checkout from 6 to 7 (#930)
  • 403caf2 Bump codecov/codecov-action from 6 to 7 (#928)
  • 67e7b63 DOC: Add missing ipython docs dependency (#926)
  • 43de28c Fix various documentation errors and warnings (#925)
  • 90fc4af Bump mamba-org/setup-micromamba from 2 to 3 (#922)
  • Additional commits viewable in compare view

Updates s3fs from 2026.4.0 to 2026.7.0

Commits

Updates xarray from 2026.4.0 to 2026.7.0

Release notes

Sourced from xarray's releases.

v2026.07.0

This release adds support for Dask's query-optimizing expression arrays, along with new day_of_week and day_of_year datetime accessor attributes. It also includes a number of bug fixes, notably for a performance regression in :py:meth:Coordinates.to_index, Zarr fill_value round-tripping, and excessive memory use in drop_encoding.

Thanks to the 25 contributors to this release: Davis Bennett, Deepak Cherian, Ian Hunt-Isaak, Illviljan, Jonathan Dung, Julia Signell, Justus Magin, Kai Mühlbauer, MJSHANG, Mark Harfouche, Mathias Hauser, Matt Van Horn, Matthew Rocklin, Max Jones, Maximilian Roos, Nick Hodgskin, S Anand, Spencer Clark, Sreekant Baheti, Timothy Hodson, Tom Nicholas, Vincent Gao, Wali Reheman, Wei Ji and eeshsaxena

What's Changed

... (truncated)

Commits

Updates zarr from 3.2.1 to 3.3.0

Release notes

Sourced from zarr's releases.

v3.3.0

What's Changed

---
updated-dependencies:
- dependency-name: aiohttp
  dependency-version: 3.14.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: fsspec
  dependency-version: 2026.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: icechunk
  dependency-version: 2.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: numpy
  dependency-version: 2.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: obstore
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: pydantic-settings
  dependency-version: 2.15.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: redis
  dependency-version: 8.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: rioxarray
  dependency-version: 0.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: s3fs
  dependency-version: 2026.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: xarray
  dependency-version: 2026.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: zarr
  dependency-version: 3.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: uvicorn
  dependency-version: 0.52.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: opentelemetry-exporter-otlp-proto-http
  dependency-version: 1.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: opentelemetry-instrumentation-fastapi
  dependency-version: 0.65b0
  dependency-type: direct:production
  dependency-group: all
- dependency-name: opentelemetry-instrumentation-httpx
  dependency-version: 0.65b0
  dependency-type: direct:production
  dependency-group: all
- dependency-name: opentelemetry-instrumentation-logging
  dependency-version: 0.65b0
  dependency-type: direct:production
  dependency-group: all
- dependency-name: opentelemetry-sdk
  dependency-version: 1.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: dask
  dependency-version: 2026.7.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: fakeredis
  dependency-version: 2.37.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: httpx2
  dependency-version: 2.9.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: ipykernel
  dependency-version: 7.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: ipython
  dependency-version: 9.16.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: pre-commit
  dependency-version: 4.6.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: pytest
  dependency-version: 9.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: ruff
  dependency-version: 0.16.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: virtualizarr
  dependency-version: 2.7.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: aws-cdk-lib
  dependency-version: 2.263.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: constructs
  dependency-version: 10.8.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: matplotlib
  dependency-version: 3.11.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Aug 14, 2026
@github-actions github-actions Bot added the chore label Aug 14, 2026
@hrodmn

hrodmn commented Aug 14, 2026

Copy link
Copy Markdown
Contributor

@copilot the pre commit hooks are introducing changes. Run the hooks and commit the changes.

Co-authored-by: hrodmn <17726304+hrodmn@users.noreply.github.com>
…ssembly schema v54

Co-authored-by: hrodmn <17726304+hrodmn@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

chore dependencies Pull requests that update a dependency file deploy-dev python:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants