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

chore(deps): bump the project-api-dependencies group across 1 directory with 65 updates #36

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 15, 2024

Bumps the project-api-dependencies group with 65 updates in the /apps/project-api directory:

Package From To
flask 2.2.5 3.0.3
jinja2 3.1.2 3.1.4
werkzeug 2.2.3 3.0.3
marshmallow 3.19.0 3.21.3
flask-sqlalchemy 2.5.1 3.1.1
sqlalchemy 1.4.49 2.0.30
alembic 1.12.0 1.13.1
marshmallow-sqlalchemy 0.29.0 1.0.0
flask-smorest 0.41.0 0.44.0
flask-cors 4.0.0 4.0.1
sqlalchemy-utils 0.41.1 0.41.2
sqlalchemy-history 2.0.0 2.1.4
flask-babel 3.1.0 4.0.0
plotly 5.17.0 5.22.0
celery[redis] 5.2.7 5.4.0
python-dateutil 2.8.2 2.9.0.post0
networkx 2.6.3 3.3
dulwich 0.21.6 0.22.1
pyflakes 3.0.1 3.2.0
cryptography 41.0.3 42.0.8
dynaconf 3.1.11 3.2.5
dogpile-cache 1.2.2 1.3.3
cachetools 5.3.1 5.3.3
requests 2.31.0 2.32.3
kaleido 0.2.1 0.2.1.post1
jsonschema 4.17.3 4.22.0
zipp 3.15.0 3.19.2
webargs 8.1.0 8.4.0
typing-extensions 4.7.1 4.12.2
pyrsistent 0.19.3 0.20.0
pyparsing 3.1.1 3.1.2
protobuf 4.24.3 5.27.1
markupsafe 2.1.3 2.1.5
mako 1.2.4 1.3.5
kombu 5.2.4 5.3.7
itsdangerous 2.1.2 2.2.0
importlib-resources 5.12.0 6.4.0
importlib-metadata 4.13.0 7.1.0
apispec[marshmallow] 6.3.0 6.6.1
charset-normalizer 3.2.0 3.3.2
stevedore 3.5.2 5.2.0
docutils 0.20.1 0.21.2
scikit-learn 1.0.2 1.5.0
sklearn2pmml 0.94.1 0.108.0
amqp 5.1.1 5.2.0
attrs 23.1.0 23.2.0
babel 2.12.1 2.15.0
billiard 3.6.4.0 4.2.0
certifi 2023.7.22 2024.6.2
cffi 1.15.1 1.16.0
click-didyoumean 0.3.0 0.3.1
flatbuffers 23.5.26 24.3.25
greenlet 2.0.2 3.0.3
idna 3.4 3.7
packaging 23.1 24.1
pbr 5.11.1 6.0.0
prompt-toolkit 3.0.39 3.0.47
pycparser 2.21 2.22
pytz 2023.3.post1 2024.1
redis 4.6.0 5.0.6
sympy 1.10 1.12.1
tenacity 8.2.3 8.3.0
urllib3 2.0.6 2.2.1
vine 5.0.0 5.1.0
wcwidth 0.2.6 0.2.13

Updates flask from 2.2.5 to 3.0.3

Release notes

Sourced from flask's releases.

3.0.3

This is a fix release for the 3.0.x feature branch.

PyPI: https://pypi.org/project/Flask/3.0.3/ Changes: https://flask.palletsprojects.com/en/3.0.x/changes/#version-3-0-3 Milestone: https://github.com/pallets/flask/milestone/35?closed=1

  • The default hashlib.sha1 may not be available in FIPS builds. Don't access it at import time so the developer has time to change the default. #5448
  • Don't initialize the cli attribute in the sansio scaffold, but rather in the Flask concrete class. #5270

3.0.2

This is a fix release for the 3.0.x feature release branch. It fixes bugs but does not otherwise change behavior and should not result in breaking changes.

3.0.1

This is a fix release for the 3.0.x feature release branch.

Fixes an issue where using other JSON providers, such as flask-orjson, previously caused loaded session data to have an incorrect format in some cases.

3.0.0

This is a feature release, which includes new features, removes previously deprecated code, and adds new deprecations. The 3.0.x branch is now the supported fix branch, the 2.3.x branch will become a tag marking the end of support for that branch. We encourage everyone to upgrade, and to use a tool such as pip-tools to pin all dependencies and control upgrades. Test with warnings treated as errors to be able to adapt to deprecation warnings early.

2.3.3

This is a fix release for the 2.3.x feature branch.

2.3.2

This is a security fix release for the 2.3.x release branch.

2.3.1

This is a fix release for the 2.3.x release branch.

... (truncated)

Changelog

Sourced from flask's changelog.

Version 3.0.3

Released 2024-04-07

  • The default hashlib.sha1 may not be available in FIPS builds. Don't access it at import time so the developer has time to change the default. :issue:5448
  • Don't initialize the cli attribute in the sansio scaffold, but rather in the Flask concrete class. :pr:5270

Version 3.0.2

Released 2024-02-03

  • Correct type for jinja_loader property. :issue:5388
  • Fix error with --extra-files and --exclude-patterns CLI options. :issue:5391

Version 3.0.1

Released 2024-01-18

  • Correct type for path argument to send_file. :issue:5230
  • Fix a typo in an error message for the flask run --key option. :pr:5344
  • Session data is untagged without relying on the built-in json.loads object_hook. This allows other JSON providers that don't implement that. :issue:5381
  • Address more type findings when using mypy strict mode. :pr:5383

Version 3.0.0

Released 2023-09-30

  • Remove previously deprecated code. :pr:5223
  • Deprecate the __version__ attribute. Use feature detection, or importlib.metadata.version("flask"), instead. :issue:5230
  • Restructure the code such that the Flask (app) and Blueprint classes have Sans-IO bases. :pr:5127
  • Allow self as an argument to url_for. :pr:5264
  • Require Werkzeug >= 3.0.0.

