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 all dependencies #9

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

Update all dependencies #9

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Aug 31, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
PyGithub ==1.55 -> ==1.59.1 age adoption passing confidence
altgraph (source) ==0.17.2 -> ==0.17.4 age adoption passing confidence
babelfish ==0.6.0 -> ==0.6.1 age adoption passing confidence
cffi (source, changelog) ==1.15.1 -> ==1.16.0 age adoption passing confidence
chardet ==5.0.0 -> ==5.2.0 age adoption passing confidence
cherrypy (source) ==18.8.0 -> ==18.10.0 age adoption passing confidence
configobj ==5.0.6 -> ==5.0.8 age adoption passing confidence
dmgbuild (source) ==1.5.2 -> ==1.6.1 age adoption passing confidence
ds-store (source) ==1.3.0 -> ==1.3.1 age adoption passing confidence
feedparser ==6.0.10 -> ==6.0.11 age adoption passing confidence
guessit ==3.4.3 -> ==3.8.0 age adoption passing confidence
jaraco.classes ==3.2.2 -> ==3.4.0 age adoption passing confidence
jaraco.collections ==3.5.2 -> ==3.11.0 age adoption passing confidence
jaraco.context ==4.1.2 -> ==4.3.0 age adoption passing confidence
jaraco.functools ==3.5.1 -> ==3.9.0 age adoption passing confidence
jaraco.text ==3.9.1 -> ==3.12.1 age adoption passing confidence
mac-alias (source) ==2.2.0 -> ==2.2.2 age adoption passing confidence
macholib ==1.16 -> ==1.16.3 age adoption passing confidence
orjson (changelog) ==3.8.0 -> ==3.10.5 age adoption passing confidence
pkginfo ==1.8.3 -> ==1.11.1 age adoption passing confidence
portend ==3.1.0 -> ==3.2.0 age adoption passing confidence
puremagic ==1.14 -> ==1.25 age adoption passing confidence
pycparser ==2.21 -> ==2.22 age adoption passing confidence
pyinstaller (source) ==5.3 -> ==5.13.2 age adoption passing confidence
pyinstaller-hooks-contrib ==2022.9 -> ==2022.15 age adoption passing confidence
pyobjc ==8.5 -> ==8.5.1 age adoption passing confidence
python-dateutil ==2.8.2 -> ==2.9.0.post0 age adoption passing confidence
pytz ==2022.2.1 -> ==2022.7.1 age adoption passing confidence
rebulk ==3.1.0 -> ==3.2.0 age adoption passing confidence
sabyenc3 ==5.4.3 -> ==5.4.4 age adoption passing confidence
setuptools (changelog) ==65.3.0 -> ==65.7.0 age adoption passing confidence
tempora ==5.0.2 -> ==5.6.0 age adoption passing confidence
ujson ==5.4.0 -> ==5.10.0 age adoption passing confidence
wrapt (changelog) ==1.14.1 -> ==1.16.0 age adoption passing confidence

Release Notes

pygithub/pygithub (PyGithub)

v1.59.1

Compare Source

Bug Fixes

v1.59.0

Compare Source

Important

This release introduces new way of authentication. All authentication-related arguments github.Github(login_or_token=…, password=…, jwt=…, app_auth=…) and github.GithubIntegration(integration_id=…, private_key=…, jwt_expiry=…, jwt_issued_at=…, jwt_algorithm=…) are replaced by a single auth=… argument. Module github.Auth provides classes for all supported ways of authentication: Login, Token, AppAuth, AppAuthToken, AppInstallationAuth, AppUserAuth. Old arguments are deprecated but continue to work. They are scheduled for removal for version 2.0 release.

This project has decided to move all typing information from .pyi files into the respective .py source files. This will happen gradually over time.

