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 group across 1 directory with 11 updates #73

Open
wants to merge 1 commit into
base: voltti
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Mar 3, 2025

Bumps the pip group with 11 updates in the / directory:

Package From To
boto3 1.35.90 1.37.5
mock 5.1.0 5.2.0
awslambdaric 3.0.0 3.0.2
botocore 1.35.90 1.37.5
certifi 2024.12.14 2025.1.31
datadog 0.50.2 0.51.0
decorator 5.1.1 5.2.1
pytz 2024.2 2025.1
s3transfer 0.10.4 0.11.3
setuptools 75.6.0 75.8.2
simplejson 3.19.3 3.20.1

Updates boto3 from 1.35.90 to 1.37.5

Commits
  • 8e93dcd Merge branch 'release-1.37.5'
  • c01ff04 Bumping version to 1.37.5
  • 6a757b5 Add changelog entries from botocore
  • 0c61b96 Merge branch 'release-1.37.4'
  • 7a87a52 Merge branch 'release-1.37.4' into develop
  • b474be9 Bumping version to 1.37.4
  • de332a9 Add changelog entries from botocore
  • b0cfdee Merge branch 'release-1.37.3'
  • 63a9bb2 Merge branch 'release-1.37.3' into develop
  • fd96968 Bumping version to 1.37.3
  • Additional commits viewable in compare view

Updates mock from 5.1.0 to 5.2.0

Changelog

Sourced from mock's changelog.

5.2.0

This is release is in memory of Michael Foord__, who originally authored the mock package and passed away in January 2025.

__ https://discuss.python.org/t/in-memoriam-michael-foord-1974-2025/78317

  • gh-65454: :func:unittest.mock.Mock.attach_mock no longer triggers a call to a PropertyMock being attached.

  • gh-117765: Improved documentation for :func:unittest.mock.patch.dict

  • gh-124176: Add support for :func:dataclasses.dataclass in :func:unittest.mock.create_autospec. Now create_autospec will check for potential dataclasses and use :func:dataclasses.fields function to retrieve the spec information.

  • gh-123934: Fix :class:unittest.mock.MagicMock reseting magic methods return values after .reset_mock(return_value=True) was called.

  • gh-90848: Fixed :func:unittest.mock.create_autospec to configure parent mock with keyword arguments.

  • gh-113569: Indicate if there were no actual calls in unittest :meth:~unittest.mock.Mock.assert_has_calls failure.

  • gh-122858: Deprecate :func:!asyncio.iscoroutinefunction in favor of :func:inspect.iscoroutinefunction.

  • gh-104745: Limit starting a patcher (from :func:unittest.mock.patch or :func:unittest.mock.patch.object) more than once without stopping it

  • gh-75988: Fixed :func:unittest.mock.create_autospec to pass the call through to the wrapped object to return the real result.

  • gh-119600: Fix :func:unittest.mock.patch to not read attributes of the target when new_callable is set. Patch by Robert Collins.

  • gh-113407: Fix import of :mod:unittest.mock when CPython is built without docstrings.

  • gh-120732: Fix name passing to :class:unittest.mock.Mock object when using :func:unittest.mock.create_autospec.

Commits

Updates awslambdaric from 3.0.0 to 3.0.2

Release notes

Sourced from awslambdaric's releases.

AWS Lambda Runtime Interface Client for Python v3.0.2

What's Changed

Full Changelog: aws/aws-lambda-python-runtime-interface-client@3.0.1...3.0.2

AWS Lambda Runtime Interface Client for Python v3.0.1

What's Changed

New Contributors

Full Changelog: aws/aws-lambda-python-runtime-interface-client@3.0.0...3.0.1

Changelog

Sourced from awslambdaric's changelog.

February 27, 2024