Version 2.3.3

... (truncated)

Commits

Updates jinja2 from 3.1.2 to 3.1.4

Release notes

Sourced from jinja2's releases.

3.1.4

This is the Jinja 3.1.4 security release, which fixes security issues and bugs but does not otherwise change behavior and should not result in breaking changes.

PyPI: https://pypi.org/project/Jinja2/3.1.4/ Changes: https://jinja.palletsprojects.com/en/3.1.x/changes/#version-3-1-4

  • The xmlattr filter does not allow keys with / solidus, > greater-than sign, or = equals sign, in addition to disallowing spaces. Regardless of any validation done by Jinja, user input should never be used as keys to this filter, or must be separately validated first. GHSA-h75v-3vvj-5mfj

3.1.3

This is a fix release for the 3.1.x feature branch.

Changelog

Sourced from jinja2's changelog.

Version 3.1.4

Released 2024-05-05

  • The xmlattr filter does not allow keys with / solidus, > greater-than sign, or = equals sign, in addition to disallowing spaces. Regardless of any validation done by Jinja, user input should never be used as keys to this filter, or must be separately validated first. :ghsa:h75v-3vvj-5mfj

Version 3.1.3

Released 2024-01-10

  • Fix compiler error when checking if required blocks in parent templates are empty. :pr:1858
  • xmlattr filter does not allow keys with spaces. :ghsa:h5c8-rqwp-cp95
  • Make error messages stemming from invalid nesting of {% trans %} blocks more helpful. :pr:1918
Commits

Updates werkzeug from 2.2.3 to 3.0.3

Release notes

Sourced from werkzeug's releases.

3.0.3

This is the Werkzeug 3.0.3 security release, which fixes security issues and bugs but does not otherwise change behavior and should not result in breaking changes.

PyPI: https://pypi.org/project/Werkzeug/3.0.3/ Changes: https://werkzeug.palletsprojects.com/en/3.0.x/changes/#version-3-0-3 Milestone: https://github.com/pallets/werkzeug/milestone/35?closed=1

  • Only allow localhost, .localhost, 127.0.0.1, or the specified hostname when running the dev server, to make debugger requests. Additional hosts can be added by using the debugger middleware directly. The debugger UI makes requests using the full URL rather than only the path. GHSA-2g68-c3qc-8985
  • Make reloader more robust when "" is in sys.path. #2823
  • Better TLS cert format with adhoc dev certs. #2891
  • Inform Python < 3.12 how to handle itms-services URIs correctly, rather than using an overly-broad workaround in Werkzeug that caused some redirect URIs to be passed on without encoding. #2828
  • Type annotation for Rule.endpoint and other uses of endpoint is Any. #2836

3.0.2

This is a fix release for the 3.0.x feature branch.

3.0.1

This is a security release for the 3.0.x feature branch.

3.0.0

This is a feature release, which includes new features, removes previously deprecated code, and adds new deprecations. The 3.0.x branch is now the supported fix branch, the 2.3.x branch will become a tag marking the end of support for that branch. We encourage everyone to upgrade, and to use a tool such as pip-tools to pin all dependencies and control upgrades. Test with warnings treated as errors to be able to adapt to deprecation warnings early.

2.3.8

This is a security release for the 2.3.x feature branch.

2.3.7

This is a fix release for the 2.3.x feature branch.

2.3.6

This is a fix release for the 2.3.x feature branch.

2.3.5

This is a fix release for the 2.3.x feature branch.

... (truncated)

Changelog

Sourced from werkzeug's changelog.

Version 3.0.3

Released 2024-05-05

  • Only allow localhost, .localhost, 127.0.0.1, or the specified hostname when running the dev server, to make debugger requests. Additional hosts can be added by using the debugger middleware directly. The debugger UI makes requests using the full URL rather than only the path. :ghsa:2g68-c3qc-8985

  • Make reloader more robust when "" is in sys.path. :pr:2823

  • Better TLS cert format with adhoc dev certs. :pr:2891

  • Inform Python < 3.12 how to handle itms-services URIs correctly, rather than using an overly-broad workaround in Werkzeug that caused some redirect URIs to be passed on without encoding. :issue:2828

  • Type annotation for Rule.endpoint and other uses of endpoint is Any. :issue:2836

  • Make reloader more robust when "" is in sys.path. :pr:2823

Version 3.0.2

Released 2024-04-01

  • Ensure setting merge_slashes to False results in NotFound for repeated-slash requests against single slash routes. :issue:2834
  • Fix handling of TypeError in TypeConversionDict.get() to match ValueError. :issue:2843
  • Fix response_wrapper type check in test client. :issue:2831
  • Make the return type of MultiPartParser.parse more precise. :issue:2840
  • Raise an error if converter arguments cannot be parsed. :issue:2822

Version 3.0.1

Released 2023-10-24

  • Fix slow multipart parsing for large parts potentially enabling DoS attacks.

Version 3.0.0

Released 2023-09-30

  • Remove previously deprecated code. :pr:2768

... (truncated)

Commits

Updates marshmallow from 3.19.0 to 3.21.3

Changelog

Sourced from marshmallow's changelog.

3.21.3 (2024-06-05)


Bug fixes:

  • Fix memory leak that prevented schema instances from getting GC'd (:pr:2277). Thanks :user:mrcljx for the PR.

3.21.2 (2024-05-01)


Bug fixes:

  • Allow timestamp 0 in fields.DateTime (:issue:2133). Thanks :user:flydzen for reporting.

3.21.1 (2024-03-04)


Bug fixes:

  • Fix error message when field is declared as a class and not an instance (:issue:2245). Thanks :user:travnick for reporting.

