Skip to content

Bump the all group across 1 directory with 5 updates#77

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/all-5756a60347
Open

Bump the all group across 1 directory with 5 updates#77
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/all-5756a60347

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 12, 2026

Copy link
Copy Markdown
Contributor

Bumps the all group with 3 updates in the / directory: titiler-core, pytest-asyncio and hatch.

Updates titiler-core from 2.0.2 to 2.0.4

Release notes

Sourced from titiler-core's releases.

v2.0.4

2.0.4 (2026-06-03)

What's Changed

Full Changelog: developmentseed/titiler@2.0.3...2.0.4

2.0.3

What's Changed

Full Changelog: developmentseed/titiler@2.0.2...2.0.3

Changelog

Sourced from titiler-core's changelog.

2.0.4 (2026-06-03)

What's Changed

Full Changelog: developmentseed/titiler@2.0.3...2.0.4

2.0.3 (2026-05-28)

What's Changed

Full Changelog: developmentseed/titiler@2.0.2...2.0.3

Commits
  • 07e269e chore: release 2.0.4 (#1411)
  • 58e09df chore: add cover-scale parameter to control shape coverage in statistics (#1414)
  • 7f8aa50 fix: trigger PyPI publish/deploy by authoring releases with the DS_RELEASE_BO...
  • 3a30e8e fix: doc path
  • 69ee841 docs: add openapi in docs
  • 4376594 ci(deps): bump the all group with 6 updates (#1409)
  • 8a29668 chore(deps): bump gcsfs from 2026.4.0 to 2026.5.0 in the all group (#1410)
  • b5c02f6 chore: release 2.0.3 (#1405)
  • e9a55b2 ci: remove helm chart from release please automation (#1382)
  • d64ede7 fix: starlette path security issue and update dependencies (#1404)
  • Additional commits viewable in compare view

Updates titiler-mosaic from 2.0.2 to 2.0.4

Release notes

Sourced from titiler-mosaic's releases.

v2.0.4

2.0.4 (2026-06-03)

What's Changed

Full Changelog: developmentseed/titiler@2.0.3...2.0.4

2.0.3

What's Changed

Full Changelog: developmentseed/titiler@2.0.2...2.0.3

Changelog

Sourced from titiler-mosaic's changelog.

2.0.4 (2026-06-03)

What's Changed

Full Changelog: developmentseed/titiler@2.0.3...2.0.4

2.0.3 (2026-05-28)

What's Changed

Full Changelog: developmentseed/titiler@2.0.2...2.0.3

Commits
  • 07e269e chore: release 2.0.4 (#1411)
  • 58e09df chore: add cover-scale parameter to control shape coverage in statistics (#1414)
  • 7f8aa50 fix: trigger PyPI publish/deploy by authoring releases with the DS_RELEASE_BO...
  • 3a30e8e fix: doc path
  • 69ee841 docs: add openapi in docs
  • 4376594 ci(deps): bump the all group with 6 updates (#1409)
  • 8a29668 chore(deps): bump gcsfs from 2026.4.0 to 2026.5.0 in the all group (#1410)
  • b5c02f6 chore: release 2.0.3 (#1405)
  • e9a55b2 ci: remove helm chart from release please automation (#1382)
  • d64ede7 fix: starlette path security issue and update dependencies (#1404)
  • Additional commits viewable in compare view

Updates titiler-extensions from 2.0.2 to 2.0.4

Release notes

Sourced from titiler-extensions's releases.

v2.0.4

2.0.4 (2026-06-03)

What's Changed

Full Changelog: developmentseed/titiler@2.0.3...2.0.4

2.0.3

What's Changed

Full Changelog: developmentseed/titiler@2.0.2...2.0.3

Changelog

Sourced from titiler-extensions's changelog.

2.0.4 (2026-06-03)

What's Changed

Full Changelog: developmentseed/titiler@2.0.3...2.0.4

2.0.3 (2026-05-28)

What's Changed

Full Changelog: developmentseed/titiler@2.0.2...2.0.3

Commits
  • 07e269e chore: release 2.0.4 (#1411)
  • 58e09df chore: add cover-scale parameter to control shape coverage in statistics (#1414)
  • 7f8aa50 fix: trigger PyPI publish/deploy by authoring releases with the DS_RELEASE_BO...
  • 3a30e8e fix: doc path
  • 69ee841 docs: add openapi in docs
  • 4376594 ci(deps): bump the all group with 6 updates (#1409)
  • 8a29668 chore(deps): bump gcsfs from 2026.4.0 to 2026.5.0 in the all group (#1410)
  • b5c02f6 chore: release 2.0.3 (#1405)
  • e9a55b2 ci: remove helm chart from release please automation (#1382)
  • d64ede7 fix: starlette path security issue and update dependencies (#1404)
  • Additional commits viewable in compare view

Updates pytest-asyncio from 1.3.0 to 1.4.0

Release notes

Sourced from pytest-asyncio's releases.

pytest-asyncio v1.4.0

1.4.0 - 2026-05-26

Deprecated

  • Overriding the event_loop_policy fixture is deprecated. Use the pytest_asyncio_loop_factories hook instead. (#1419)

Added

  • Added the pytest_asyncio_loop_factories hook to parametrize asyncio tests with custom event loop factories.

    The hook returns a mapping of factory names to loop factories, and pytest.mark.asyncio(loop_factories=[...]) selects a subset of configured factories per test. When a single factory is configured, test names are unchanged.

    Synchronous @pytest_asyncio.fixture functions now see the correct event loop when custom loop factories are configured, even when test code disrupts the current event loop (e.g., via asyncio.run() or asyncio.set_event_loop(None)). (#1164)

Changed

  • Improved the readability of the warning message that is displayed when asyncio_default_fixture_loop_scope is unset (#1298)
  • Only import asyncio.AbstractEventLoopPolicy for type checking to avoid raising a DeprecationWarning. (#1394)
  • Updated minimum supported pytest version to v8.4.0. (#1397)

Fixed

  • Fixed a ResourceWarning: unclosed event loop warning that could occur when a synchronous test called asyncio.run() or otherwise unset the current event loop after pytest-asyncio had run an async test or fixture. (#724)

Notes for Downstream Packagers

  • Added dependency on sphinx-tabs >= 3.5 to organize documentation examples into tabs. (#1395)

pytest-asyncio v1.4.0a2

1.4.0a2 - 2026-05-02

Deprecated

  • Overriding the event_loop_policy fixture is deprecated. Use the pytest_asyncio_loop_factories hook instead. (#1419)

Added

  • Added the pytest_asyncio_loop_factories hook to parametrize asyncio tests with custom event loop factories.

    The hook returns a mapping of factory names to loop factories, and pytest.mark.asyncio(loop_factories=[...]) selects a subset of configured factories per test. When a single factory is configured, test names are unchanged on pytest 8.4+.

    Synchronous @pytest_asyncio.fixture functions now see the correct event loop when custom loop factories are configured, even when test code disrupts the current event loop (e.g., via asyncio.run() or asyncio.set_event_loop(None)). (#1164)

Changed

  • Improved the readability of the warning message that is displayed when asyncio_default_fixture_loop_scope is unset (#1298)
  • Only import asyncio.AbstractEventLoopPolicy for type checking to avoid raising a DeprecationWarning. (#1394)

... (truncated)

Commits
  • 6e14cd2 chore: Prepare release of v1.4.0.
  • 4b900fb Build(deps): Bump codecov/codecov-action from 6.0.0 to 6.0.1
  • ab9f632 Build(deps): Bump zipp from 3.23.1 to 4.1.0
  • a56fc77 Build(deps): Bump hypothesis from 6.152.6 to 6.152.8
  • e8bae9b Build(deps): Bump requests from 2.34.0 to 2.34.2
  • fc43340 Build(deps): Bump idna from 3.14 to 3.15
  • 762eaf5 Build(deps): Bump jaraco-functools from 4.4.0 to 4.5.0
  • b62e222 Build(deps): Bump click from 8.3.3 to 8.4.0
  • 9190447 Build(deps): Bump pydantic from 2.13.3 to 2.13.4
  • 82a393c ci: Remove unnecessary debug output.
  • Additional commits viewable in compare view

Updates hatch from 1.16.5 to 1.17.0

Release notes

Sourced from hatch's releases.

Hatchling v1.17.0

Added:

  • The app build target now embeds the project version in the name of binaries

Hatch v1.17.0

Changed:

  • The hatch fmt command is now deprecated in favor of the new hatch check command group
  • Migrate HTTP client from httpx to httpx2

Added:

  • Add hatch check command group with subcommands for check code (linting), check fmt (formatting), and check types (type checking)
  • Add hatch check types command for type checking using Pyrefly, with --summarize and --cover flags
  • Add hatch env lock command to generate PEP 751 compliant lockfiles (pylock.toml) for environments
  • Add hatch dep lock and hatch lock commands as shortcuts for locking the active environment
  • Add hatch dep sync command for syncing dependencies from a lockfile
  • Add pluggable dependency locker interface with built-in UV and pip implementations
  • Add --cover-xml and --cover-xml-output flags to the hatch test command for generating XML coverage reports
  • Add linehaul telemetry data to User-Agent header for PyPI download statistics
  • Auto-create environment when locking if it doesn't exist

Fixed:

  • Fix help output formatting for the run command
Commits

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will 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 version will 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

Bumps the all group with 3 updates in the / directory: [titiler-core](https://github.com/developmentseed/titiler), [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) and [hatch](https://github.com/pypa/hatch).


Updates `titiler-core` from 2.0.2 to 2.0.4
- [Release notes](https://github.com/developmentseed/titiler/releases)
- [Changelog](https://github.com/developmentseed/titiler/blob/main/CHANGES.md)
- [Commits](developmentseed/titiler@2.0.2...2.0.4)

Updates `titiler-mosaic` from 2.0.2 to 2.0.4
- [Release notes](https://github.com/developmentseed/titiler/releases)
- [Changelog](https://github.com/developmentseed/titiler/blob/main/CHANGES.md)
- [Commits](developmentseed/titiler@2.0.2...2.0.4)

Updates `titiler-extensions` from 2.0.2 to 2.0.4
- [Release notes](https://github.com/developmentseed/titiler/releases)
- [Changelog](https://github.com/developmentseed/titiler/blob/main/CHANGES.md)
- [Commits](developmentseed/titiler@2.0.2...2.0.4)

Updates `pytest-asyncio` from 1.3.0 to 1.4.0
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v1.3.0...v1.4.0)

Updates `hatch` from 1.16.5 to 1.17.0
- [Release notes](https://github.com/pypa/hatch/releases)
- [Commits](pypa/hatch@hatch-v1.16.5...hatch-v1.17.0)

---
updated-dependencies:
- dependency-name: titiler-core
  dependency-version: 2.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: titiler-mosaic
  dependency-version: 2.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: titiler-extensions
  dependency-version: 2.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: pytest-asyncio
  dependency-version: 1.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: hatch
  dependency-version: 1.17.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Jun 12, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants