Skip to content

Bump the pip-minor group across 1 directory with 18 updates #273

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 2, 2025

Bumps the pip-minor group with 18 updates in the / directory:

Package From To
pytest 8.3.4 8.3.5
pytest-mock 3.14.0 3.14.1
click 8.1.7 8.1.8
six 1.16.0 1.17.0
python-dotenv 1.0.1 1.1.0
sqlalchemy 2.0.36 2.0.41
flask-migrate 4.0.7 4.1.0
cloud-sql-python-connector 1.14.0 1.18.2
marshmallow-sqlalchemy 1.1.0 1.4.2
flask-marshmallow 1.2.1 1.3.0
flask-oidc 2.2.2 2.3.1
sentry-sdk[flask] 2.19.0 2.29.1
okta 2.9.8 2.9.13
pluggy 1.5.0 1.6.0
tox 4.23.2 4.26.0
ruff 0.8.0 0.11.12
mypy 1.13.0 1.16.0
types-flask-migrate 4.0.0.20240311 4.1.0.20250112

Updates pytest from 8.3.4 to 8.3.5

Release notes

Sourced from pytest's releases.

8.3.5

pytest 8.3.5 (2025-03-02)

Bug fixes

  • #11777: Fixed issue where sequences were still being shortened even with -vv verbosity.
  • #12888: Fixed broken input when using Python 3.13+ and a libedit build of Python, such as on macOS or with uv-managed Python binaries from the python-build-standalone project. This could manifest e.g. by a broken prompt when using Pdb, or seeing empty inputs with manual usage of input() and suspended capturing.
  • #13026: Fixed AttributeError{.interpreted-text role="class"} crash when using --import-mode=importlib when top-level directory same name as another module of the standard library.
  • #13053: Fixed a regression in pytest 8.3.4 where, when using --import-mode=importlib, a directory containing py file with the same name would cause an ImportError
  • #13083: Fixed issue where pytest could crash if one of the collected directories got removed during collection.

Improved documentation

  • #12842: Added dedicated page about using types with pytest.

    See types{.interpreted-text role="ref"} for detailed usage.

Contributor-facing changes

  • #13112: Fixed selftest failures in test_terminal.py with Pygments >= 2.19.0
  • #13256: Support for Towncrier versions released in 2024 has been re-enabled when building Sphinx docs -- by webknjaz{.interpreted-text role="user"}.
Commits

Updates pytest-mock from 3.14.0 to 3.14.1

Release notes

Sourced from pytest-mock's releases.

v3.14.1

  • #503: Python 3.14 is now officially supported.
Changelog

Sourced from pytest-mock's changelog.