Breaking Changes

  • The position argument in github.PullRequest.create_review_comment(position=…) has been renamed to line.
    This breaks user code that calls create_review_comment with keyword argument position. Call with line=… instead.
    Calling this method with positional arguments is not breaking.
  • The jwt_expiry, jwt_issued_at and jwt_algorithm arguments in github.GithubIntegration() have changed their position.
    User code calling github.GithubIntegration(…) with these arguments as positional arguments breaks.
    Please use keyword arguments: github.GithubIntegration(…, jwt_expiry=…, jwt_issued_at=…, jwt_algorithm=…).
  • The since argument in github.PullRequest.get_review_comments(…) has changed position.User code callinggithub.PullRequest.get_review_comments(…)with this argument as positional argument breaks. Please use keyword argument:github.PullRequest.get_review_comments(since=…)`.

Deprecations

  • The use of github.Github(login_or_token=…) is deprecated, use github.Github(auth=github.Auth.Login(…)) or github.Github(auth=github.Auth.Token(…)) instead.
  • The use of github.Github(password=…) is deprecated, use github.Github(auth=github.Auth.Login(…)) instead.
  • The use of github.Github(jwt=…) is deprecated, use github.Github(auth=github.AppAuth(…)) or github.Github(auth=github.AppAuthToken(…)) instead.
  • The use of github.Github(app_auth=…) is deprecated, use github.Github(auth=github.Auth.AppInstallationAuth(…)) instead.
  • The use of github.GithubIntegration(integration_id=…, private_key=…, jwt_expiry=…, jwt_issued_at=…, jwt_algorithm=…) is deprecated, use github.GithubIntegration(auth=github.Auth.AppAuth(…)) instead.
  • The use of github.GithubIntegration.create_jwt is deprecated, use github.Github(auth=github.Auth.AppAuth), github.Auth.AppAuth.token or github.Auth.AppAuth.create_jwt(expiration) instead.
  • The use of AppAuthentication is deprecated, use github.Auth.AppInstallationAuth instead.
  • The use of github.Github.get_app() without providing argument slug is deprecated, use github.GithubIntegration(auth=github.Auth.AppAuth(…)).get_app().

Bug Fixes

Improvements

Maintenance

v1.58.2

Compare Source

Fixes

v1.58.1

Compare Source

Changes

Bug Fixes

v1.58.0

Compare Source

Bug Fixes & Improvements

v1.57

Compare Source

Breaking Changes

  • Add support for Python 3.11, drop support for Python 3.6 (#​2332) (1e2f10d)

Bug Fixes & Improvements

v1.56

Compare Source

Important

This is the last release that will support Python 3.6.

Bug Fixes & Improvements

ronaldoussoren/altgraph (altgraph)

v0.17.4

Compare Source

v0.17.3

Compare Source

Diaoul/babelfish (babelfish)

v0.6.1

Compare Source

release date: 2024-05-09

  • Bump dependencies
  • Replace pkg_resources with importlib
python-cffi/cffi (cffi)

v1.16.0

Compare Source

  • Add support for Python 3.12. With the removal of distutils from Python 3.12, projects
    using CFFI features that depend on distutils at runtime must add a dependency on
    setuptools to function under Python 3.12+. CFFI does not declare a runtime setuptools
    requirement to avoid an unnecessary dependency for projects that do not require it.
  • Drop support for end-of-life Python versions (2.7, 3.6, 3.7).
  • Add support for PEP517 builds; setuptools is now a required build dependency.
  • Declare python_requires metadata for Python 3.8+. This allows unsupported Pythons
    to continue using previously released sdists and wheels.
  • Move project source under src/; a more standard layout that also enables CI to more easily
    catch packaging errors.
chardet/chardet (chardet)

v5.2.0: chardet 5.2.0

Compare Source

Adds support for running chardet CLI via python -m chardet (0e9b7bc, @​dan-blanchard)

v5.1.0: chardet 5.1.0

Compare Source

Features
Fixes
Misc changes
cherrypy/cherrypy (cherrypy)

v18.10.0

Compare Source

  • Removed the use of :mod:cgi deprecated in Python 3.11
    -- by :user:radez.
  • Various changes <https://github.com/cherrypy/cherrypy/compare/v18.9.0...7104cfb3cfc6e6582f0773529142d777b1aff1bd>_.

v18.9.0

Compare Source

  • Various
    changes <https://github.com/cherrypy/cherrypy/compare/v18.8.0...v18.9.0>_.
DiffSK/configobj (configobj)

v5.0.8: confirming things work in newer python versions

Compare Source

5.0.7 originally did this work, but 5.0.8 fixes a regression (#​230)

v5.0.7

Compare Source

kurtmckee/feedparser (feedparser)

v6.0.11

Compare Source

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

  • Resolve cgi module deprecation warnings. (#​330)
jaraco/jaraco.classes (jaraco.classes)

v3.4.0

Compare Source

v3.3.1

Compare Source

v3.3.0

Compare Source

v3.2.3

Compare Source

jaraco/jaraco.collections (jaraco.collections)

v3.11.0

Compare Source

v3.10.0

Compare Source

v3.9.0

Compare Source

v3.8.0

Compare Source

v3.7.0

Compare Source

v3.6.0

Compare Source

jaraco/jaraco.context (jaraco.context)

v4.3.0

Compare Source

v4.2.1

Compare Source

v4.2.0

Compare Source

jaraco/jaraco.functools (jaraco.functools)

v3.9.0

Compare Source

v3.8.1

Compare Source

v3.8.0

Compare Source

v3.7.0

Compare Source

v3.6.0

Compare Source

v3.5.2

Compare Source

jaraco/jaraco.text (jaraco.text)

v3.12.1

Compare Source

v3.12.0

Compare Source

v3.11.1

Compare Source

v3.11.0

Compare Source

v3.10.0

Compare Source

ronaldoussoren/macholib (macholib)

v1.16.3

Compare Source

v1.16.2

Compare Source

ijl/orjson (orjson)

v3.10.5

Compare Source

Changed
  • Improve performance.

v3.10.4

Compare Source

Changed
  • Improve performance.

v3.10.3

Compare Source

Changed
  • manylinux amd64 builds include runtime-detected AVX-512 str
    implementation.
  • Tests now compatible with numpy v2.

v3.10.2

Compare Source

Fixed
  • Fix crash serializing str introduced in 3.10.1.
Changed
  • Improve performance.
  • Drop support for arm7.

v3.10.1

Compare Source

Fixed
  • Serializing numpy.ndarray with non-native endianness raises
    orjson.JSONEncodeError.
Changed
  • Improve performance of serializing.

v3.10.0

Compare Source

Changed
  • Support serializing numpy.float16 (numpy.half).
  • sdist uses metadata 2.3 instead of 2.1.
  • Improve Windows PyPI builds.

v3.9.15

Compare Source

Fixed
  • Implement recursion limit of 1024 on orjson.loads().
  • Use byte-exact read on str formatting SIMD path to avoid crash.

[v3.9.14](https://togithub.com/ijl/orjson/blob


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot enabled auto-merge (rebase) August 31, 2022 23:50
@renovate renovate bot changed the title Update dependency pyinstaller-hooks-contrib to v2022.10 Update all dependencies Sep 10, 2022
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from bd27f2c to 07d07ba Compare September 15, 2022 20:02
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from a0ae03e to 808e058 Compare September 24, 2022 21:59
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from e97ccfe to f11b0ae Compare October 2, 2022 06:05
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 39b40e7 to 0c2410d Compare October 14, 2022 14:57
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 6792ec3 to 17dca4f Compare October 24, 2022 23:46
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 769c425 to 8c469fb Compare October 27, 2022 17:28
@renovate renovate bot changed the title Update all dependencies Update all dependencies - autoclosed Apr 4, 2023
@renovate renovate bot closed this Apr 4, 2023
auto-merge was automatically disabled April 4, 2023 01:58

Pull request was closed

@renovate renovate bot deleted the renovate/all branch April 4, 2023 01:58
@renovate renovate bot changed the title Update all dependencies - autoclosed Update all dependencies Apr 4, 2023
@renovate renovate bot reopened this Apr 4, 2023
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 66ebea9 to 8d3470b Compare February 8, 2024 01:36
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from f6dd5b8 to 223566e Compare February 19, 2024 11:09
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 4eb7ad9 to 9491bec Compare March 1, 2024 04:00
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 0401a51 to 21c33dd Compare March 3, 2024 09:27
@renovate renovate bot enabled auto-merge (rebase) March 20, 2024 14:29
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 2500f71 to 8280bda Compare March 31, 2024 09:46
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 9ed16c8 to 24543a1 Compare May 2, 2024 23:53
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from c0086f9 to 180363d Compare May 9, 2024 22:08
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 9f07a36 to 2e761e4 Compare June 14, 2024 17:06
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from bd8d798 to 5909b41 Compare June 18, 2024 18:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
0 participants