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-dependencies group with 8 updates #380

Merged
merged 1 commit into from
Aug 14, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 14, 2023

Bumps the pip-dependencies group with 8 updates:

Package From To
aiobotocore 2.5.2 2.5.4
psycopg 3.1.9 3.1.10
alembic 1.11.1 1.11.2
mypy 1.4.1 1.5.0
flake8 6.0.0 6.1.0
coverage 7.2.7 7.3.0
pandas-stubs 2.0.2.230605 2.0.3.230814
moto 4.1.13 4.1.14

Updates aiobotocore from 2.5.2 to 2.5.4

Release notes

Sourced from aiobotocore's releases.

aiobotocore 2.5.4

What's Changed

Full Changelog: aio-libs/aiobotocore@2.5.3...2.5.4

aiobotocore 2.5.3

What's Changed

New Contributors

Full Changelog: aio-libs/aiobotocore@2.5.2...2.5.3

Changelog

Sourced from aiobotocore's changelog.

2.5.4 (2023-08-07) ^^^^^^^^^^^^^^^^^^

  • fix aenter attribute error introduced in refresh bugfix (#1031)

2.5.3 (2023-08-06) ^^^^^^^^^^^^^^^^^^

  • add more support for Python 3.11
  • bump botocore to 1.31.17
  • add waiter.wait return
  • fix SSO token refresh bug #1025
Commits

Updates psycopg from 3.1.9 to 3.1.10

Changelog

Sourced from psycopg's changelog.

.. currentmodule:: psycopg

.. index:: single: Release notes single: News

psycopg release notes

Future releases

Psycopg 3.2 (unreleased) ^^^^^^^^^^^^^^^^^^^^^^^^

  • Add support for integer, floating point, boolean NumPy scalar types__ (:ticket:[#332](https://github.com/psycopg/psycopg/issues/332)).
  • Add support for libpq functions to close prepared statements and portals introduced in libpq v17 (:ticket:[#603](https://github.com/psycopg/psycopg/issues/603)).
  • Disable receiving more than one result on the same cursor in pipeline mode, to iterate through ~Cursor.nextset(). The behaviour was different than in non-pipeline mode and not totally reliable (:ticket:[#604](https://github.com/psycopg/psycopg/issues/604)). The Cursor now only preserves the results set of the last ~Cursor.execute(), consistently with non-pipeline mode.

.. __: https://numpy.org/doc/stable/reference/arrays.scalars.html#built-in-scalar-types

Current release

Psycopg 3.1.10 ^^^^^^^^^^^^^^

  • Allow JSON dumpers to dump bytes directly instead of str, for better compatibility with libraries like orjson and msgspec (:ticket:[#569](https://github.com/psycopg/psycopg/issues/569))
  • Fix prepared statement cache validation when exiting pipeline mode (or ~Cursor.executemany()) in case an error occurred within the pipeline (:ticket:[#585](https://github.com/psycopg/psycopg/issues/585)).
  • Fix connect() to avoid "leaking" an open ~pq.PGconn attached to the OperationalError in case of connection failure. Error.pgconn is now a shallow copy of the real libpq connection, and the latter is closed before the exception propagates (:ticket:[#565](https://github.com/psycopg/psycopg/issues/565)).
  • Fix possible (ignored) exception on objects deletion (:ticket:[#591](https://github.com/psycopg/psycopg/issues/591)).
  • Don't clobber a Python exception raised during COPY FROM with the resulting !QueryCanceled raised as a consequence (:ticket:[#593](https://github.com/psycopg/psycopg/issues/593)).
  • Fix resetting Connection.read_only and ~Connection.deferrable to their default value using !None (:ticket:[#612](https://github.com/psycopg/psycopg/issues/612)).
  • Add support for Python 3.12.

... (truncated)

Commits
  • 8d2ba2d chore: bump psycopg package version to 3.1.10
  • bb2541b chore: upgrade cibuildwheel
  • dae77cb chore: bump libpq, openssl used in binary packages
  • 144fda3 Mark two more tests as timing-sensitive
  • bb7a668 Merge branch 'pipeline-nextset-warning' into maint-3.1
  • d684f48 fix: raise a warning if nextset is used after execute in pipeline mode
  • 62e7acb docs: drop example about using nextset() in pipeline mode
  • f370f65 docs: fix release version of json bytes dump support
  • 4e5e1bd Merge branch 'py312-3.1' into maint-3.1
  • cc90fc1 docs: mention Python 3.12 support in news file
  • Additional commits viewable in compare view

Updates alembic from 1.11.1 to 1.11.2

Release notes

Sourced from alembic's releases.

1.11.2

Released: August 4, 2023

feature

  • [feature] [operations] Added parameters if_exists and if_not_exists for index operations. Pull request courtesy of Max Adrian.

    References: #151

usecase

  • [usecase] [typing] Added typing to the default script mako templates.

    References: #1253

  • [usecase] [autogenerate] Added support in autogenerate for NULLS NOT DISTINCT in the PostgreSQL dialect.

    References: #1248

bug

  • [bug] Fixed format string logged when running a post write hook Pull request curtesy of Mathieu Défosse.

    References: #1261

Commits

Updates mypy from 1.4.1 to 1.5.0

Commits

Updates flake8 from 6.0.0 to 6.1.0

Commits

Updates coverage from 7.2.7 to 7.3.0

Changelog

Sourced from coverage's changelog.

Version 7.3.0 — 2023-08-12

  • Added a :meth:.Coverage.collect context manager to start and stop coverage data collection.

  • Dropped support for Python 3.7.

  • Fix: in unusual circumstances, SQLite cannot be set to asynchronous mode. Coverage.py would fail with the error Safety level may not be changed inside a transaction. This is now avoided, closing issue 1646_. Thanks to Michael Bell for the detailed bug report.

  • Docs: examples of configuration files now include separate examples for the different syntaxes: .coveragerc, pyproject.toml, setup.cfg, and tox.ini.

  • Fix: added nosemgrep comments to our JavaScript code so that semgrep-based SAST security checks won't raise false alarms about security problems that aren't problems.

  • Added a CITATION.cff file, thanks to Ken Schackart <pull 1641_>_.

.. _pull 1641: nedbat/coveragepy#1641 .. _issue 1646: nedbat/coveragepy#1646

.. _changes_7-2-7:

Commits
  • 9c2f924 docs: sample HTML for 7.3.0
  • 0421fdb docs: prep for 7.3.0
  • f2aa871 build: move pylint config into pyproject.toml
  • 1873ccb docs: drop a bunch of badges
  • 5937a62 feat: cov.collect() context manager
  • da7ee52 build(deps): bump sigstore/gh-action-sigstore-python from 2.0.0 to 2.0.1
  • d87f64a test: excluding NotImplementedError excluded too much
  • e51b1f7 test: ensure lines are properly ignored during metacov
  • b02de96 test(refactor): abstract method compatible with both pytest and mypy
  • ada3ade test(build): PytestCollectionWarning should be an error
  • Additional commits viewable in compare view

Updates pandas-stubs from 2.0.2.230605 to 2.0.3.230814

Commits

Updates moto from 4.1.13 to 4.1.14

Changelog

Sourced from moto's changelog.

4.1.14

Docker Digest for 4.1.14: sha256:4cc82c0803c6b578d5c4146a8e38ff0387dec565483cfaa63eb238cb867e97e6

New Methods:
    * SageMaker:
        * create_model_package()
        * create_model_package_group()
        * describe_model_package()
        * list_model_packages()

Miscellaneous: * CloudFormation: describe_stack_instances() now returns the StackInstanceStatus-attribute * CloudFront: update_distribution() now supports the DefaultRootObject-parameter * CloudWatch: get_metric_data() now support (simple) Expressions * CognitoIDP: initiate_auth() and admin_initiate_auth() now throw a NotAuthorizedError for disabled users * EC2 VPC's: Add CloudFront, Ground Station and Lattice prefix lists * IOT: search_index() now returns the connectivity-attribute * Organizations: Introduce more trusted service principals * RDS: create_db_cluster() now supports the VpcSecurityGroupIds-parameter * S3: Optional support for CRC32C checksums * SNS: publish_batch() now sends the required MessageDeduplicationId for FIFO queues * SQS: send_message_batch() now only throws a BatchRequestTooLong if the sum of all messages exceed the limit

Commits
  • cd5beb0 Techdebt: Replace sure with regular assertions in IAM (#6573)
  • 4263b99 chore: update EC2 Instance Offerings (#6571)
  • 51d9dd0 chore: update SSM default parameters (#6575)
  • 0d935ed Prep release 4.1.14 (#6574)
  • 7ad7ef0 chore: update EC2 Instance Types (#6572)
  • 41c5b61 CloudWatch: get_metric_data() now support (simple) Expressions (#6570)
  • 69a207d Techdebt: Replace sure with regular assertions in GuardDuty (#6569)
  • 414a9e6 Techdebt: Replace sure with regular assertions in Glue (#6568)
  • 35ab6ce RDS: create_db_cluster() now supports the VpcSecurityGroupIds-parameter (#6567)
  • b52fd80 Techdebt: Replace sure with regular assertions in Glacier (#6566)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> dependency will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> dependency will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the pip-dependencies group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [aiobotocore](https://github.com/aio-libs/aiobotocore) | `2.5.2` | `2.5.4` |
| [psycopg](https://github.com/psycopg/psycopg) | `3.1.9` | `3.1.10` |
| [alembic](https://github.com/sqlalchemy/alembic) | `1.11.1` | `1.11.2` |
| [mypy](https://github.com/python/mypy) | `1.4.1` | `1.5.0` |
| [flake8](https://github.com/pycqa/flake8) | `6.0.0` | `6.1.0` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.2.7` | `7.3.0` |
| [pandas-stubs](https://github.com/pandas-dev/pandas-stubs) | `2.0.2.230605` | `2.0.3.230814` |
| [moto](https://github.com/getmoto/moto) | `4.1.13` | `4.1.14` |


Updates `aiobotocore` from 2.5.2 to 2.5.4
- [Release notes](https://github.com/aio-libs/aiobotocore/releases)
- [Changelog](https://github.com/aio-libs/aiobotocore/blob/master/CHANGES.rst)
- [Commits](aio-libs/aiobotocore@2.5.2...2.5.4)

Updates `psycopg` from 3.1.9 to 3.1.10
- [Changelog](https://github.com/psycopg/psycopg/blob/master/docs/news.rst)
- [Commits](psycopg/psycopg@3.1.9...3.1.10)

Updates `alembic` from 1.11.1 to 1.11.2
- [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 `mypy` from 1.4.1 to 1.5.0
- [Commits](python/mypy@v1.4.1...v1.5.0)

Updates `flake8` from 6.0.0 to 6.1.0
- [Commits](PyCQA/flake8@6.0.0...6.1.0)

Updates `coverage` from 7.2.7 to 7.3.0
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](nedbat/coveragepy@7.2.7...7.3.0)

Updates `pandas-stubs` from 2.0.2.230605 to 2.0.3.230814
- [Changelog](https://github.com/pandas-dev/pandas-stubs/blob/main/docs/release_procedure.md)
- [Commits](pandas-dev/pandas-stubs@v2.0.2.230605...v2.0.3.230814)

Updates `moto` from 4.1.13 to 4.1.14
- [Changelog](https://github.com/getmoto/moto/blob/master/CHANGELOG.md)
- [Commits](getmoto/moto@4.1.13...4.1.14)

---
updated-dependencies:
- dependency-name: aiobotocore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-dependencies
- dependency-name: psycopg
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-dependencies
- dependency-name: alembic
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-dependencies
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-dependencies
- dependency-name: flake8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-dependencies
- dependency-name: coverage
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-dependencies
- dependency-name: pandas-stubs
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip-dependencies
- dependency-name: moto
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Aug 14, 2023
@github-actions
Copy link

Code Coverage

Package Line Rate Branch Rate Health
unified_graphics 86% 79%
unified_graphics.etl 94% 96%
utils.s3 68% 69%
Summary 86% (428 / 495) 84% (108 / 128)

Minimum allowed line rate is 60%

@ian-noaa ian-noaa merged commit 196bd8c into main Aug 14, 2023
9 checks passed
@ian-noaa ian-noaa deleted the dependabot-pip-pip-dependencies-749eabdaee branch August 14, 2023 16:57
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.

None yet

1 participant