Skip to content
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

Bump the pip-minor group across 1 directory with 14 updates #237

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 Feb 10, 2025

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

Package From To
click 8.1.7 8.1.8
six 1.16.0 1.17.0
sqlalchemy 2.0.36 2.0.38
flask-migrate 4.0.7 4.1.0
cloud-sql-python-connector 1.14.0 1.16.0
marshmallow 3.23.1 3.26.1
marshmallow-sqlalchemy 1.1.0 1.4.0
flask-marshmallow 1.2.1 1.3.0
sentry-sdk[flask] 2.19.0 2.20.0
okta 2.9.8 2.9.10
tox 4.23.2 4.24.1
ruff 0.8.0 0.9.5
mypy 1.13.0 1.15.0
types-flask-migrate 4.0.0.20240311 4.1.0.20250112

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 sqlalchemy from 2.0.36 to 2.0.38

Release notes

Sourced from sqlalchemy's releases.

2.0.38

Released: February 6, 2025

engine

  • [engine] [bug] Fixed event-related issue where invoking Engine.execution_options() on a Engine multiple times while making use of event-registering parameters such as isolation_level would lead to internal errors involving event registration.

    References: #12289

sql

  • [sql] [bug] Reorganized the internals by which the .c collection on a FromClause gets generated so that it is resilient against the collection being accessed in concurrent fashion. An example is creating a Alias or Subquery and accessing it as a module level variable. This impacts the Oracle dialect which uses such module-level global alias objects but is of general use as well.

    References: #12302

  • [sql] [bug] Fixed SQL composition bug which impacted caching where using a None value inside of an in_() expression would bypass the usual "expanded bind parameter" logic used by the IN construct, which allows proper caching to take place.

    References: #12314

postgresql

  • [postgresql] [usecase] [asyncio] Added an additional asyncio.shield() call within the connection terminate process of the asyncpg driver, to mitigate an issue where terminate would be prevented from completing under the anyio concurrency library.

    References: #12077

  • [postgresql] [bug] Adjusted the asyncpg connection wrapper so that the connection.transaction() call sent to asyncpg sends None for isolation_level if not otherwise set in the SQLAlchemy dialect/wrapper, thereby allowing asyncpg to make use of the server level setting for isolation_level in the absense of a client-level setting. Previously, this behavior of asyncpg was blocked by a hardcoded read_committed.

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

Release notes

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

v1.16.0

1.16.0 (2025-01-13)

Features

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

v1.15.0

1.15.0 (2024-12-10)

Features

