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

Update minor dependencies #57

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

Update minor dependencies #57

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 1, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
black (changelog) ==24.4.2 -> ==24.10.0 age adoption passing confidence
cachetools ==5.3.3 -> ==5.5.0 age adoption passing confidence
charset-normalizer (changelog) ==3.3.2 -> ==3.4.1 age adoption passing confidence
filelock ==3.14.0 -> ==3.16.1 age adoption passing confidence
google-api-core ==2.19.0 -> ==2.24.0 age adoption passing confidence
google-api-python-client ==2.130.0 -> ==2.159.0 age adoption passing confidence
google-auth ==2.29.0 -> ==2.37.0 age adoption passing confidence
googleapis-common-protos ==1.63.0 -> ==1.66.0 age adoption passing confidence
identify ==2.5.36 -> ==2.6.5 age adoption passing confidence
idna (changelog) ==3.7 -> ==3.10 age adoption passing confidence
libcst (changelog) ==1.4.0 -> ==1.6.0 age adoption passing confidence
nodeenv ==1.8.0 -> ==1.9.1 age adoption passing confidence
packaging ==24.0 -> ==24.2 age adoption passing confidence
platformdirs (changelog) ==4.2.2 -> ==4.3.6 age adoption passing confidence
pre-commit ==3.7.1 -> ==3.8.0 age adoption passing confidence
proto-plus (source) ==1.23.0 -> ==1.25.0 age adoption passing confidence
pycln (source) ==2.4.0 -> ==2.5.0 age adoption passing confidence
pygments (changelog) ==2.18.0 -> ==2.19.1 age adoption passing confidence
pyparsing ==3.1.2 -> ==3.2.1 age adoption passing confidence
pytest (changelog) ==8.2.1 -> ==8.3.4 age adoption passing confidence
rich ==13.7.1 -> ==13.9.4 age adoption passing confidence
tomlkit ==0.12.5 -> ==0.13.2 age adoption passing confidence
tqdm (changelog) ==4.66.4 -> ==4.67.1 age adoption passing confidence
typer (changelog) ==0.12.3 -> ==0.15.1 age adoption passing confidence

Release Notes

psf/black (black)

v24.10.0

Compare Source

