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 pypi group across 1 directory with 5 updates #417

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 14, 2024

Bumps the pypi group with 5 updates in the / directory:

Package From To
internetarchive 3.6.0 4.1.0
jsonpickle 3.0.2 3.2.2
jsonschema 4.21.1 4.23.0
requests[security] 2.31.0 2.32.3
pytest 8.0.1 8.2.2

Updates internetarchive from 3.6.0 to 4.1.0

Release notes

Sourced from internetarchive's releases.

Version 4.1.0

What's Changed

Full Changelog: jjjake/internetarchive@v4.0.1...v4.1.0

Version 4.0.1

Features and Improvements

  • Partially downloaded files will now automatically resume where they left off when retried.
  • Use Last-Modified header to set all mtimes (this includes files.xml now).

Version 3.7.0

Features and Improvements

  • Added support for JSON Patch test operations, via the expect parameter.
  • Added support for moving values via --append-list (Now, rather than ignoring any requests where the value is already present, --append-list will move the value to the end of the list).
  • Switched to importlib-metadata to drop deprecated pkg_resources.

Bugfixes

  • Fixed automatic size hint on uploads.
  • Fixed bug where auth wasn't being sent for searches with user_aggs params.
Changelog

Sourced from internetarchive's changelog.

4.1.0 (2024-05-07) ++++++++++++++++++

Bugfixes

  • Use mtime from files.xml if no Last-Modified header is available (e.g. VTT files).

4.0.1 (2024-04-15) ++++++++++++++++++

Features and Improvements

  • Partially downloaded files will now automatically resume where they left off when retried.
  • Use Last-Modified header to set all mtimes (this includes files.xml now).

3.7.0 (2024-03-19) ++++++++++++++++++

Features and Improvements

  • Added support for JSON Patch test operations, via the expect parameter.
  • Added support for moving values via --append-list (Now, rather than ignoring any requests where the value is already present, --append-list will move the value to the end of the list).
  • Switched to importlib-metadata to drop deprecated pkg_resources.

Bugfixes

  • Fixed automatic size hint on uploads.
  • Fixed bug where auth wasn't being sent for searches with user_aggs params.
Commits

Updates jsonpickle from 3.0.2 to 3.2.2

Changelog

Sourced from jsonpickle's changelog.

v3.2.2

* A bug with the incorrect (de)serialization of NoneType objects has been fixed.
  (+507)
* ``tests/benchmark.py`` was updated to avoid Python 2 syntax. (+508)
* The unpickler was updated to avoid creating temporary functions. (+508)
* Some basic scripts have been made to analyze benchmark results. (+511)
* Fix test suite compatibility with Numpy 2.x (+512)
* `setup.cfg` was updated to use `license_files` instead of `license_file`.

v3.2.1

* The ``ignorereserved`` parameter to the private ``_restore_from_dict()``
  function has been restored for backwards compatibility. (+501)

v3.2.0

