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 zstandard from 0.21.0 to 0.22.0 #5

Merged
merged 1 commit into from
Mar 3, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 2, 2024

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps zstandard from 0.21.0 to 0.22.0.

Release notes

Sourced from zstandard's releases.

0.22.0

Backwards Compatibility Notes

  • ZstdDecompressor.decompressobj() will change read_across_frames to default to True in a future release. If you depend on the current functionality of stopping at frame boundaries, start explicitly passing read_across_frames=False to preserve the current behavior.
  • manylinux2010 wheels are no longer published since this wheel format is no longer supported by the pypa/manylinux project.
  • Removed CI coverage for PyPy 3.7 and 3.8, which are no longer supported PyPy versions.
  • Support for Python 3.7 has been dropped because it reached end of life. Python 3.8 is the minimum supported Python version. The code should still be compatible with Python 3.7 and removing of version checks from setup.py will likely yield a working install. However, this is no officially supported.

Changes

  • ZstdDecompressor.decompressobj() now accepts a read_across_frames boolean named argument to control whether to transparently read across multiple zstd frames. It defaults to False to preserve existing behavior.
  • Added CI coverage for PyPy 3.10.
  • Added CI coverage for newer Anaconda Python versions.
  • Packages used in CI have been upgraded to latest versions. This should nominally only impact developers of this project and not end-users.
  • pyproject.toml now declares a [build-system] section saying to build with setuptools.
  • CI now builds wheels with pip instead of setup.py directly.
  • Official support for CPython 3.12. Binary wheels for 3.12 are now published during releases. There were no meaningful code changes to support Python 3.12.
  • Binary wheels for musllinux_1_1 x86_64 and aarch64 are now being built and published.
Changelog

Sourced from zstandard's changelog.

0.22.0 (released 2023-11-01)

Backwards Compatibility Notes

  • ZstdDecompressor.decompressobj() will change read_across_frames to default to True in a future release. If you depend on the current functionality of stopping at frame boundaries, start explicitly passing read_across_frames=False to preserve the current behavior.
  • manylinux2010 wheels are no longer published since this wheel format is no longer supported by the pypa/manylinux project.
  • Removed CI coverage for PyPy 3.7 and 3.8, which are no longer supported PyPy versions.
  • Support for Python 3.7 has been dropped because it reached end of life. Python 3.8 is the minimum supported Python version. The code should still be compatible with Python 3.7 and removing of version checks from setup.py will likely yield a working install. However, this is no officially supported.

Bug Fixes

  • ZstdDecompressor.decompress() with allow_extra_data=False would previously allow extra data to exist after an empty zstd frame (a frame holding 0 length input). This scenario now raises an exception.

Changes

  • ZstdDecompressor.decompressobj() now accepts a read_across_frames boolean named argument to control whether to transparently read across multiple zstd frames. It defaults to False to preserve existing behavior.
  • Added CI coverage for PyPy 3.10.
  • Added CI coverage for newer Anaconda Python versions.
  • Packages used in CI have been upgraded to latest versions. This should nominally only impact developers of this project and not end-users.
  • pyproject.toml now declares a [build-system] section saying to build with setuptools.
  • CI now builds wheels with pip instead of setup.py directly.
  • Official support for CPython 3.12. Binary wheels for 3.12 are now published during releases. There were no meaningful code changes to support Python 3.12.
  • Binary wheels for musllinux_1_1 x86_64 and aarch64 are now being built and published.
Commits
  • 255b579 global: release 0.22.0
  • 9a38896 ci: add musllinux wheels
  • bd6f2ef global: add Python 3.12 support
  • cfbd3e7 ci: use pip install instead of setup.py develop
  • f17569c ci: simplify macOS wheel builds
  • 8d4e26e pyproject: use pip wheel for building wheels
  • 2ae0312 setup: look for distutils in setuptools
  • 3fcb6a1 test: use pytest conftest.py and plugin to define hypothesis profile
  • 1229817 ci: upgrade requirements.txt
  • b7f9eac global: drop support for Python 3.7
  • Additional commits viewable in compare view

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [zstandard](https://github.com/indygreg/python-zstandard) from 0.21.0 to 0.22.0.
- [Release notes](https://github.com/indygreg/python-zstandard/releases)
- [Changelog](https://github.com/indygreg/python-zstandard/blob/main/docs/news.rst)
- [Commits](indygreg/python-zstandard@0.21.0...0.22.0)

---
updated-dependencies:
- dependency-name: zstandard
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Mar 2, 2024
@subzeroid subzeroid merged commit 8c1133c into main Mar 3, 2024
3 of 8 checks passed
@dependabot dependabot bot deleted the dependabot/pip/zstandard-0.22.0 branch March 3, 2024 02:08
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.

1 participant