3.21.0 (2024-02-26)


Bug fixes:

  • Fix validation of URL fields to allow missing user field, per NWG RFC 3986 (:issue:2232). Thanks :user:ddennerline3 for reporting and :user:deckar01 for the PR.

Other changes:

  • Backwards-incompatible: __version__, __parsed_version__, and __version_info__ attributes are deprecated (:issue:2227). Use feature detection or importlib.metadata.version("marshmallow") instead.

3.20.2 (2024-01-09)


Bug fixes:

  • Fix Nested field type hint for lambda Schema types (:pr:2164). Thanks :user:somethingnew2-0 for the PR.

Other changes:

  • Officially support Python 3.12 (:pr:2188).

... (truncated)

Commits
  • b9646e3 Bump version and update changelog
  • 99103a6 Remove leaky lru_cache (#2277)
  • 47205b5 [pre-commit.ci] pre-commit autoupdate (#2276)
  • aaecd5b [pre-commit.ci] pre-commit autoupdate
  • c592536 [pre-commit.ci] pre-commit autoupdate (#2269)
  • ee0c903 [pre-commit.ci] pre-commit autoupdate
  • d4fd5a4 [pre-commit.ci] pre-commit autoupdate
  • 511b8c5 Bump version and update changelog
  • 03f56a4 Merge pull request #2264 from marshmallow-code/allow_timestamp_0
  • 58fbbcd Encapsulate timestamp boolean check in utils
  • Additional commits viewable in compare view

Updates flask-sqlalchemy from 2.5.1 to 3.1.1

Release notes

Sourced from flask-sqlalchemy's releases.

3.1.1

This is a quick extra change to 3.1.0 which was released earlier today. It deprecates the __version__ attribute, to be removed in 3.2. Pallets projects in general are doing this to encourage feature detection or using the standard importlib.metadata.version(name) instead.

3.1.0

This is a feature release, which includes new features and removes previously deprecated code. The 3.1.x branch is now the supported bug fix branch. We encourage everyone to upgrade, and to use a tool such as pip-tools to pin all dependencies and control upgrades.

3.0.5

This is a fix release for the 3.0.x feature release. It fixes a pagination issue and improves typing.

3.0.4

This is a fix release for the 3.0.x feature release. It updates some typing related issues.

3.0.3

An SLSA provenance file for the build is available to download from the GitHub release page.

3.0.2

This is a fix release for the 3.0.x feature release. It updates compatibility with SQLAlchemy 2.0 beta 1.

3.0.1

This is a fix release for the 3.0.x feature release.

3.0.0

This is a feature release, which includes new features and removes previously deprecated code. The 3.0.x branch is now the supported bug fix branch, the 2.x branch will become a tag marking the end of support for that branch. We encourage everyone to upgrade, and to use a tool such as pip-tools to pin all dependencies and control upgrades.

3.0.0a2

This is a prerelease to preview the changes in 3.0, the next feature release. Prereleases are an opportunity to test and update your projects early before the final release.

... (truncated)

Changelog

Sourced from flask-sqlalchemy's changelog.

Version 3.1.1

Released 2023-09-11

  • Deprecate the __version__ attribute. Use feature detection, or importlib.metadata.version("flask-sqlalchemy"), instead. :pr:1256

Version 3.1.0

Released 2023-09-11

  • Drop support for Python 3.7. :pr:1251
  • Add support for the SQLAlchemy 2.x API via model_class parameter. :issue:1140
  • Bump minimum version of SQLAlchemy to 2.0.16.
  • Remove previously deprecated code.
  • Pass extra keyword arguments from get_or_404 to session.get. :issue:1149
  • Fix bug with finding right bind key for clause statements. :issue:1211

Version 3.0.5

Released 2023-06-21

  • Pagination.next() enforces max_per_page. :issue:1201
  • Improve type hint for get_or_404 return value to be non-optional. :pr:1226

Version 3.0.4

Released 2023-06-19

  • Fix type hint for get_or_404 return value. :pr:1208
  • Fix type hints for pyright (used by VS Code Pylance extension). :issue:1205

Version 3.0.3

Released 2023-01-31

  • Show helpful errors when mistakenly using multiple SQLAlchemy instances for the same app, or without calling init_app. :pr:1151
  • Fix issue with getting the engine associated with a model that uses polymorphic table inheritance. :issue:1155

... (truncated)

Commits

Updates sqlalchemy from 1.4.49 to 2.0.30

Release notes

Sourced from sqlalchemy's releases.

2.0.30

Released: May 5, 2024

orm

  • [orm] [bug] Added new attribute _orm.ORMExecuteState.is_from_statement to detect statements created using _sql.Select.from_statement(), and enhanced FromStatement to set _orm.ORMExecuteState.is_select, _orm.ORMExecuteState.is_insert, _orm.ORMExecuteState.is_update, and _orm.ORMExecuteState.is_delete according to the element that is sent to the _sql.Select.from_statement() method itself.

    References: #11220

  • [orm] [bug] Fixed issue in _orm.selectin_polymorphic() loader option where attributes defined with _orm.composite() on a superclass would cause an internal exception on load.

    References: #11291

  • [orm] [bug] [regression] Fixed regression from 1.4 where using _orm.defaultload() in conjunction with a non-propagating loader like _orm.contains_eager() would nonetheless propagate the _orm.contains_eager() to a lazy load operation, causing incorrect queries as this option is only intended to come from an original load.

    References: #11292

  • [orm] [bug] Fixed issue in ORM Annotated Declarative where typing issue where literals defined using PEP 695 type aliases would not work with inference of Enum datatypes. Pull request courtesy of Alc-Alc.

    References: #11305

  • [orm] [bug] Fixed issue in _orm.selectin_polymorphic() loader option where the SELECT emitted would only accommodate for the child-most class among the result rows that were returned, leading intermediary-class attributes to be unloaded if there were no concrete instances of that intermediary-class present in the result. This issue only presented itself for multi-level inheritance hierarchies.

    References: #11327

  • [orm] [bug] Fixed issue in _orm.Session.bulk_save_objects() where the form of the identity key produced when using return_defaults=True would be incorrect. This could lead to an errors during pickling as well as identity map mismatches.

... (truncated)

Commits

Updates alembic from 1.12.0 to 1.13.1

Release notes

Sourced from alembic's releases.

1.13.1

Released: December 20, 2023

bug

  • [bug] [autogenerate] Fixed Rewriter so that more than two instances could be chained together correctly, also allowing multiple process_revision_directives callables to be chained. Pull request courtesy zrotceh.

    References: #1337

  • [bug] [environment] Fixed issue where the method EnvironmentContext.get_x_argument() using the EnvironmentContext.get_x_argument.as_dictionary parameter would fail if an argument key were passed on the command line as a name alone, that is, without an equal sign = or a value. Behavior is repaired where this condition is detected and will return a blank string for the given key, consistent with the behavior where the = sign is present and no value. Pull request courtesy Iuri de Silvio.

    References: #1369

  • [bug] [autogenerate] Fixed issue where the "unique" flag of an Index would not be maintained when generating downgrade migrations. Pull request courtesy Iuri de Silvio.

    References: #1370

  • [bug] [versioning] Fixed bug in versioning model where a downgrade across a revision with two down revisions with one down revision depending on the other, would produce an erroneous state in the alembic_version table, making upgrades impossible without manually repairing the table. Thanks much to Saif Hakim for the great work on this.

    References: #1373

  • [bug] [typing] Updated pep-484 typing to pass mypy "strict" mode, however including per-module qualifications for specific typing elements not yet complete. This allows us to catch specific typing issues that have been ongoing such as import symbols not properly exported.

    References: #1377

1.13.0

Released: December 1, 2023

changed

... (truncated)

Commits

Updates marshmallow-sqlalchemy from 0.29.0 to 1.0.0

Changelog

Sourced from marshmallow-sqlalchemy's changelog.

1.0.0 (2024-01-30) +++++++++++++++++++

  • Remove __version__ attribute. Use feature detection or importlib.metadata.version("marshmallow-sqlalchemy") instead (:pr:568).
  • Support marshmallow>=3.10.0 (:pr:566).
  • Passing info={"marshmallow": ...} to SQLAlchemy columns is removed, as it is redundant with the auto_field functionality (:pr:567).
  • Remove packaging as a dependency (:pr:566).
  • Support Python 3.12.

0.30.0 (2024-01-07) +++++++++++++++++++

Features:

  • Use Session.get() load instances to improve deserialization performance (:pr:548). Thanks :user:zippolyte for the PR.

Other changes:

  • Drop support for Python 3.7, which is EOL (:pr:540).
Commits

Updates flask-smorest from 0.41.0 to 0.44.0

Changelog

Sourced from flask-smorest's changelog.

0.44.0 (2024-02-26)


Features:

  • Always use flask.json to serialize data (API output, ETag, API docs). Ensures a user-defined custom JSON serializer is used everywhere. (:pr:561)

0.43.0 (2024-02-12)


Bug fixes:

  • Fix type-hint in paginate method (:pr:593). Thanks :user:jtait for the PR.

Other changes:

  • Official Python 3.12 support (:pr:591). Thanks :user:goddessana for the PR.
  • Require Flask>=3.0.2 and Werkzeug>=3.0.01 (:pr:604).

0.42.3 (2023-12-05)


Bug fixes:

  • Fix OpenAPI docs to include response headers when pagination is used (:issue:578). Thanks :user:drcpu-github for the report and the PR.

0.42.2 (2023-11-09)


Features:

  • Support Flask 3.x and werkzeug 3.x (:pr:576).

0.42.1 (2023-08-17)


Bug fixes:

  • Fix order of path parameters extracted from Flask route (:issue:541). Thanks :user:ddorian for the report and the PR.

Other changes:

  • Fix setup.py to require Flask>=2.0.1, needed since 0.42.0.

0.42.0 (2023-05-15)

... (truncated)

Commits
  • 15afc94 Bump version: 0.43.0 → 0.44.0
  • f2c9d8a Update CHANGELOG
  • 1bb18c3 Merge pull request #561 from marshmallow-code/flask_json
  • b00c8d2 [pre-commit.ci] auto fixes from pre-commit.com hooks
  • ccd7d0a Always use flask.json to serialize
  • 5021607 Bump pytest from 8.0.1 to 8.0.2
  • cfb44bb Bump coverage from 7.4.1 to 7.4.3
  • 1756e38 [pre-commit.ci] pre-commit autoupdate
  • b782210 Bump pre-commit from 3.6.1 to 3.6.2
  • 671d569 Bump pytest from 8.0.0 to 8.0.1
  • Additional commits viewable in compare view

Updates flask-cors from 4.0.0 to 4.0.1

Release notes

Sourced from flask-cors's releases.

4.0.1

What's Changed

New Contributors

Full Changelog: corydolphin/flask-cors@4.0.0...4.0.1

Changelog

Sourced from flask-cors's changelog.

4.0.1

Security

Commits

Updates sqlalchemy-utils from 0.41.1 to 0.41.2

Changelog

Sourced from sqlalchemy-utils's changelog.

0.41.2 (2024-03-22) ^^^^^^^^^^^^^^^^^^^

  • Fix breaking change introduced on SQLAlchemy 2.0.22 changes to attributes.AttributeImpl constructor (#733)
Commits

Updates sqlalchemy-history from 2.0.0 to 2.1.4

Release notes

Sourced from sqlalchemy-history's releases.

v2.1.4

What's Changed

Fixes the transaction.issued_at being constant bug introduced in v2.1.3

Full Changelog: corridor/sqlalchemy-history@v2.1.3...v2.1.4

V2.1.3

What's Changed

CI FIxes

New Contributors

Full Changelog: corridor/sqlalchemy-history@v2.1.2...v2.1.3

V2.1.2

What's Changed

Bug fixes

Internal

Full Changelog: corridor/sqlalchemy-history@v2.1.1...v2.1.2

v2.1.1

What's Changed

Full Changelog: corridor/sqlalchemy-history@v2.1.0...v2.1.1

v2.1.0

What's Changed

Enhancements and Bug fixes

... (truncated)

Changelog

Sourced from sqlalchemy-history's changelog.

Changelog

Here you can see the full list of changes between each release.

Unreleased ^^^^^^^^^^

  • Remove support for SQLA<2

2.1.0 (2023-11-07) ^^^^^^^^^^^^^^^^^^^

  • Support sqlalchemy 2.x
  • Fix issue with some columns in alembic generated migrations not setting nullable=False correctly.
  • Fix issue where version table was using default and server_default when ...

    Description has been truncated

…ry with 65 updates

Bumps the project-api-dependencies group with 65 updates in the /apps/project-api directory:

| Package | From | To |
| --- | --- | --- |
| [flask](https://github.com/pallets/flask) | `2.2.5` | `3.0.3` |
| [jinja2](https://github.com/pallets/jinja) | `3.1.2` | `3.1.4` |
| [werkzeug](https://github.com/pallets/werkzeug) | `2.2.3` | `3.0.3` |
| [marshmallow](https://github.com/marshmallow-code/marshmallow) | `3.19.0` | `3.21.3` |
| [flask-sqlalchemy](https://github.com/pallets-eco/flask-sqlalchemy) | `2.5.1` | `3.1.1` |
| [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) | `1.4.49` | `2.0.30` |
| [alembic](https://github.com/sqlalchemy/alembic) | `1.12.0` | `1.13.1` |
| [marshmallow-sqlalchemy](https://github.com/marshmallow-code/marshmallow-sqlalchemy) | `0.29.0` | `1.0.0` |
| [flask-smorest](https://github.com/marshmallow-code/flask-smorest) | `0.41.0` | `0.44.0` |
| [flask-cors](https://github.com/corydolphin/flask-cors) | `4.0.0` | `4.0.1` |
| [sqlalchemy-utils](https://github.com/kvesteri/sqlalchemy-utils) | `0.41.1` | `0.41.2` |
| [sqlalchemy-history](https://github.com/corridor/sqlalchemy-history) | `2.0.0` | `2.1.4` |
| [flask-babel](https://github.com/python-babel/flask-babel) | `3.1.0` | `4.0.0` |
| [plotly](https://github.com/plotly/plotly.py) | `5.17.0` | `5.22.0` |
| [celery[redis]](https://github.com/celery/celery) | `5.2.7` | `5.4.0` |
| [python-dateutil](https://github.com/dateutil/dateutil) | `2.8.2` | `2.9.0.post0` |
| [networkx](https://github.com/networkx/networkx) | `2.6.3` | `3.3` |
| [dulwich](https://github.com/dulwich/dulwich) | `0.21.6` | `0.22.1` |
| [pyflakes](https://github.com/PyCQA/pyflakes) | `3.0.1` | `3.2.0` |
| [cryptography](https://github.com/pyca/cryptography) | `41.0.3` | `42.0.8` |
| [dynaconf](https://github.com/dynaconf/dynaconf) | `3.1.11` | `3.2.5` |
| [dogpile-cache](https://github.com/sqlalchemy/dogpile.cache) | `1.2.2` | `1.3.3` |
| [cachetools](https://github.com/tkem/cachetools) | `5.3.1` | `5.3.3` |
| [requests](https://github.com/psf/requests) | `2.31.0` | `2.32.3` |
| [kaleido](https://github.com/plotly/Kaleido) | `0.2.1` | `0.2.1.post1` |
| [jsonschema](https://github.com/python-jsonschema/jsonschema) | `4.17.3` | `4.22.0` |
| [zipp](https://github.com/jaraco/zipp) | `3.15.0` | `3.19.2` |
| [webargs](https://github.com/marshmallow-code/webargs) | `8.1.0` | `8.4.0` |
| [typing-extensions](https://github.com/python/typing_extensions) | `4.7.1` | `4.12.2` |
| [pyrsistent](https://github.com/tobgu/pyrsistent) | `0.19.3` | `0.20.0` |
| [pyparsing](https://github.com/pyparsing/pyparsing) | `3.1.1` | `3.1.2` |
| [protobuf](https://github.com/protocolbuffers/protobuf) | `4.24.3` | `5.27.1` |
| [markupsafe](https://github.com/pallets/markupsafe) | `2.1.3` | `2.1.5` |
| [mako](https://github.com/sqlalchemy/mako) | `1.2.4` | `1.3.5` |
| [kombu](https://github.com/celery/kombu) | `5.2.4` | `5.3.7` |
| [itsdangerous](https://github.com/pallets/itsdangerous) | `2.1.2` | `2.2.0` |
| [importlib-resources](https://github.com/python/importlib_resources) | `5.12.0` | `6.4.0` |
| [importlib-metadata](https://github.com/python/importlib_metadata) | `4.13.0` | `7.1.0` |
| [apispec[marshmallow]](https://github.com/marshmallow-code/apispec) | `6.3.0` | `6.6.1` |
| [charset-normalizer](https://github.com/Ousret/charset_normalizer) | `3.2.0` | `3.3.2` |
| [stevedore](https://docs.openstack.org/stevedore/latest/) | `3.5.2` | `5.2.0` |
| [docutils](https://docutils.sourceforge.io) | `0.20.1` | `0.21.2` |
| [scikit-learn](https://github.com/scikit-learn/scikit-learn) | `1.0.2` | `1.5.0` |
| [sklearn2pmml](https://github.com/jpmml/sklearn2pmml) | `0.94.1` | `0.108.0` |
| [amqp](https://github.com/celery/py-amqp) | `5.1.1` | `5.2.0` |
| [attrs](https://github.com/sponsors/hynek) | `23.1.0` | `23.2.0` |
| [babel](https://github.com/python-babel/babel) | `2.12.1` | `2.15.0` |
| [billiard](https://github.com/celery/billiard) | `3.6.4.0` | `4.2.0` |
| [certifi](https://github.com/certifi/python-certifi) | `2023.7.22` | `2024.6.2` |
| [cffi](https://github.com/python-cffi/cffi) | `1.15.1` | `1.16.0` |
| [click-didyoumean](https://github.com/click-contrib/click-didyoumean) | `0.3.0` | `0.3.1` |
| [flatbuffers](https://github.com/google/flatbuffers) | `23.5.26` | `24.3.25` |
| [greenlet](https://github.com/python-greenlet/greenlet) | `2.0.2` | `3.0.3` |
| [idna](https://github.com/kjd/idna) | `3.4` | `3.7` |
| [packaging](https://github.com/pypa/packaging) | `23.1` | `24.1` |
| [pbr](https://docs.openstack.org/pbr/latest/) | `5.11.1` | `6.0.0` |
| [prompt-toolkit](https://github.com/prompt-toolkit/python-prompt-toolkit) | `3.0.39` | `3.0.47` |
| [pycparser](https://github.com/eliben/pycparser) | `2.21` | `2.22` |
| [pytz](https://github.com/stub42/pytz) | `2023.3.post1` | `2024.1` |
| [redis](https://github.com/redis/redis-py) | `4.6.0` | `5.0.6` |
| [sympy](https://github.com/sympy/sympy) | `1.10` | `1.12.1` |
| [tenacity](https://github.com/jd/tenacity) | `8.2.3` | `8.3.0` |
| [urllib3](https://github.com/urllib3/urllib3) | `2.0.6` | `2.2.1` |
| [vine](https://github.com/celery/vine) | `5.0.0` | `5.1.0` |
| [wcwidth](https://github.com/jquast/wcwidth) | `0.2.6` | `0.2.13` |



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

Updates `jinja2` from 3.1.2 to 3.1.4
- [Release notes](https://github.com/pallets/jinja/releases)
- [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst)
- [Commits](pallets/jinja@3.1.2...3.1.4)

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

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

Updates `flask-sqlalchemy` from 2.5.1 to 3.1.1
- [Release notes](https://github.com/pallets-eco/flask-sqlalchemy/releases)
- [Changelog](https://github.com/pallets-eco/flask-sqlalchemy/blob/main/CHANGES.rst)
- [Commits](pallets-eco/flask-sqlalchemy@2.5.1...3.1.1)

Updates `sqlalchemy` from 1.4.49 to 2.0.30
- [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 `alembic` from 1.12.0 to 1.13.1
- [Release notes](https://github.com/sqlalchemy/alembic/releases)
- [Changelog](https://github.com/sqlalchemy/alembic/blob/main/CHANGES)
- [Commits](https://github.com/sqlalchemy/alembic/commits)

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

Updates `flask-smorest` from 0.41.0 to 0.44.0
- [Release notes](https://github.com/marshmallow-code/flask-smorest/releases)
- [Changelog](https://github.com/marshmallow-code/flask-smorest/blob/main/CHANGELOG.rst)
- [Commits](marshmallow-code/flask-smorest@0.41.0...0.44.0)

Updates `flask-cors` from 4.0.0 to 4.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@4.0.0...4.0.1)

Updates `sqlalchemy-utils` from 0.41.1 to 0.41.2
- [Release notes](https://github.com/kvesteri/sqlalchemy-utils/releases)
- [Changelog](https://github.com/kvesteri/sqlalchemy-utils/blob/master/CHANGES.rst)
- [Commits](https://github.com/kvesteri/sqlalchemy-utils/commits)

Updates `sqlalchemy-history` from 2.0.0 to 2.1.4
- [Release notes](https://github.com/corridor/sqlalchemy-history/releases)
- [Changelog](https://github.com/corridor/sqlalchemy-history/blob/master/CHANGES.rst)
- [Commits](corridor/sqlalchemy-history@v2.0.0...v2.1.4)

Updates `flask-babel` from 3.1.0 to 4.0.0
- [Release notes](https://github.com/python-babel/flask-babel/releases)
- [Changelog](https://github.com/python-babel/flask-babel/blob/master/CHANGELOG)
- [Commits](python-babel/flask-babel@v3.1.0...v4.0.0)

Updates `plotly` from 5.17.0 to 5.22.0
- [Release notes](https://github.com/plotly/plotly.py/releases)
- [Changelog](https://github.com/plotly/plotly.py/blob/master/CHANGELOG.md)
- [Commits](plotly/plotly.py@v5.17.0...v5.22.0)

Updates `celery[redis]` from 5.2.7 to 5.4.0
- [Release notes](https://github.com/celery/celery/releases)
- [Changelog](https://github.com/celery/celery/blob/main/Changelog.rst)
- [Commits](celery/celery@v5.2.7...v5.4.0)

Updates `python-dateutil` from 2.8.2 to 2.9.0.post0
- [Release notes](https://github.com/dateutil/dateutil/releases)
- [Changelog](https://github.com/dateutil/dateutil/blob/master/NEWS)
- [Commits](dateutil/dateutil@2.8.2...2.9.0.post0)

Updates `networkx` from 2.6.3 to 3.3
- [Release notes](https://github.com/networkx/networkx/releases)
- [Commits](networkx/networkx@networkx-2.6.3...networkx-3.3)

Updates `dulwich` from 0.21.6 to 0.22.1
- [Release notes](https://github.com/dulwich/dulwich/releases)
- [Changelog](https://github.com/jelmer/dulwich/blob/master/NEWS)
- [Commits](jelmer/dulwich@dulwich-0.21.6...dulwich-0.22.1)

Updates `pyflakes` from 3.0.1 to 3.2.0
- [Changelog](https://github.com/PyCQA/pyflakes/blob/main/NEWS.rst)
- [Commits](PyCQA/pyflakes@3.0.1...3.2.0)

Updates `cryptography` from 41.0.3 to 42.0.8
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)
- [Commits](pyca/cryptography@41.0.3...42.0.8)

Updates `dynaconf` from 3.1.11 to 3.2.5
- [Release notes](https://github.com/dynaconf/dynaconf/releases)
- [Changelog](https://github.com/dynaconf/dynaconf/blob/master/CHANGELOG.md)
- [Commits](dynaconf/dynaconf@3.1.11...3.2.5)

Updates `dogpile-cache` from 1.2.2 to 1.3.3
- [Release notes](https://github.com/sqlalchemy/dogpile.cache/releases)
- [Commits](https://github.com/sqlalchemy/dogpile.cache/commits)

Updates `cachetools` from 5.3.1 to 5.3.3
- [Changelog](https://github.com/tkem/cachetools/blob/master/CHANGELOG.rst)
- [Commits](tkem/cachetools@v5.3.1...v5.3.3)

Updates `requests` from 2.31.0 to 2.32.3
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v2.31.0...v2.32.3)

Updates `kaleido` from 0.2.1 to 0.2.1.post1
- [Release notes](https://github.com/plotly/Kaleido/releases)
- [Commits](plotly/Kaleido@v0.2.1...v0.2.1.post1)

Updates `jsonschema` from 4.17.3 to 4.22.0
- [Release notes](https://github.com/python-jsonschema/jsonschema/releases)
- [Changelog](https://github.com/python-jsonschema/jsonschema/blob/main/CHANGELOG.rst)
- [Commits](python-jsonschema/jsonschema@v4.17.3...v4.22.0)

Updates `zipp` from 3.15.0 to 3.19.2
- [Release notes](https://github.com/jaraco/zipp/releases)
- [Changelog](https://github.com/jaraco/zipp/blob/main/NEWS.rst)
- [Commits](jaraco/zipp@v3.15.0...v3.19.2)

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

Updates `typing-extensions` from 4.7.1 to 4.12.2
- [Release notes](https://github.com/python/typing_extensions/releases)
- [Changelog](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md)
- [Commits](python/typing_extensions@4.7.1...4.12.2)

Updates `pyrsistent` from 0.19.3 to 0.20.0
- [Changelog](https://github.com/tobgu/pyrsistent/blob/master/CHANGES.txt)
- [Commits](tobgu/pyrsistent@v0.19.3...v0.20.0)

Updates `pyparsing` from 3.1.1 to 3.1.2
- [Release notes](https://github.com/pyparsing/pyparsing/releases)
- [Changelog](https://github.com/pyparsing/pyparsing/blob/master/CHANGES)
- [Commits](pyparsing/pyparsing@3.1.1...pyparsing_3.1.2)

Updates `protobuf` from 4.24.3 to 5.27.1
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl)
- [Commits](protocolbuffers/protobuf@v4.24.3...v5.27.1)

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

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

Updates `kombu` from 5.2.4 to 5.3.7
- [Release notes](https://github.com/celery/kombu/releases)
- [Changelog](https://github.com/celery/kombu/blob/main/Changelog.rst)
- [Commits](celery/kombu@v5.2.4...v5.3.7)

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

Updates `importlib-resources` from 5.12.0 to 6.4.0
- [Release notes](https://github.com/python/importlib_resources/releases)
- [Changelog](https://github.com/python/importlib_resources/blob/main/NEWS.rst)
- [Commits](python/importlib_resources@v5.12.0...v6.4.0)

Updates `importlib-metadata` from 4.13.0 to 7.1.0
- [Release notes](https://github.com/python/importlib_metadata/releases)
- [Changelog](https://github.com/python/importlib_metadata/blob/main/NEWS.rst)
- [Commits](python/importlib_metadata@v4.13.0...v7.1.0)

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

Updates `charset-normalizer` from 3.2.0 to 3.3.2
- [Release notes](https://github.com/Ousret/charset_normalizer/releases)
- [Changelog](https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md)
- [Commits](jawah/charset_normalizer@3.2.0...3.3.2)

Updates `stevedore` from 3.5.2 to 5.2.0

Updates `docutils` from 0.20.1 to 0.21.2

Updates `scikit-learn` from 1.0.2 to 1.5.0
- [Release notes](https://github.com/scikit-learn/scikit-learn/releases)
- [Commits](scikit-learn/scikit-learn@1.0.2...1.5.0)

Updates `sklearn2pmml` from 0.94.1 to 0.108.0
- [Changelog](https://github.com/jpmml/sklearn2pmml/blob/master/NEWS.md)
- [Commits](jpmml/sklearn2pmml@0.94.1...0.108.0)

Updates `amqp` from 5.1.1 to 5.2.0
- [Release notes](https://github.com/celery/py-amqp/releases)
- [Changelog](https://github.com/celery/py-amqp/blob/main/Changelog)
- [Commits](celery/py-amqp@v5.1.1...v5.2.0)

Updates `attrs` from 23.1.0 to 23.2.0
- [Commits](https://github.com/sponsors/hynek/commits)

Updates `babel` from 2.12.1 to 2.15.0
- [Release notes](https://github.com/python-babel/babel/releases)
- [Changelog](https://github.com/python-babel/babel/blob/master/CHANGES.rst)
- [Commits](python-babel/babel@v2.12.1...v2.15.0)

Updates `billiard` from 3.6.4.0 to 4.2.0
- [Release notes](https://github.com/celery/billiard/releases)
- [Changelog](https://github.com/celery/billiard/blob/main/CHANGES.txt)
- [Commits](celery/billiard@v3.6.4.0...v4.2.0)

Updates `certifi` from 2023.7.22 to 2024.6.2
- [Commits](certifi/python-certifi@2023.07.22...2024.06.02)

Updates `cffi` from 1.15.1 to 1.16.0
- [Release notes](https://github.com/python-cffi/cffi/releases)
- [Commits](python-cffi/cffi@v1.15.1...v1.16.0)

Updates `click-didyoumean` from 0.3.0 to 0.3.1
- [Release notes](https://github.com/click-contrib/click-didyoumean/releases)
- [Commits](click-contrib/click-didyoumean@v0.3.0...v0.3.1)

Updates `flatbuffers` from 23.5.26 to 24.3.25
- [Release notes](https://github.com/google/flatbuffers/releases)
- [Changelog](https://github.com/google/flatbuffers/blob/master/CHANGELOG.md)
- [Commits](google/flatbuffers@v23.5.26...v24.3.25)

Updates `greenlet` from 2.0.2 to 3.0.3
- [Changelog](https://github.com/python-greenlet/greenlet/blob/master/CHANGES.rst)
- [Commits](python-greenlet/greenlet@2.0.2...3.0.3)

Updates `idna` from 3.4 to 3.7
- [Release notes](https://github.com/kjd/idna/releases)
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst)
- [Commits](kjd/idna@v3.4...v3.7)

Updates `packaging` from 23.1 to 24.1
- [Release notes](https://github.com/pypa/packaging/releases)
- [Changelog](https://github.com/pypa/packaging/blob/main/CHANGELOG.rst)
- [Commits](pypa/packaging@23.1...24.1)

Updates `pbr` from 5.11.1 to 6.0.0

Updates `prompt-toolkit` from 3.0.39 to 3.0.47
- [Release notes](https://github.com/prompt-toolkit/python-prompt-toolkit/releases)
- [Changelog](https://github.com/prompt-toolkit/python-prompt-toolkit/blob/master/CHANGELOG)
- [Commits](prompt-toolkit/python-prompt-toolkit@3.0.39...3.0.47)

Updates `pycparser` from 2.21 to 2.22
- [Release notes](https://github.com/eliben/pycparser/releases)
- [Changelog](https://github.com/eliben/pycparser/blob/main/CHANGES)
- [Commits](eliben/pycparser@release_v2.21...release_v2.22)

Updates `pytz` from 2023.3.post1 to 2024.1
- [Release notes](https://github.com/stub42/pytz/releases)
- [Commits](stub42/pytz@release_2023.3.post1...release_2024.1)

Updates `redis` from 4.6.0 to 5.0.6
- [Release notes](https://github.com/redis/redis-py/releases)
- [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES)
- [Commits](redis/redis-py@v4.6.0...v5.0.6)

Updates `sympy` from 1.10 to 1.12.1
- [Release notes](https://github.com/sympy/sympy/releases)
- [Commits](sympy/sympy@sympy-1.10...sympy-1.12.1)

Updates `tenacity` from 8.2.3 to 8.3.0
- [Release notes](https://github.com/jd/tenacity/releases)
- [Commits](jd/tenacity@8.2.3...8.3.0)

Updates `urllib3` from 2.0.6 to 2.2.1
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@2.0.6...2.2.1)

Updates `vine` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/celery/vine/releases)
- [Changelog](https://github.com/celery/vine/blob/master/Changelog)
- [Commits](celery/vine@v5.0.0...v5.1.0)

Updates `wcwidth` from 0.2.6 to 0.2.13
- [Release notes](https://github.com/jquast/wcwidth/releases)
- [Commits](jquast/wcwidth@0.2.6...0.2.13)

---
updated-dependencies:
- dependency-name: flask
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: jinja2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: project-api-dependencies
- dependency-name: werkzeug
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: marshmallow
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: flask-sqlalchemy
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: sqlalchemy
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: alembic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: marshmallow-sqlalchemy
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: flask-smorest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: flask-cors
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: project-api-dependencies
- dependency-name: sqlalchemy-utils
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: project-api-dependencies
- dependency-name: sqlalchemy-history
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: flask-babel
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: plotly
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: celery[redis]
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: python-dateutil
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: networkx
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: dulwich
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: pyflakes
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: cryptography
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: dynaconf
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: dogpile-cache
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: cachetools
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: project-api-dependencies
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: kaleido
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: project-api-dependencies
- dependency-name: jsonschema
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: zipp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: webargs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: typing-extensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: pyrsistent
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: pyparsing
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: project-api-dependencies
- dependency-name: protobuf
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: markupsafe
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: project-api-dependencies
- dependency-name: mako
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: kombu
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: itsdangerous
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: importlib-resources
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: importlib-metadata
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: apispec[marshmallow]
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: charset-normalizer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: stevedore
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: docutils
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: scikit-learn
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: sklearn2pmml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: amqp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: attrs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: babel
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: billiard
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: certifi
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: cffi
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: click-didyoumean
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: project-api-dependencies
- dependency-name: flatbuffers
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: greenlet
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: idna
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: packaging
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: pbr
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: prompt-toolkit
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: project-api-dependencies
- dependency-name: pycparser
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: pytz
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: redis
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: project-api-dependencies
- dependency-name: sympy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: tenacity
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: urllib3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: vine
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: project-api-dependencies
- dependency-name: wcwidth
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: project-api-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jun 15, 2024
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants