Skip to content

Bump the pip-minor group across 1 directory with 17 updates #253

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 Apr 21, 2025

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

Package From To
pytest 8.3.4 8.3.5
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.40
flask-migrate 4.0.7 4.1.0
cloud-sql-python-connector 1.14.0 1.18.1
marshmallow-sqlalchemy 1.1.0 1.4.2
flask-marshmallow 1.2.1 1.3.0
flask-cors 5.0.0 5.0.1
flask-oidc 2.2.2 2.3.1
sentry-sdk[flask] 2.19.0 2.26.1
okta 2.9.8 2.9.12
tox 4.23.2 4.25.0
ruff 0.8.0 0.11.6
mypy 1.13.0 1.15.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 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

Unreleased

  • 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.
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.40

Release notes

Sourced from sqlalchemy's releases.

2.0.40

Released: March 27, 2025

orm

  • [orm] [bug] Fixed regression which occurred as of 2.0.37 where the checked ArgumentError that's raised when an inappropriate type or object is used inside of a Mapped annotation would raise TypeError with "boolean value of this clause is not defined" if the object resolved into a SQL expression in a boolean context, for programs where future annotations mode was not enabled. This case is now handled explicitly and a new error message has also been tailored for this case. In addition, as there are at least half a dozen distinct error scenarios for intepretation of the Mapped construct, these scenarios have all been unified under a new subclass of ArgumentError called MappedAnnotationError, to provide some continuity between these different scenarios, even though specific messaging remains distinct.

    References: #12329

  • [orm] [bug] Fixed regression in ORM Annotated Declarative class interpretation caused by typing_extension==4.13.0 that introduced a different implementation for TypeAliasType while SQLAlchemy assumed that it would be equivalent to the typing version, leading to pep-695 type annotations not resolving to SQL types as expected.

    References: #12473

sql

  • [sql] [usecase] Implemented support for the GROUPS frame specification in window functions by adding _sql.over.groups option to _sql.over() and FunctionElement.over(). Pull request courtesy Kaan Dikmen.

    References: #12450

  • [sql] [bug] Fixed issue in CTE constructs involving multiple DDL _sql.Insert statements with multiple VALUES parameter sets where the bound parameter names generated for these parameter sets would conflict, generating a compile time error.

    References: #12363

  • [sql] [bug] Fixed regression caused by #7471 leading to a SQL compilation issue where name disambiguation for two same-named FROM clauses with table aliasing in use at the same time would produce invalid SQL in the FROM clause with two "AS" clauses for the aliased table, due to double aliasing.

... (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.1

Release notes

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

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

v1.16.0

1.16.0 (2025-01-13)

Features

... (truncated)

Changelog

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

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

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-cors from 5.0.0 to 5.0.1

Release notes

Sourced from flask-cors's releases.

5.0.1

What's Changed

This primarily changes packaging to use uv and a new release pipeline, along with some small documentation improvements

New Contributors

Full Changelog: corydolphin/flask-cors@5.0.0...5.0.01

Commits

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.26.1

Release notes

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

2.26.1

Various fixes & improvements

2.26.0

Various fixes & improvements

  • fix(debug): Do not consider parent loggers for debug logging (#4286) by @​szokeasaurusrex
  • test(tracing): Simplify static/classmethod tracing tests (#4278) by Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Apr 21, 2025
@dependabot dependabot bot force-pushed the dependabot/pip/pip-minor-9a121c06e0 branch from c79ef0c to 0f6ff6d Compare April 28, 2025 00:47
@dependabot dependabot bot force-pushed the dependabot/pip/pip-minor-9a121c06e0 branch from 0f6ff6d to 595df68 Compare May 12, 2025 00:40
Bumps the pip-minor group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.4` | `8.3.5` |
| [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.40` |
| [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.1` |
| [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-cors](https://github.com/corydolphin/flask-cors) | `5.0.0` | `5.0.1` |
| [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.26.1` |
| [okta](https://github.com/okta/okta-sdk-python) | `2.9.8` | `2.9.12` |
| [tox](https://github.com/tox-dev/tox) | `4.23.2` | `4.25.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.8.0` | `0.11.6` |
| [mypy](https://github.com/python/mypy) | `1.13.0` | `1.15.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 `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.40
- [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.1
- [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.1)

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-cors` from 5.0.0 to 5.0.1
- [Release notes](https://github.com/corydolphin/flask-cors/releases)
- [Changelog](https://github.com/corydolphin/flask-cors/blob/main/CHANGELOG.md)
- [Commits](corydolphin/flask-cors@5.0.0...5.0.1)

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.26.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.26.1)

Updates `okta` from 2.9.8 to 2.9.12
- [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.12)

Updates `tox` from 4.23.2 to 4.25.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.25.0)

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

Updates `mypy` from 1.13.0 to 1.15.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.13.0...v1.15.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: 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.40
  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.1
  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-cors
  dependency-version: 5.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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.26.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: okta
  dependency-version: 2.9.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-minor
- dependency-name: tox
  dependency-version: 4.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: ruff
  dependency-version: 0.11.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: mypy
  dependency-version: 1.15.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 force-pushed the dependabot/pip/pip-minor-9a121c06e0 branch from 595df68 to 3e4a395 Compare May 13, 2025 20:45
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