3.0.2

  • Update simplejson to 3.20.1(#184)

January 27, 2024

3.0.1

  • Don't enforce text format on uncaught exception warning message (#182)

November 19, 2024

3.0.0

  • Drop support for deprecated python versions (#179)
  • Add support for snapstart runtime hooks (#176)

August 23, 2024

2.2.1:

  • Patch libcurl configure.ac to work with later versions of autoconf (#166)

August 8, 2024

2.2.0:

  • Propogate error type in header when reporting init error to RAPID (#166)

July 31, 2024

2.1.0:

  • Raise all init errors in init instead of suppressing them until the first invoke (#163)

June 19, 2024

2.0.12:

  • Relax simplejson dependency and keep it backwards compatible (#153)

March 27, 2024

2.0.11:

  • Upgrade simplejson to 3.18.4 (#136)

February 13, 2024

2.0.10:

  • Update format of unhandled exception warning message. (#132)

February 01, 2024

2.0.9:

... (truncated)

Commits

Updates botocore from 1.35.90 to 1.37.5

Commits
  • 14a7e38 Merge branch 'release-1.37.5'
  • 5d650ef Bumping version to 1.37.5
  • dbc7f2b Update endpoints model
  • 94ce27a Update to latest models
  • fdb54b5 Merge pull request #3405 from kdaily/disable-host-prefix-injection-config-getter
  • 6307b42 Merge pull request #3412 from boto/dependabot/github_actions/codecov/codecov-...
  • 78f24e0 Bump codecov/codecov-action from 5.3.1 to 5.4.0
  • 923a20f Merge branch 'release-1.37.4'
  • c4e3aa0 Merge branch 'release-1.37.4' into develop
  • f102e55 Bumping version to 1.37.4
  • Additional commits viewable in compare view

Updates certifi from 2024.12.14 to 2025.1.31

Commits

Updates datadog from 0.50.2 to 0.51.0

Release notes

Sourced from datadog's releases.

v0.51.0

  • [Added] Add hosts endpoint. See #884.
  • [Added] Lazy load packages in compat for faster import. See #881.
  • [Added] Provide urllib3 implementation of HTTPClient. See #879.
Changelog

Sourced from datadog's changelog.

v0.51.0 / 2025-01-27

  • [Added] Add hosts endpoint. See #884.
  • [Added] Lazy load packages in compat for faster import. See #881.
  • [Added] Provide urllib3 implementation of HTTPClient. See #879.
Commits

Updates decorator from 5.1.1 to 5.2.1

Changelog

Sourced from decorator's changelog.

5.2.1 (2025-02-24)

Shiv Krishna Jaiswal suggested how to manage che case of functions without name. Michał Górny contributed a fix for the generation of the source package.

5.2.0 (2025-02-22)

Changed the build procedure to use pyproject.toml and moved the tests outside of the generated wheel/tarball.

Added official support for Python 3.11, 3.12, 3.13 (thanks to Hugo van Kemenade).

Dropped official support for Python < 3.8: the module is expected to work on older Python versions, but I cannot test such versions on GitHub actions, so I cannot claim that it is officially supported.

Dafu Wu provided support for decorating partial functions, i.e. functions wrapped by functools.partial.

Commits

Updates pytz from 2024.2 to 2025.1

Commits

Updates s3transfer from 0.10.4 to 0.11.3

Changelog

Sourced from s3transfer's changelog.

0.11.3

  • bugfix:awscrt: Fix urlencoding issues for request signing with the awscrt.

0.11.2

  • bugfix:upload: Only set a default checksum if the request_checksum_calculation config is set to when_supported. Fixes boto/s3transfer#327 <https://github.com/boto/s3transfer/issues/327>__.

0.11.1

  • bugfix:Dependencies: Update the floor version of botocore to 1.36.0 to match imports.

0.11.0

  • feature:manager: Use CRC32 by default and support user provided full-object checksums.
Commits
  • df93d5f Merge branch 'release-0.11.3'
  • 807f81c Bumping version to 0.11.3
  • 1cf8b4d Merge pull request #336 from TingDaoK/fix-signing-config
  • 01c1b56 Add changelog
  • 3880d03 add test and lint
  • 37a7f3b fix the signing config
  • 9b1b8e1 Ignore .venv directories (#334)
  • 9a71d52 Output max CPU utilization on summarize-benchmark script JSON output format
  • e2310f6 Merge branch 'release-0.11.2'
  • 136b3c2 Merge branch 'release-0.11.2' into develop
  • Additional commits viewable in compare view

Updates setuptools from 75.6.0 to 75.8.2

Changelog

Sourced from setuptools's changelog.

v75.8.2

Bugfixes

  • Fixed pkg_resources.require(...) to also consider standardised dist-info directories. (#4856)

v75.8.1

Bugfixes

  • Fix wheel file naming to follow binary distribution specification -- by :user:di (#4766)
  • Fixed crash generating error message printed when building wheels for the free-threaded build using the limited API. -- by :user:ngoldbaum (#4809)
  • Fix documentation for recent CFLAGS distutils change. -- by :user:thesamesam (#4836)

v75.8.0

Features

  • Implemented Dynamic field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (#4698)

v75.7.0

Features

Commits
  • 9aa3771 Bump version: 75.8.1 → 75.8.2
  • c0f39c0 Update WorkingSet.find to consider standardised .dist-info directory names (#...
  • edca181 Add news fragment
  • 22355fc Also consider '-' separator in tests
  • 8280e2c Attempt to solve path normalisation issue in windows tests
  • a3718c8 Slightly change test, so that we are sure about the correct distribution bein...
  • 23b73aa Fix mypy errors
  • 2c24223 Update WorkingSet.find to consider standardised dist-info names
  • 79d6e46 Add regression test for issue 4853
  • 56c055b Bump version: 75.8.0 → 75.8.1
  • Additional commits viewable in compare view

Updates simplejson from 3.19.3 to 3.20.1

Release notes

Sourced from simplejson's releases.

v3.20.1

Version 3.20.1 released 2025-02-14

Full Changelog: simplejson/simplejson@v3.19.3...v3.20.1

v3.20.0

Version 3.20.0 released 2025-02-14

Full Changelog: simplejson/simplejson@v3.19.3...v3.20.0

Changelog

Sourced from simplejson's changelog.

Version 3.20.1 released 2025-02-14

Version 3.19.3 released 2024-08-14

  • Updated test & build matrix to include Python 3.13. Dropped wheel support for Python 2.7 on macOS. simplejson/simplejson#326

Version 3.19.2 released 2023-10-05

  • Updated test & build matrix to include Python 3.12 and use GitHub Actions as a Trusted Publisher (OIDC) simplejson/simplejson#317

Version 3.19.1 released 2023-04-06

  • This release contains security hardening measures based on recommendations by a security audit sponsored by OSTIF and conducted by X41 D-Sec GmbH. Several of these measures include changing defaults to be more strict, by default simplejson will now only consume and produce compliant JSON, but the flags still exist for any backwards compatibility needs. No high priority issues were discovered, the reference count leak is thought to be unreachable since the digits of the float are checked before PyOS_string_to_double is called. A link to the public version of this report will be included in a future release of simplejson. The following fixes were implemented in one PR: simplejson/simplejson#313
  • Fix invalid handling of unicode escape sequences in the pure Python implementation of the decoder (SJ-PT-23-01)
  • Fix missing reference count decrease if PyOS_string_to_double raises an exception in Python 2.x; was probably unreachable (SJ-PT-23-02)
  • Backport the integer string length limitation from Python 3.11 to limit quadratic number parsing (SJ-PT-23-03)
  • Fix inconsistencies with error messages between the C and Python implementations (SJ-PT-23-100)
  • Remove unused unichr import from encoder (SJ-PT-23-101)
  • Remove unused namedtuple_as_object and tuple_as_array arguments from simplejson.load (SJ-PT-23-102)
  • Remove vestigial _one_shot code from iterencode (SJ-PT-23-103)
  • Change default of allow_nan from True to False and add allow_nan to decoder (SJ-PT-23-107)

Version 3.18.4 released 2023-03-14

... (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 pip group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [boto3](https://github.com/boto/boto3) | `1.35.90` | `1.37.5` |
| [mock](https://github.com/testing-cabal/mock) | `5.1.0` | `5.2.0` |
| [awslambdaric](https://github.com/aws/aws-lambda-python-runtime-interface-client) | `3.0.0` | `3.0.2` |
| [botocore](https://github.com/boto/botocore) | `1.35.90` | `1.37.5` |
| [certifi](https://github.com/certifi/python-certifi) | `2024.12.14` | `2025.1.31` |
| [datadog](https://github.com/DataDog/datadogpy) | `0.50.2` | `0.51.0` |
| [decorator](https://github.com/micheles/decorator) | `5.1.1` | `5.2.1` |
| [pytz](https://github.com/stub42/pytz) | `2024.2` | `2025.1` |
| [s3transfer](https://github.com/boto/s3transfer) | `0.10.4` | `0.11.3` |
| [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.2` |
| [simplejson](https://github.com/simplejson/simplejson) | `3.19.3` | `3.20.1` |



Updates `boto3` from 1.35.90 to 1.37.5
- [Release notes](https://github.com/boto/boto3/releases)
- [Commits](boto/boto3@1.35.90...1.37.5)

Updates `mock` from 5.1.0 to 5.2.0
- [Changelog](https://github.com/testing-cabal/mock/blob/master/CHANGELOG.rst)
- [Commits](testing-cabal/mock@5.1.0...5.2.0)

Updates `awslambdaric` from 3.0.0 to 3.0.2
- [Release notes](https://github.com/aws/aws-lambda-python-runtime-interface-client/releases)
- [Changelog](https://github.com/aws/aws-lambda-python-runtime-interface-client/blob/main/RELEASE.CHANGELOG.md)
- [Commits](aws/aws-lambda-python-runtime-interface-client@3.0.0...3.0.2)

Updates `botocore` from 1.35.90 to 1.37.5
- [Commits](boto/botocore@1.35.90...1.37.5)

Updates `certifi` from 2024.12.14 to 2025.1.31
- [Commits](certifi/python-certifi@2024.12.14...2025.01.31)

Updates `datadog` from 0.50.2 to 0.51.0
- [Release notes](https://github.com/DataDog/datadogpy/releases)
- [Changelog](https://github.com/DataDog/datadogpy/blob/master/CHANGELOG.md)
- [Commits](DataDog/datadogpy@v0.50.2...v0.51.0)

Updates `decorator` from 5.1.1 to 5.2.1
- [Release notes](https://github.com/micheles/decorator/releases)
- [Changelog](https://github.com/micheles/decorator/blob/5.2.1/CHANGES.md)
- [Commits](micheles/decorator@5.1.1...5.2.1)

Updates `pytz` from 2024.2 to 2025.1
- [Release notes](https://github.com/stub42/pytz/releases)
- [Commits](stub42/pytz@release_2024.2...release_2025.1)

Updates `s3transfer` from 0.10.4 to 0.11.3
- [Changelog](https://github.com/boto/s3transfer/blob/develop/CHANGELOG.rst)
- [Commits](boto/s3transfer@0.10.4...0.11.3)

Updates `setuptools` from 75.6.0 to 75.8.2
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v75.6.0...v75.8.2)

Updates `simplejson` from 3.19.3 to 3.20.1
- [Release notes](https://github.com/simplejson/simplejson/releases)
- [Changelog](https://github.com/simplejson/simplejson/blob/master/CHANGES.txt)
- [Commits](simplejson/simplejson@v3.19.3...v3.20.1)

---
updated-dependencies:
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: mock
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: awslambdaric
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: botocore
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: certifi
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: datadog
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: decorator
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: pytz
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: s3transfer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: setuptools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: simplejson
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested review from a team as code owners March 3, 2025 21:20
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Mar 3, 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