Changelog

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

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
  • 0a94279 chore(main): release 1.16.0 (#1222)
  • 19b1367 chore(deps): bump virtualenv from 20.16.7 to 20.26.6 in /.kokoro (#1224)
  • b356db1 chore(deps): update python-nonmajor (#1213)
  • a403221 chore(deps): Update dependencies for github (#1216)
  • ac77932 feat: add support for GOOGLE_CLOUD_UNIVERSE_DOMAIN env var (#1221)
  • dde235b chore: replace usage of Type with type standard collection (#1220)
  • afbe0a5 chore(deps): bump jinja2 from 3.1.4 to 3.1.5 in /.kokoro (#1218)
  • 3b66c5a chore: remove type annotations for Enums (#1219)
  • 7eb7af3 test: add integration test for customer managed CAS instance (#1215)
  • e312de7 chore(deps): Update github/codeql-action action to v3.27.9 (#1214)
  • Additional commits viewable in compare view

Updates marshmallow from 3.23.1 to 3.26.1

Changelog

Sourced from marshmallow's changelog.

3.26.1 (2025-02-03)


Bug fixes:

  • Typing: Fix type annotations for class Meta <marshmallow.Schema.Meta> options (:issue:2804). Thanks :user:lawrence-law for reporting.

Other changes:

  • Remove default value for the data param of Nested._deserialize <marshmallow.fields.Nested._deserialize> (:issue:2802). Thanks :user:gbenson for reporting.

3.26.0 (2025-01-22)


Features:

  • Typing: Add type annotations and improved documentation for class Meta <marshmallow.Schema.Meta> options (:pr:2760).
  • Typing: Improve type coverage of marshmallow.Schema.SchemaMeta (:pr:2761).
  • Typing: marshmallow.Schema.loads parameter allows bytes and bytesarray (:pr:2769).

Bug fixes:

  • Respect data_key when schema validators raise a ValidationError <marshmallow.exceptions.ValidationError> with a field_name argument (:issue:2170). Thanks :user:matejsp for reporting.
  • Correctly handle multiple @post_load <marshmallow.post_load> methods where one method appends to the data and another passes pass_original=True (:issue:1755). Thanks :user:ghostwheel42 for reporting.
  • URL fields now properly validate file paths (:issue:2249). Thanks :user:0xDEC0DE for reporting and fixing.

Documentation:

  • Add :doc:upgrading guides <upgrading> for 3.24 and 3.26 (:pr:2780).
  • Various documentation improvements (:pr:2757, :pr:2759, :pr:2765, :pr:2774, :pr:2778, :pr:2783, :pr:2796).

Deprecations:

  • The ordered class Meta <marshmallow.Schema.Meta> option is deprecated (:issue:2146, :pr:2762). Field order is already preserved by default. Set marshmallow.Schema.dict_class to collections.OrderedDict to maintain the previous behavior.

3.25.1 (2025-01-11)


Bug fixes:

  • Typing: Fix type annotations for Tuple <marshmallow.fields.Tuple>,

... (truncated)

Commits

Updates marshmallow-sqlalchemy from 1.1.0 to 1.4.0

Changelog

Sourced from marshmallow-sqlalchemy's changelog.

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

Bug fixes:

  • Fix auto-generation of marshmallow.fields.Enum field from sqlalchemy.Enum columns (:issue:615). Thanks :user:joaquimvl for reporting.
  • Fix behavior of include_fk = False in options when parent schema sets include_fk = True (:issue:440). Thanks :user:uhnomoli for reporting.
  • Fields generated from non-nullable sqlalchemy.orm.relationship correctly set required=True and allow_none=False (:issue:336, :issue:163). Thanks :user:AbdealiLoKo for reporting.

Other changes:

  • Docs: Add more documentation for marshmallow_sqlalchemy.fields.Related (:issue:162). Thanks :user:GabrielC101 for the suggestion.
  • Docs: Document methods of SQLAlchemySchema <marshmallow_sqalalchemy.SQLAlchemySchema> and SQLAlchemyAutoSchema <marshmallow_sqalchemy.SQLAlchemyAutoSchema> (:issue:619).

... (truncated)

Commits
  • 2631978 Bump version and update changelog
  • 19ec568 Docs improvements (#656)
  • 295da07 Add missing TypeAlias annotation
  • d59fbfa Use all available ruff rules except those explicitly ignored (#655)
  • d42a076 Correctly handle postgres arrays of Enums multidimensional arrays (#654)
  • 8f92b07 Add type argument to SQLAlchemySchema and SQLAlchemyAutoSchema (#652)
  • 9eb6127 Remove unnecessary cast (#651)
  • 14193e9 Use new name for parent argument (#650)
  • 45c95d7 Fix mypy config to only run against src and tests (#649)
  • eea9d09 Fix casing in contributing docs
  • 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 sentry-sdk[flask] from 2.19.0 to 2.20.0

Release notes

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

2.20.0

2.19.2

Various fixes & improvements

2.19.1

Various fixes & improvements

Changelog

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

2.20.0

2.19.2

Various fixes & improvements

2.19.1

Various fixes & improvements

... (truncated)

Commits

Updates okta from 2.9.8 to 2.9.10

Release notes

Sourced from okta's releases.

v2.9.10

What's Changed

New Contributors

Full Changelog: okta/okta-sdk-python@v2.9.9...v2.9.10

v2.9.9

What's Changed

Full Changelog: okta/okta-sdk-python@v2.9.8...v2.9.9

Changelog

Sourced from okta's changelog.

Okta Python SDK Changelog

Commits

Updates tox from 4.23.2 to 4.24.1

Release notes

Sourced from tox's releases.

4.24.1

What's Changed

Full Changelog: tox-dev/tox@4.24.0...4.24.1

4.24.0

What's Changed

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

| Package | From | To |
| --- | --- | --- |
| [click](https://github.com/pallets/click) | `8.1.7` | `8.1.8` |
| [six](https://github.com/benjaminp/six) | `1.16.0` | `1.17.0` |
| [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) | `2.0.36` | `2.0.38` |
| [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.16.0` |
| [marshmallow](https://github.com/marshmallow-code/marshmallow) | `3.23.1` | `3.26.1` |
| [marshmallow-sqlalchemy](https://github.com/marshmallow-code/marshmallow-sqlalchemy) | `1.1.0` | `1.4.0` |
| [flask-marshmallow](https://github.com/marshmallow-code/flask-marshmallow) | `1.2.1` | `1.3.0` |
| [sentry-sdk[flask]](https://github.com/getsentry/sentry-python) | `2.19.0` | `2.20.0` |
| [okta](https://github.com/okta/okta-sdk-python) | `2.9.8` | `2.9.10` |
| [tox](https://github.com/tox-dev/tox) | `4.23.2` | `4.24.1` |
| [ruff](https://github.com/astral-sh/ruff) | `0.8.0` | `0.9.5` |
| [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 `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 `sqlalchemy` from 2.0.36 to 2.0.38
- [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.16.0
- [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.16.0)

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

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

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 `sentry-sdk[flask]` from 2.19.0 to 2.20.0
- [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.20.0)

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

Updates `tox` from 4.23.2 to 4.24.1
- [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.24.1)

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

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: click
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-minor
- dependency-name: six
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: sqlalchemy
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-minor
- dependency-name: flask-migrate
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: cloud-sql-python-connector
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: marshmallow
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: marshmallow-sqlalchemy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: flask-marshmallow
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: sentry-sdk[flask]
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: okta
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-minor
- dependency-name: tox
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: ruff
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: mypy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-minor
- dependency-name: types-flask-migrate
  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 Feb 10, 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