* Nested dictionaries in `py/state` are now correctly restored when
  tracking object references. (+501) ([#500](https://github.com/jsonpickle/jsonpickle/issues/500))

v3.1.0

* `jsonpickle.ext.numpy.register_handlers` now provides options that are forwarded
  to the `NumpyNDArrayHandler` constructor. (+489)
* Fix bug of not handling ``classes`` argument to `jsonpickle.decode`
  being a dict. Previously, the keys were ignored and only values were
  used. (+494)
* Allow the ``classes`` argument to `jsonpickle.pickle` to have class
  objects as keys. This extends the current functionality of only having
  class name strings as keys. (+494)
* The ``garden setup/dev`` action and ``requirements-dev.txt`` requirements file
  now include test dependencies for use during development.
* Added support for Python 3.13. (+505) ([#504](https://github.com/jsonpickle/jsonpickle/issues/504))

v3.0.4

* Fixed an issue with django.SafeString and other classes inheriting from
  str having read-only attribute errors ([#478](https://github.com/jsonpickle/jsonpickle/issues/478)) (+481)
* The test suite was made compatible with `pytest-ruff>=0.3.0`. (+482)
* A `garden.yaml` file was added for use with the
  `garden <https://crates.io/crates/garden-tools>_` command runner. (+486)
* The test suite was updated to avoid deprecated SQLALchemy APIs.
* The `jaraco.packaging.sphinx` documentation dependency was removed.

v3.0.3

* Compatibilty with Pandas and Cython 3.0 was added. ([#460](https://github.com/jsonpickle/jsonpickle/issues/460)) (+477)
* Fixed a bug where pickling some built-in classes (e.g. zoneinfo) 
  could return a ``None`` module. ([#447](https://github.com/jsonpickle/jsonpickle/issues/447))
* Fixed a bug where unpickling a missing class would return a different object

... (truncated)

Commits
  • 66a812f jsonpickle v3.2.2
  • 748f676 setup.cfg: use license_files instead of the deprecated license_file field
  • 1f61736 Add basic benchmarking scripts (#511)
  • 6d3c893 Merge branch 'davvid/perf'
  • f6ecd04 Merge pull request #508 from davvid/perf
  • 58eb6df Fix test suite compatibility with Numpy 2
  • f2be82b Merge pull request #512 from mgorny/numpy2
  • 8bc2bdd Fix newbyteorder() use for NumPy 2.x
  • 0ab3cf0 Fix data types in tests for NumPy 2
  • 2178ba0 Merge branch 'main' into perf
  • Additional commits viewable in compare view

Updates jsonschema from 4.21.1 to 4.23.0

Release notes

Sourced from jsonschema's releases.

v4.23.0

What's Changed

New Contributors

Full Changelog: python-jsonschema/jsonschema@v4.22.0...v4.23.0

v4.22.0

What's Changed

  • Improve best_match (and thereby error messages from jsonschema.validate) in cases where there are multiple sibling errors from applying anyOf / allOf -- i.e. when multiple elements of a JSON array have errors, we now do prefer showing errors from earlier elements rather than simply showing an error for the full array (#1250).
  • (Micro-)optimize equality checks when comparing for JSON Schema equality by first checking for object identity, as == would.

New Contributors

Full Changelog: python-jsonschema/jsonschema@v4.21.1...v4.22.0

Changelog

Sourced from jsonschema's changelog.

v4.23.0

  • Do not reorder dictionaries (schemas, instances) that are printed as part of validation errors.
  • Declare support for Py3.13

v4.22.0

  • Improve best_match (and thereby error messages from jsonschema.validate) in cases where there are multiple sibling errors from applying anyOf / allOf -- i.e. when multiple elements of a JSON array have errors, we now do prefer showing errors from earlier elements rather than simply showing an error for the full array (#1250).
  • (Micro-)optimize equality checks when comparing for JSON Schema equality by first checking for object identity, as == would.
Commits
  • cfe8a40 Document the other change, and call this 4.23.0.
  • 25127a1 Merge pull request #1282 from rominf/rominf-python3.13
  • 40410c4 Declare support for 3.13
  • 3a44b4b Merge pull request #1276 from python-jsonschema/pre-commit-ci-update-config
  • 6a00e35 [pre-commit.ci] pre-commit autoupdate
  • 84fee43 Merge pull request #1273 from python-jsonschema/pre-commit-ci-update-config
  • a90d6e2 [pre-commit.ci] pre-commit autoupdate
  • c3a8641 Merge pull request #1272 from python-jsonschema/pre-commit-ci-update-config
  • deb5398 [pre-commit.ci] pre-commit autoupdate
  • 7fd28c3 Update the (ancient draft3) color format for newer webcolors.
  • Additional commits viewable in compare view

Updates requests[security] from 2.31.0 to 2.32.3

Release notes

Sourced from requests[security]'s releases.

v2.32.3

2.32.3 (2024-05-29)

Bugfixes

  • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of HTTPAdapter. (#6716)
  • Fixed issue where Requests started failing to run on Python versions compiled without the ssl module. (#6724)

v2.32.2

2.32.2 (2024-05-21)

Deprecations

  • To provide a more stable migration for custom HTTPAdapters impacted by the CVE changes in 2.32.0, we've renamed _get_connection to a new public API, get_connection_with_tls_context. Existing custom HTTPAdapters will need to migrate their code to use this new API. get_connection is considered deprecated in all versions of Requests>=2.32.0.

    A minimal (2-line) example has been provided in the linked PR to ease migration, but we strongly urge users to evaluate if their custom adapter is subject to the same issue described in CVE-2024-35195. (#6710)

v2.32.1

2.32.1 (2024-05-20)

Bugfixes

  • Add missing test certs to the sdist distributed on PyPI.

v2.32.0

2.32.0 (2024-05-20)

🐍 PYCON US 2024 EDITION 🐍

Security

  • Fixed an issue where setting verify=False on the first request from a Session will cause subsequent requests to the same origin to also ignore cert verification, regardless of the value of verify. (GHSA-9wx4-h78v-vm56)

Improvements

  • verify=True now reuses a global SSLContext which should improve request time variance between first and subsequent requests. It should also minimize certificate load time on Windows systems when using a Python version built with OpenSSL 3.x. (#6667)
  • Requests now supports optional use of character detection (chardet or charset_normalizer) when repackaged or vendored.

... (truncated)

Changelog

Sourced from requests[security]'s changelog.

2.32.3 (2024-05-29)

Bugfixes

  • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of HTTPAdapter. (#6716)
  • Fixed issue where Requests started failing to run on Python versions compiled without the ssl module. (#6724)

2.32.2 (2024-05-21)

Deprecations

  • To provide a more stable migration for custom HTTPAdapters impacted by the CVE changes in 2.32.0, we've renamed _get_connection to a new public API, get_connection_with_tls_context. Existing custom HTTPAdapters will need to migrate their code to use this new API. get_connection is considered deprecated in all versions of Requests>=2.32.0.

    A minimal (2-line) example has been provided in the linked PR to ease migration, but we strongly urge users to evaluate if their custom adapter is subject to the same issue described in CVE-2024-35195. (#6710)

2.32.1 (2024-05-20)

Bugfixes

  • Add missing test certs to the sdist distributed on PyPI.

2.32.0 (2024-05-20)

Security

  • Fixed an issue where setting verify=False on the first request from a Session will cause subsequent requests to the same origin to also ignore cert verification, regardless of the value of verify. (GHSA-9wx4-h78v-vm56)

Improvements

  • verify=True now reuses a global SSLContext which should improve request time variance between first and subsequent requests. It should also minimize certificate load time on Windows systems when using a Python version built with OpenSSL 3.x. (#6667)
  • Requests now supports optional use of character detection (chardet or charset_normalizer) when repackaged or vendored. This enables pip and other projects to minimize their vendoring surface area. The Response.text() and apparent_encoding APIs will default to utf-8 if neither library is present. (#6702)

... (truncated)

Commits
  • 0e322af v2.32.3
  • e188799 Don't create default SSLContext if ssl module isn't present (#6724)
  • 145b539 Merge pull request #6716 from sigmavirus24/bug/6715
  • b1d73dd Don't use default SSLContext with custom poolmanager kwargs
  • 6badbac Update HISTORY.md
  • a62a2d3 Allow for overriding of specific pool key params
  • 88dce9d v2.32.2
  • c98e4d1 Merge pull request #6710 from nateprewitt/api_rename
  • 92075b3 Add deprecation warning
  • aa1461b Move _get_connection to get_connection_with_tls_context
  • Additional commits viewable in compare view

Updates pytest from 8.0.1 to 8.2.2

Release notes

Sourced from pytest's releases.

8.2.2

pytest 8.2.2 (2024-06-04)

Bug Fixes

  • #12355: Fix possible catastrophic performance slowdown on a certain parametrization pattern involving many higher-scoped parameters.
  • #12367: Fix a regression in pytest 8.2.0 where unittest class instances (a fresh one is created for each test) were not released promptly on test teardown but only on session teardown.
  • #12381: Fix possible "Directory not empty" crashes arising from concurent cache dir (.pytest_cache) creation. Regressed in pytest 8.2.0.

Improved Documentation

  • #12290: Updated Sphinx theme to use Furo instead of Flask, enabling Dark mode theme.
  • #12356: Added a subsection to the documentation for debugging flaky tests to mention lack of thread safety in pytest as a possible source of flakyness.
  • #12363: The documentation webpages now links to a canonical version to reduce outdated documentation in search engine results.

8.2.1

pytest 8.2.1 (2024-05-19)

Improvements

  • #12334: Support for Python 3.13 (beta1 at the time of writing).

Bug Fixes

  • #12120: Fix [PermissionError]{.title-ref} crashes arising from directories which are not selected on the command-line.
  • #12191: Keyboard interrupts and system exits are now properly handled during the test collection.
  • #12300: Fixed handling of 'Function not implemented' error under squashfuse_ll, which is a different way to say that the mountpoint is read-only.
  • #12308: Fix a regression in pytest 8.2.0 where the permissions of automatically-created .pytest_cache directories became rwx------ instead of the expected rwxr-xr-x.

Trivial/Internal Changes

  • #12333: pytest releases are now attested using the recent Artifact Attestation support from GitHub, allowing users to verify the provenance of pytest's sdist and wheel artifacts.

8.2.0

pytest 8.2.0 (2024-04-27)

Deprecations

  • #12069: A deprecation warning is now raised when implementations of one of the following hooks request a deprecated py.path.local parameter instead of the pathlib.Path parameter which replaced it:

... (truncated)

Commits
  • 329d371 Prepare release version 8.2.2
  • 214d098 Merge pull request #12414 from bluetech/backport-12409
  • 153a436 [8.2.x] fixtures: fix catastrophic performance problem in reorder_items
  • b41d5a5 Merge pull request #12412 from pytest-dev/backport-12408-to-8.2.x
  • 9bb73d7 [8.2.x] cacheprovider: fix "Directory not empty" crash from cache directory c...
  • 4569a01 [8.2.x] doc: Update trainings/events (#12402)
  • 1d103e5 [8.2.x] Clarify pytest_ignore_collect docs (#12386)
  • 240a252 [8.2.x] Add html_baseurl to sphinx conf.py (#12372)
  • a5ee3c4 Merge pull request #12370 from pytest-dev/backport-12368-to-8.2.x
  • f7358ae [8.2.x] unittest: fix class instances no longer released on test teardown sin...
  • 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> 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 pypi group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [internetarchive](https://github.com/jjjake/internetarchive) | `3.6.0` | `4.1.0` |
| [jsonpickle](https://github.com/jsonpickle/jsonpickle) | `3.0.2` | `3.2.2` |
| [jsonschema](https://github.com/python-jsonschema/jsonschema) | `4.21.1` | `4.23.0` |
| [requests[security]](https://github.com/psf/requests) | `2.31.0` | `2.32.3` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.0.1` | `8.2.2` |



Updates `internetarchive` from 3.6.0 to 4.1.0
- [Release notes](https://github.com/jjjake/internetarchive/releases)
- [Changelog](https://github.com/jjjake/internetarchive/blob/master/HISTORY.rst)
- [Commits](jjjake/internetarchive@v3.6.0...v4.1.0)

Updates `jsonpickle` from 3.0.2 to 3.2.2
- [Changelog](https://github.com/jsonpickle/jsonpickle/blob/main/CHANGES.rst)
- [Commits](jsonpickle/jsonpickle@v3.0.2...v3.2.2)

Updates `jsonschema` from 4.21.1 to 4.23.0
- [Release notes](https://github.com/python-jsonschema/jsonschema/releases)
- [Changelog](https://github.com/python-jsonschema/jsonschema/blob/main/CHANGELOG.rst)
- [Commits](python-jsonschema/jsonschema@v4.21.1...v4.23.0)

Updates `requests[security]` from 2.31.0 to 2.32.3
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v2.31.0...v2.32.3)

Updates `pytest` from 8.0.1 to 8.2.2
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.0.1...8.2.2)

---
updated-dependencies:
- dependency-name: internetarchive
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pypi
- dependency-name: jsonpickle
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi
- dependency-name: jsonschema
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi
- dependency-name: requests[security]
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pypi
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pypi
...

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 Jul 14, 2024
@dependabot dependabot bot requested a review from cdrini July 14, 2024 13:27
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 21, 2024

Superseded by #418.

@dependabot dependabot bot closed this Jul 21, 2024
@dependabot dependabot bot deleted the dependabot/pip/pypi-6a5348d752 branch July 21, 2024 13:44
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