Highlights
  • Black is now officially tested with Python 3.13 and provides Python 3.13
    mypyc-compiled wheels. (#​4436) (#​4449)
  • Black will issue an error when used with Python 3.12.5, due to an upstream memory
    safety issue in Python 3.12.5 that can cause Black's AST safety checks to fail. Please
    use Python 3.12.6 or Python 3.12.4 instead. (#​4447)
  • Black no longer supports running with Python 3.8 (#​4452)
Stable style
  • Fix crashes involving comments in parenthesised return types or X | Y style unions.
    (#​4453)
  • Fix skipping Jupyter cells with unknown %% magic (#​4462)
Preview style
  • Fix type annotation spacing between * and more complex type variable tuple (i.e. def fn(*args: *tuple[*Ts, T]) -> None: pass) (#​4440)
Caching
  • Fix bug where the cache was shared between runs with and without --unstable (#​4466)
Packaging
  • Upgrade version of mypyc used to 1.12 beta (#​4450) (#​4449)
  • blackd now requires a newer version of aiohttp. (#​4451)
Output
  • Added Python target version information on parse error (#​4378)
  • Add information about Black version to internal error messages (#​4457)

v24.8.0

Compare Source

Stable style
  • Fix crash when # fmt: off is used before a closing parenthesis or bracket. (#​4363)
Packaging
  • Packaging metadata updated: docs are explictly linked, the issue tracker is now also
    linked. This improves the PyPI listing for Black. (#​4345)
Parser
  • Fix regression where Black failed to parse a multiline f-string containing another
    multiline string (#​4339)
  • Fix regression where Black failed to parse an escaped single quote inside an f-string
    (#​4401)
  • Fix bug with Black incorrectly parsing empty lines with a backslash (#​4343)
  • Fix bugs with Black's tokenizer not handling \{ inside f-strings very well (#​4422)
  • Fix incorrect line numbers in the tokenizer for certain tokens within f-strings
    (#​4423)
Performance
  • Improve performance when a large directory is listed in .gitignore (#​4415)
Blackd
  • Fix blackd (and all extras installs) for docker container (#​4357)
tkem/cachetools (cachetools)

v5.5.0

Compare Source

===================

  • TTLCache.expire() returns iterable of expired (key, value)
    pairs.

  • TLRUCache.expire() returns iterable of expired (key, value)
    pairs.

  • Documentation improvements.

  • Update CI environment.

v5.4.0

Compare Source

===================

  • Add the keys.typedmethodkey decorator.

  • Deprecate MRUCache class.

  • Deprecate @func.mru_cache decorator.

  • Update CI environment.

jawah/charset_normalizer (charset-normalizer)

v3.4.1

Compare Source

Changed
  • Project metadata are now stored using pyproject.toml instead of setup.cfg using setuptools as the build backend.
  • Enforce annotation delayed loading for a simpler and consistent types in the project.
  • Optional mypyc compilation upgraded to version 1.14 for Python >= 3.8
Added
  • pre-commit configuration.
  • noxfile.
Removed
  • build-requirements.txt as per using pyproject.toml native build configuration.
  • bin/integration.py and bin/serve.py in favor of downstream integration test (see noxfile).
  • setup.cfg in favor of pyproject.toml metadata configuration.
  • Unused utils.range_scan function.
Fixed
  • Converting content to Unicode bytes may insert utf_8 instead of preferred utf-8. (#​572)
  • Deprecation warning "'count' is passed as positional argument" when converting to Unicode bytes on Python 3.13+

v3.4.0

Compare Source

Added
  • Argument --no-preemptive in the CLI to prevent the detector to search for hints.
  • Support for Python 3.13 (#​512)
Fixed
  • Relax the TypeError exception thrown when trying to compare a CharsetMatch with anything else than a CharsetMatch.
  • Improved the general reliability of the detector based on user feedbacks. (#​520) (#​509) (#​498) (#​407) (#​537)
  • Declared charset in content (preemptive detection) not changed when converting to utf-8 bytes. (#​381)
tox-dev/py-filelock (filelock)

v3.16.1

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.16.0...3.16.1

v3.16.0

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.15.4...3.16.0

v3.15.4

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.15.3...3.15.4

v3.15.3

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.15.2...3.15.3

v3.15.2

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/filelock@3.15.1...3.15.2

v3.15.1

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.15.0...3.15.1

v3.15.0

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/filelock@3.14.0...3.15.0

googleapis/python-api-core (google-api-core)

v2.24.0

Compare Source

Features

v2.23.0

Compare Source

Features

v2.22.0

Compare Source

Features
Bug Fixes

v2.21.0

Compare Source

Features
  • Add support for asynchronous long running operations (#​724) (aaed69b)
Bug Fixes

v2.20.0

Compare Source

Features
  • Add async unsupported paramater exception (#​694) (8c137fe)
  • Add support for asynchronous rest streaming (#​686) (1b7bb6d)
  • Add support for creating exceptions from an asynchronous response (#​688) (1c4b0d0)

v2.19.2

Compare Source

Bug Fixes
  • Fail gracefully if could not import rpc_status module (#​680) (7ccbf57)

v2.19.1

Compare Source

Bug Fixes
googleapis/google-api-python-client (google-api-python-client)

v2.159.0

Compare Source

Features
Bug Fixes

v2.158.0

Compare Source

Features

v2.157.0

Compare Source

Features
Bug Fixes

v2.156.0

Compare Source

Features

Configuration

📅 Schedule: Branch creation - "after 8pm every weekday,before 8am every weekday,every weekend" in timezone America/Chicago, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the renovate label Jun 1, 2024
@renovate renovate bot force-pushed the renovate/all-minor branch 4 times, most recently from fd8429d to 0851d7f Compare June 10, 2024 01:08
@renovate renovate bot force-pushed the renovate/all-minor branch 3 times, most recently from 3e17fee to 6891fc0 Compare June 16, 2024 01:48
@renovate renovate bot force-pushed the renovate/all-minor branch 3 times, most recently from e769991 to 8a069b2 Compare June 25, 2024 17:02
@renovate renovate bot force-pushed the renovate/all-minor branch 3 times, most recently from 8f9be4a to f5d5cda Compare July 5, 2024 20:20
@renovate renovate bot force-pushed the renovate/all-minor branch 4 times, most recently from 7323af3 to be3f997 Compare July 13, 2024 11:05
@renovate renovate bot force-pushed the renovate/all-minor branch 2 times, most recently from a95726b to e1f62a8 Compare July 23, 2024 16:37
@renovate renovate bot force-pushed the renovate/all-minor branch 4 times, most recently from ffb8c9b to bf8160c Compare August 2, 2024 16:26
@renovate renovate bot force-pushed the renovate/all-minor branch 3 times, most recently from 09afaa3 to 0f38605 Compare August 10, 2024 03:11
@renovate renovate bot force-pushed the renovate/all-minor branch 3 times, most recently from bc3bfe4 to 4bd4eb3 Compare August 17, 2024 19:46
@renovate renovate bot force-pushed the renovate/all-minor branch 6 times, most recently from 9397799 to 1e1ed3b Compare November 16, 2024 18:08
@renovate renovate bot force-pushed the renovate/all-minor branch 3 times, most recently from 2acb333 to 34bc9a7 Compare November 27, 2024 22:40
@renovate renovate bot force-pushed the renovate/all-minor branch 4 times, most recently from 2de2e42 to 759a87d Compare December 4, 2024 14:17
@renovate renovate bot force-pushed the renovate/all-minor branch 3 times, most recently from 7fb9888 to 17c09e3 Compare December 12, 2024 22:29
@renovate renovate bot force-pushed the renovate/all-minor branch 2 times, most recently from 1203bfa to 6419d93 Compare December 21, 2024 20:06
@renovate renovate bot force-pushed the renovate/all-minor branch 2 times, most recently from 84d5477 to 0e1aaa5 Compare January 2, 2025 01:04
@renovate renovate bot force-pushed the renovate/all-minor branch 6 times, most recently from a908573 to 3200d55 Compare January 9, 2025 22:11
@renovate renovate bot force-pushed the renovate/all-minor branch 2 times, most recently from 3479c6a to 7495227 Compare January 13, 2025 14:04
@renovate renovate bot force-pushed the renovate/all-minor branch from 7495227 to 2d2a9ee Compare January 19, 2025 08:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants