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 all-dependencies group with 6 updates #707

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 8, 2024

Bumps the all-dependencies group with 6 updates:

Package From To
attrs 23.1.0 23.2.0
bcrypt 4.0.1 4.1.2
kinto 16.2.2 16.2.3
ujson 5.8.0 5.9.0
moto[s3,server] 4.2.10 4.2.13
sqlalchemy 1.4.46 2.0.25

Updates attrs from 23.1.0 to 23.2.0

Commits

Updates bcrypt from 4.0.1 to 4.1.2

Commits
  • b9223e6 Try building py39 wheels to see if that helps with reinitialization errors (#...
  • 5049783 Bump syn from 2.0.40 to 2.0.41 in /src/_bcrypt (#696)
  • 642d070 Bump syn from 2.0.39 to 2.0.40 in /src/_bcrypt (#693)
  • 8b44a10 Bump libc from 0.2.150 to 0.2.151 in /src/_bcrypt (#692)
  • 951cc64 Bump once_cell from 1.18.0 to 1.19.0 in /src/_bcrypt (#690)
  • 7377c6d Bump actions/setup-python from 4.8.0 to 5.0.0 (#689)
  • 61b3203 Bump actions/setup-python from 4.7.1 to 4.8.0 (#688)
  • 1c3159a Fixed wheels for older versions of macOS (#687)
  • 1a41437 Update README.rst (#682)
  • 7881c5b Fix building windows abi3 wheels (#681)
  • Additional commits viewable in compare view

Updates kinto from 16.2.2 to 16.2.3

Release notes

Sourced from kinto's releases.

16.2.3

  • Upgraded Kinto Admin to v2.1.1
Changelog

Sourced from kinto's changelog.

16.2.3 (2023-12-05)

  • Upgraded Kinto Admin to v2.1.1 <https://github.com/Kinto/kinto-admin/releases/tag/v2.1.1>_
Commits

Updates ujson from 5.8.0 to 5.9.0

Release notes

Sourced from ujson's releases.

5.9.0

Breaking

  • Raise TypeError if toDict() returns a non-dict instead of silently converting it to null (#615) @​eltoder
  • Use lowercase strings for bool dict keys (#614) @​eltoder

Added

Changed

Fixed

Commits
  • 381f248 Speedup dumps with sorted keys
  • eda5ecd Speed-up and cleanup objToJSON
  • a08b75b Use lowercase strings for bool dict keys
  • 1c8188d Update pypa/cibuildwheel action to v2.16.2 (#612)
  • 40e342e Don't invoke setup.py directly
  • 87c2a9d Update pypa/cibuildwheel action to v2.16.2
  • 748dd1b README: replace expired esn.me with example.com (#611)
  • b348b90 README: replace expired esn.me with example.com
  • b7a4dfd Fix typos found by codespell (#610)
  • e00814c [pre-commit.ci] pre-commit autoupdate
  • Additional commits viewable in compare view

Updates moto[s3,server] from 4.2.10 to 4.2.13

Changelog

Sourced from moto[s3,server]'s changelog.

4.2.13

Docker Digest for 4.2.13: sha256:20a2fdd4828b0ce1170ae26186ed28b64523cf6af83af892a74d9b3e23f84471

New Services:
    * Panorama:
        * delete_device()
        * describe_device()
        * list_devices()
        * provision_device()
        * update_device_metadata()

New Methods: * CognitoIDP: * admin_respond_to_auth_challenge()

* IdentityStore:
    *  list_group_memberships_for_member()
  • Rekognition:

    • compare_faces()
    • detect_labels()
    • detect_text()
  • SSO-Admin:

    • attach_customer_managed_policy_reference_to_permission_set()
    • attach_managed_policy_to_permission_set()
    • delete_inline_policy_from_permission_set()
    • detach_customer_managed_policy_reference_from_permission_set()
    • detach_managed_policy_from_permission_set()
    • get_inline_policy_for_permission_set()
    • list_account_assignments_for_principal()
    • list_customer_managed_policy_references_in_permission_set()
    • list_managed_policies_in_permission_set()
    • put_inline_policy_to_permission_set()
  • Textract:

    • detect_document_text()

Miscellaneous: * ACM: describe_certificate() now returns a DomainValidationOption for each SN * CloudFormation: create_change_set() now longer throws an exception when supplying a YAML TemplateBody * CognitoIDP: create_resource_server() no longer crashes when the scope-parameter is not provided * DynamoDB: scan() now correctly handles the ScanFilter-attribute again (broken in 4.2.11) * EC2: launch templates created by CloudFormation now have a generated name if not provided * EC2: describe_instance_types() now handles unknown values for EnaSupport correctly * Sagemaker: create_model_package() nown supports Versioned packages * Scheduler: delete_scheduler() now throws the correct exception when a Schedule does not exist * SSO-Admin: list_account_assignments() now supports pagination

... (truncated)

Commits

Updates sqlalchemy from 1.4.46 to 2.0.25

Release notes

Sourced from sqlalchemy's releases.

2.0.25

Released: January 2, 2024

orm

  • [orm] [usecase] Added preliminary support for Python 3.12 pep-695 type alias structures, when resolving custom type maps for ORM Annotated Declarative mappings.

    References: #10807

  • [orm] [bug] Fixed issue where when making use of the _orm.relationship.post_update feature at the same time as using a mapper version_id_col could lead to a situation where the second UPDATE statement emitted by the post-update feature would fail to make use of the correct version identifier, assuming an UPDATE was already emitted in that flush which had already bumped the version counter.

    References: #10800

  • [orm] [bug] Fixed issue where ORM Annotated Declarative would mis-interpret the left hand side of a relationship without any collection specified as uselist=True if the left type were given as a class and not a string, without using future-style annotations.

    References: #10815

sql

  • [sql] [bug] Improved compilation of _sql.any_() / _sql.all_() in the context of a negation of boolean comparison, will now render NOT (expr) rather than reversing the equality operator to not equals, allowing finer-grained control of negations for these non-typical operators.

    References: #10817

typing

  • [typing] [bug] Fixed regressions caused by typing added to the sqlalchemy.sql.functions module in version 2.0.24, as part of #6810:

    -   Further enhancements to pep-484 typing to allow SQL functions from
        `_sql.func` derived elements to work more effectively with ORM-mapped
        attributes ([#10801](https://www.sqlalchemy.org/trac/ticket/10801))
    
    • Fixed the argument types passed to functions so that literal expressions

... (truncated)

Commits

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> 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> 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 all-dependencies group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [attrs](https://github.com/sponsors/hynek) | `23.1.0` | `23.2.0` |
| [bcrypt](https://github.com/pyca/bcrypt) | `4.0.1` | `4.1.2` |
| [kinto](https://github.com/Kinto/kinto) | `16.2.2` | `16.2.3` |
| [ujson](https://github.com/ultrajson/ultrajson) | `5.8.0` | `5.9.0` |
| [moto[s3,server]](https://github.com/getmoto/moto) | `4.2.10` | `4.2.13` |
| [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) | `1.4.46` | `2.0.25` |


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

Updates `bcrypt` from 4.0.1 to 4.1.2
- [Changelog](https://github.com/pyca/bcrypt/blob/main/release.py)
- [Commits](pyca/bcrypt@4.0.1...4.1.2)

Updates `kinto` from 16.2.2 to 16.2.3
- [Release notes](https://github.com/Kinto/kinto/releases)
- [Changelog](https://github.com/Kinto/kinto/blob/master/CHANGELOG.rst)
- [Commits](Kinto/kinto@16.2.2...16.2.3)

Updates `ujson` from 5.8.0 to 5.9.0
- [Release notes](https://github.com/ultrajson/ultrajson/releases)
- [Commits](ultrajson/ultrajson@5.8.0...5.9.0)

Updates `moto[s3,server]` from 4.2.10 to 4.2.13
- [Release notes](https://github.com/getmoto/moto/releases)
- [Changelog](https://github.com/getmoto/moto/blob/master/CHANGELOG.md)
- [Commits](getmoto/moto@4.2.10...4.2.13)

Updates `sqlalchemy` from 1.4.46 to 2.0.25
- [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)

---
updated-dependencies:
- dependency-name: attrs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: bcrypt
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: kinto
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: ujson
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: moto[s3,server]
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: sqlalchemy
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 8, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 15, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jan 15, 2024
@dependabot dependabot bot deleted the dependabot/pip/all-dependencies-99038bdcb1 branch January 15, 2024 19:30
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