3.14.1 (2025-08-26)

  • [#503](https://github.com/pytest-dev/pytest-mock/issues/503) <https://github.com/pytest-dev/pytest-mock/pull/503>_: Python 3.14 is now officially supported.
Commits

Updates click from 8.1.7 to 8.1.8

Release notes

Sourced from click's releases.

8.1.8

This is the Click 8.1.8 fix release, which fixes bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

PyPI: https://pypi.org/project/click/8.1.8/ Changes: https://click.palletsprojects.com/en/stable/changes/#version-8-1-8 Milestone https://github.com/pallets/click/milestones/23?closed=1

  • Fix an issue with type hints for click.open_file(). #2717
  • Fix issue where error message for invalid click.Path displays on multiple lines. #2697
  • Fixed issue that prevented a default value of "" from being displayed in the help for an option. #2500
  • The test runner handles stripping color consistently on Windows. #2705
  • Show correct value for flag default when using default_map. #2632
  • Fix click.echo(color=...) passing color to coloroma so it can be forced on Windows. #2606.
  • More robust bash version check, fixing problem on Windows with git-bash. #2638
  • Cache the help option generated by the help_option_names setting to respect its eagerness. #2811
  • Replace uses of os.system with subprocess.Popen. #1476
  • Exceptions generated during a command will use the context's color setting when being displayed. #2193
  • Error message when defining option with invalid name is more descriptive. #2452
  • Refactor code generating default --help option to deduplicate code. #2563
  • Test CLIRunner resets patched _compat.should_strip_ansi. #2732
Changelog

Sourced from click's changelog.

Version 8.1.8

Released 2024-12-19

  • Fix an issue with type hints for click.open_file(). :issue:2717
  • Fix issue where error message for invalid click.Path displays on multiple lines. :issue:2697
  • Fixed issue that prevented a default value of "" from being displayed in the help for an option. :issue:2500
  • The test runner handles stripping color consistently on Windows. :issue:2705
  • Show correct value for flag default when using default_map. :issue:2632
  • Fix click.echo(color=...) passing color to coloroma so it can be forced on Windows. :issue:2606.
  • More robust bash version check, fixing problem on Windows with git-bash. :issue:2638
  • Cache the help option generated by the help_option_names setting to respect its eagerness. :pr:2811
  • Replace uses of os.system with subprocess.Popen. :issue:1476
  • Exceptions generated during a command will use the context's color setting when being displayed. :issue:2193
  • Error message when defining option with invalid name is more descriptive. :issue:2452
  • Refactor code generating default --help option to deduplicate code. :pr:2563
  • Test CLIRunner resets patched _compat.should_strip_ansi. :issue:2732
Commits

Updates six from 1.16.0 to 1.17.0

Changelog

Sourced from six's changelog.

1.17.0

  • Pull request #388: Remove URLopener and FancyURLopener classes from urllib.request when running on Python 3.14 or greater.

  • Pull request #365, issue #283: six.moves.UserDict now points to UserDict.IterableUserDict instead of UserDict.UserDict on Python 2.

Commits

Updates python-dotenv from 1.0.1 to 1.1.0

Release notes

Sourced from python-dotenv's releases.

v1.1.0

What's Changed

New Contributors

Full Changelog: theskumar/python-dotenv@v1.0.1...v1.1.0

Changelog

Sourced from python-dotenv's changelog.

[1.1.0] - 2025-03-25

Feature

  • Add support for python 3.13
  • Enhance dotenv run, switch to execvpe for better resource management and signal handling (#523) by [@​eekstunt]

Fixed

  • find_dotenv and load_dotenv now correctly looks up at the current directory when running in debugger or pdb (#553 by [@​randomseed42])

Misc

  • Drop support for Python 3.8
Commits

Updates sqlalchemy from 2.0.36 to 2.0.41

Release notes

Sourced from sqlalchemy's releases.

2.0.41

Released: May 14, 2025

platform

  • [platform] [bug] Adjusted the test suite as well as the ORM's method of scanning classes for annotations to work under current beta releases of Python 3.14 (currently 3.14.0b1) as part of an ongoing effort to support the production release of this Python release. Further changes to Python's means of working with annotations is expected in subsequent beta releases for which SQLAlchemy's test suite will need further adjustments.

    References: #12405

engine

  • [engine] [bug] The error message that is emitted when a URL cannot be parsed no longer includes the URL itself within the error message.

    References: #12579

typing

  • [typing] [bug] Removed __getattr__() rule from sqlalchemy/__init__.py that appeared to be trying to correct for a previous typographical error in the imports. This rule interferes with type checking and is removed.

    References: #12588

postgresql

  • [postgresql] [usecase] Added support for postgresql_include keyword argument to _schema.UniqueConstraint and _schema.PrimaryKeyConstraint. Pull request courtesy Denis Laxalde.

    References: #10665

mysql

  • [mysql] [bug] Fixed regression caused by the DEFAULT rendering changes in version 2.0.40 via #12425 where using lowercase on update in a MySQL server default would incorrectly apply parenthesis, leading to errors when MySQL interpreted the rendered DDL. Pull request courtesy Alexander Ruehe.

... (truncated)

Commits

Updates flask-migrate from 4.0.7 to 4.1.0

Release notes

Sourced from flask-migrate's releases.

Release 4.1.0

See CHANGES.md for release notes.

Changelog

Sourced from flask-migrate's changelog.

Flask-Migrate Change Log

Release 4.1.0 - 2025-01-10

  • Accept arguments such as --directory in environment variables #553 (commit)
  • Fix minor typos in documentation #552 (commit) (thanks Kevin Kirsche!)

Release 4.0.7 - 2024-03-11

  • Regression from #438: check g.x_arg exists before accessing it #541 (commit) (thanks Skye Im!)

Release 4.0.6 - 2024-03-09

  • Accept -x options for all db commands #438 (commit)
  • Add --purge flag to the stamp command #540 (commit) (thanks Jono N!)

Release 4.0.5 - 2023-09-12

  • Compatibility fixes for Flask-SQLAlchemy >= 3.1 #526 (commit) (thanks David Lord!)
  • Allow process_revision_directives option to be configurable #523 (commit) (thanks llc!)
  • Stop testing Python 3.7, as Flask-SQLAlchemy 3.1 stopped supporting it (commit)

Release 4.0.4 - 2023-02-02

  • Correctly obtain database URL with SQLAlchemy 2.0 #505 (commit)

Release 4.0.3 - 2023-01-29

  • Remove legacy future import in Alembic templates #504 (commit) (thanks Pamela Fox!)
  • Add SQLAlchemy 1.4 and 2.0 to the test matrix (commit)
  • Switch to pytest as test runner (commit)

Release 4.0.2 - 2023-01-18

  • Support "check" command #502 (commit) (thanks Masamitsu MURASE!)

Release 4.0.1 - 2023-01-05

  • Do not use deprecated functions in Flask-SQLAlchemy 3.0 (commit)
  • Stop building Python 3.6 (commit)
  • Remove tests from pypi package (commit)

Release 4.0.0 - 2022-11-13

  • Updates for Flask-SQLAlchemy 3.x compatibility (commit)
  • Enable type comparison and batch mode by default (commit)
  • Option to rename "db" command group to a custom name (commit)
  • Better handling of MetaData instances in templates (commit)
  • Set options correctly when revision --autogenerate is used #463 (commit) (thanks Frazer McLean!)
  • Documentation section on configuring Alembic (commit)

... (truncated)

Commits

Updates cloud-sql-python-connector from 1.14.0 to 1.18.2

Release notes

Sourced from cloud-sql-python-connector's releases.

v1.18.2

1.18.2 (2025-05-20)

Bug Fixes

v1.18.1

1.18.1 (2025-04-16)

Bug Fixes

Documentation

v1.18.0

1.18.0 (2025-03-21)

Features

v1.17.0

1.17.0 (2025-02-12)

Features

  • add support for GOOGLE_CLOUD_QUOTA_PROJECT env var (#1231) (5232055)

Bug Fixes

v1.17.0.dev0

Features

  • add support for GOOGLE_CLOUD_QUOTA_PROJECT env var (#1231) (5232055)

Bug Fixes

... (truncated)

Changelog

Sourced from cloud-sql-python-connector's changelog.

1.18.2 (2025-05-20)

Bug Fixes

1.18.1 (2025-04-16)

Bug Fixes

Documentation

1.18.0 (2025-03-21)

Features

1.17.0 (2025-02-12)

Features

  • add support for GOOGLE_CLOUD_QUOTA_PROJECT env var (#1231) (5232055)

Bug Fixes

1.16.0 (2025-01-13)

Features

  • add support for GOOGLE_CLOUD_UNIVERSE_DOMAIN env var (#1221) (ac77932)

1.15.0 (2024-12-10)

Features

... (truncated)

Commits

Updates marshmallow-sqlalchemy from 1.1.0 to 1.4.2

Changelog

Sourced from marshmallow-sqlalchemy's changelog.

1.4.2 (2025-04-09) ++++++++++++++++++

Bug fixes:

  • Fix memory usage regression in 1.4.1 (:issue:665). Thanks :user:mistercrunch for reporting and sending a PR.

1.4.1 (2025-02-10) ++++++++++++++++++

Bug fixes:

  • Fix inheritance of declared fields that match then name of a foreign key column when the include_fk option is set to False (:pr:657). Thanks :user:carterjc for the PR.

1.4.0 (2025-01-19) ++++++++++++++++++

Bug fixes:

  • Fix handling of arrays of enums and multidimensional arrays (:issue:653). Thanks :user:carterjc for reporting and investigating the fix.
  • Fix handling of sqlalchemy.PickleType columns (:issue:394) Thanks :user:Eyon42 for reporting.

Other changes:

  • Passing arbitrary keyword arguments to auto_field <marshmallow_sqlalchemy.auto_field> is no longer supported (:pr:647). Use the metadata argument to pass metadata to the generated field instead.

.. code-block:: python

# Before
auto_field(description="The name of the artist")
# On marshmallow 3, this raises a warning: "RemovedInMarshmallow4Warning: Passing field metadata as keyword arguments is deprecated."
# On marshmallow 4, this raises an error: "TypeError: Field.__init__() got an unexpected keyword argument 'description'"

After

auto_field(metadata=dict(description="The name of the artist"))

1.3.0 (2025-01-11) ++++++++++++++++++

Features:

  • Typing: Add type annotations to fields <marshmallow_sqlalchemy.fields>.

... (truncated)

Commits
  • 2f7c9ae Bump version and update changelog
  • 96efd70 [pre-commit.ci] pre-commit autoupdate (#668)
  • 82d2c13 fix: improve perf of _maybe_filter_foreign_keys method (#667)
  • f2ae9f4 Bump sphinxext-opengraph from 0.9.1 to 0.10.0 (#669)
  • 847569b Bump sphinx from 8.2.1 to 8.2.3
  • 0c6fc17 [pre-commit.ci] pre-commit autoupdate
  • afc3e3d Bump sphinx from 8.1.3 to 8.2.1 (#661)
  • a90da5c Bump version and update changelog
  • cd91e4e [pre-commit.ci] pre-commit autoupdate (#658)
  • f4080b1 Propose change for subclass inherited_fields override when include_fk=False (...
  • Additional commits viewable in compare view

Updates flask-marshmallow from 1.2.1 to 1.3.0

Changelog

Sourced from flask-marshmallow's changelog.

1.3.0 (2025-01-06)


Support:

  • Support Python 3.9-3.13 (:pr:347).
  • Support marshmallow 4.0.0 (:pr:347).
Commits
  • 52721ec Bump version and update changelog
  • d4c087e Support Python 3.9-3.13 and marshmallow 4 (#347)
  • 029917b Merge pull request #344 from marshmallow-code/pre-commit-ci-update-config
  • 303565e [pre-commit.ci] pre-commit autoupdate
  • ad5a5f9 [pre-commit.ci] pre-commit autoupdate (#343)
  • 5bace3b Bump sphinx-issues from 4.1.0 to 5.0.0 (#341)
  • eeaa93e Bump sphinx from 8.1.0 to 8.1.3 (#342)
  • a5e14e3 Bump sphinx from 8.0.2 to 8.1.0 (#340)
  • d910d0b Merge pull request #339 from marshmallow-code/pre-commit-ci-update-config
  • da6a62a [pre-commit.ci] pre-commit autoupdate
  • Additional commits viewable in compare view

Updates flask-oidc from 2.2.2 to 2.3.1

Release notes

Sourced from flask-oidc's releases.

2.3.1

Added

  • Make the client_secrets.json file optional when OIDC is disabled (1566f85)

Fixed

  • Link to the docs in the README (b95e9d9)
  • Fix build in readthedocs (1b49dca)

2.3.0

Added

  • Added a setting to disable OIDC authentication for testing and dev (bb2f015)
  • Support Python 3.12 (3e2fc0a)

Fixed

  • Make the GH actions triggers more specific (cde8047)
  • Fix a typo in the Github Actions (756601a)
  • Reuse: convert dep5 to REUSE.toml (95f3fd6)
  • Modernize pyproject.toml (9911b23)
Changelog

Sourced from flask-oidc's changelog.

2.3.1 (2025-03-05)

Added

  • Make the client_secrets.json file optional when OIDC is disabled (1566f85)

Fixed

  • Link to the docs in the README (b95e9d9)
  • Fix build in readthedocs (1b49dca)

2.3.0 (2025-03-04)

Added

  • Added a setting to disable OIDC authentication for testing and dev (bb2f015)
  • Support Python 3.12 (3e2fc0a)

Fixed

  • Make the GH actions triggers more specific (cde8047)
  • Fix a typo in the Github Actions (756601a)
  • Reuse: convert dep5 to REUSE.toml (95f3fd6)
  • Modernize pyproject.toml (9911b23)
Commits
  • 9845778 Version 2.3.1
  • 1566f85 Make the client_secrets.json file optional when OIDC is disabled
  • 1b49dca Fix build in readthedocs
  • b95e9d9 Link to the docs in the README
  • a4b6045 Version 2.3.0
  • 3e2fc0a Support Python 3.12
  • 9911b23 Modernize pyproject.toml
  • 756601a Fix a typo in the Github Actions
  • 95f3fd6 Reuse: convert dep5 to REUSE.toml
  • bb2f015 Add a setting to disable OIDC authentication for testing and dev
  • Additional commits viewable in compare view

Updates sentry-sdk[flask] from 2.19.0 to 2.29.1

Release notes

Sourced from sentry-sdk[flask]'s releases.

2.29.1

Various fixes & improvements

  • fix(logs): send severity_text: warn instead of warning (#4396) by @​lcian

2.29.0

Various fixes & improvements

2.28.0

Various fixes & improvements

Bumps the pip-minor group with 18 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.4` | `8.3.5` |
| [pytest-mock](https://github.com/pytest-dev/pytest-mock) | `3.14.0` | `3.14.1` |
| [click](https://github.com/pallets/click) | `8.1.7` | `8.1.8` |
| [six](https://github.com/benjaminp/six) | `1.16.0` | `1.17.0` |
| [python-dotenv](https://github.com/theskumar/python-dotenv) | `1.0.1` | `1.1.0` |
| [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) | `2.0.36` | `2.0.41` |
| [flask-migrate](https://github.com/miguelgrinberg/flask-migrate) | `4.0.7` | `4.1.0` |
| [cloud-sql-python-connector](https://github.com/GoogleCloudPlatform/cloud-sql-python-connector) | `1.14.0` | `1.18.2` |
| [marshmallow-sqlalchemy](https://github.com/marshmallow-code/marshmallow-sqlalchemy) | `1.1.0` | `1.4.2` |
| [flask-marshmallow](https://github.com/marshmallow-code/flask-marshmallow) | `1.2.1` | `1.3.0` |
| [flask-oidc](https://github.com/fedora-infra/flask-oidc) | `2.2.2` | `2.3.1` |
| [sentry-sdk[flask]](https://github.com/getsentry/sentry-python) | `2.19.0` | `2.29.1` |
| [okta](https://github.com/okta/okta-sdk-python) | `2.9.8` | `2.9.13` |
| [pluggy](https://github.com/pytest-dev/pluggy) | `1.5.0` | `1.6.0` |
| [tox](https://github.com/tox-dev/tox) | `4.23.2` | `4.26.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.8.0` | `0.11.12` |
| [mypy](https://github.com/python/mypy) | `1.13.0` | `1.16.0` |
| [types-flask-migrate](https://github.com/python/typeshed) | `4.0.0.20240311` | `4.1.0.20250112` |



Updates `pytest` from 8.3.4 to 8.3.5
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.3.4...8.3.5)

Updates `pytest-mock` from 3.14.0 to 3.14.1
- [Release notes](https://github.com/pytest-dev/pytest-mock/releases)
- [Changelog](https://github.com/pytest-dev/pytest-mock/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-mock@v3.14.0...v3.14.1)

Updates `click` from 8.1.7 to 8.1.8
- [Release notes](https://github.com/pallets/click/releases)
- [Changelog](https://github.com/pallets/click/blob/main/CHANGES.rst)
- [Commits](pallets/click@8.1.7...8.1.8)

Updates `six` from 1.16.0 to 1.17.0
- [Changelog](https://github.com/benjaminp/six/blob/main/CHANGES)
- [Commits](benjaminp/six@1.16.0...1.17.0)

Updates `python-dotenv` from 1.0.1 to 1.1.0
- [Release notes](https://github.com/theskumar/python-dotenv/releases)
- [Changelog](https://github.com/theskumar/python-dotenv/blob/main/CHANGELOG.md)
- [Commits](theskumar/python-dotenv@v1.0.1...v1.1.0)

Updates `sqlalchemy` from 2.0.36 to 2.0.41
- [Release notes](https://github.com/sqlalchemy/sqlalchemy/releases)
- [Changelog](https://github.com/sqlalchemy/sqlalchemy/blob/main/CHANGES.rst)
- [Commits](https://github.com/sqlalchemy/sqlalchemy/commits)

Updates `flask-migrate` from 4.0.7 to 4.1.0
- [Release notes](https://github.com/miguelgrinberg/flask-migrate/releases)
- [Changelog](https://github.com/miguelgrinberg/Flask-Migrate/blob/main/CHANGES.md)
- [Commits](miguelgrinberg/Flask-Migrate@v4.0.7...v4.1.0)

Updates `cloud-sql-python-connector` from 1.14.0 to 1.18.2
- [Release notes](https://github.com/GoogleCloudPlatform/cloud-sql-python-connector/releases)
- [Changelog](https://github.com/GoogleCloudPlatform/cloud-sql-python-connector/blob/main/CHANGELOG.md)
- [Commits](GoogleCloudPlatform/cloud-sql-python-connector@v1.14.0...v1.18.2)

Updates `marshmallow-sqlalchemy` from 1.1.0 to 1.4.2
- [Changelog](https://github.com/marshmallow-code/marshmallow-sqlalchemy/blob/dev/CHANGELOG.rst)
- [Commits](marshmallow-code/marshmallow-sqlalchemy@1.1.0...1.4.2)

Updates `flask-marshmallow` from 1.2.1 to 1.3.0
- [Release notes](https://github.com/marshmallow-code/flask-marshmallow/releases)
- [Changelog](https://github.com/marshmallow-code/flask-marshmallow/blob/dev/CHANGELOG.rst)
- [Commits](marshmallow-code/flask-marshmallow@1.2.1...1.3.0)

Updates `flask-oidc` from 2.2.2 to 2.3.1
- [Release notes](https://github.com/fedora-infra/flask-oidc/releases)
- [Changelog](https://github.com/fedora-infra/flask-oidc/blob/develop/docs/changelog.md)
- [Commits](fedora-infra/flask-oidc@2.2.2...2.3.1)

Updates `sentry-sdk[flask]` from 2.19.0 to 2.29.1
- [Release notes](https://github.com/getsentry/sentry-python/releases)
- [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-python@2.19.0...2.29.1)

Updates `okta` from 2.9.8 to 2.9.13
- [Release notes](https://github.com/okta/okta-sdk-python/releases)
- [Changelog](https://github.com/okta/okta-sdk-python/blob/master/CHANGELOG.md)
- [Commits](okta/okta-sdk-python@v2.9.8...v2.9.13)

Updates `pluggy` from 1.5.0 to 1.6.0
- [Changelog](https://github.com/pytest-dev/pluggy/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pluggy@1.5.0...1.6.0)

Updates `tox` from 4.23.2 to 4.26.0
- [Release notes](https://github.com/tox-dev/tox/releases)
- [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst)
- [Commits](tox-dev/tox@4.23.2...4.26.0)

Updates `ruff` from 0.8.0 to 0.11.12
- [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.8.0...0.11.12)

Updates `mypy` from 1.13.0 to 1.16.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.13.0...v1.16.0)

Updates `types-flask-migrate` from 4.0.0.20240311 to 4.1.0.20250112
- [Commits](https://github.com/python/typeshed/commits)

---
updated-dependencies:
- dependency-name: pytest
  dependency-version: 8.3.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-minor
- dependency-name: pytest-mock
  dependency-version: 3.14.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-minor
- dependency-name: click
  dependency-version: 8.1.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-minor
- dependency-name: six
  dependency-version: 1.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: python-dotenv
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: sqlalchemy
  dependency-version: 2.0.41
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-minor
- dependency-name: flask-migrate
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: cloud-sql-python-connector
  dependency-version: 1.18.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: marshmallow-sqlalchemy
  dependency-version: 1.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: flask-marshmallow
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: flask-oidc
  dependency-version: 2.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: sentry-sdk[flask]
  dependency-version: 2.29.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: okta
  dependency-version: 2.9.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-minor
- dependency-name: pluggy
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: tox
  dependency-version: 4.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: ruff
  dependency-version: 0.11.12
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: mypy
  dependency-version: 1.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: types-flask-migrate
  dependency-version: 4.1.0.20250112
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jun 2, 2025
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 Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants