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

build(deps): bump bitstring from 4.1.4 to 4.3.0 #19109

Merged
merged 1 commit into from
Jan 10, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 7, 2025

Bumps bitstring from 4.1.4 to 4.3.0.

Release notes

Sourced from bitstring's releases.

bitstring-4.3.0

A minor update, fixing a few issues and updating dependencies.

  • Upgraded bitarray dependency to >= 3.0.0.
  • Explicit support for Python 3.13.
  • Removed the 'experimental feature' label from the new exotic floating point types.
  • Fix for LSB0 slicing issue. Bug #343.

bitstring-4.2.3

More small bug fixes related to some of the new (beta) float formats.

  • Some codes representing exotic float negative zero converted to positive zero. Bug #333.
  • Auto-scaling rounding the wrong way on occasion. Bug #334.

bitstring-4.2.2

A couple more minor bug fixes.

  • Sometimes a ValueError was being raised instead of a ReadError. Bug #325.
  • Initialising a bitstring from None now raises a TypeError rather than generating an empty bitstring. Bug #323.
  • Fixed performance regression for find / findall in some situations. Bug #326.
  • Fix for AttributeError bug when combining Bits with BitStream. Bug #329.

bitstring-4.2.1

Fixing a few regressions introduced in 4.2.0.

  • Module crashes on import with 32-bit Python. Bug #317.
  • Lists of integers not converted to bytes when using the bytes constructor. Bug #318.
  • Empty comma separated tokens not handled correctly. Bug #319.
  • Crash on import when docstrings not present due to optimize flag. Bug #321.

bitstring-4.2.0

This release contains a fairly large refactor of how different types are managed. This shouldn't affect the end user, and the main noticeable change should be the new Dtype class, which is optional to use.

Support for 8-bit and smaller floats has been reworked and expanded. These are still a 'beta' feature.

Backwardly incompatible changes:

  • Dropped support for Python 3.7. Minimum version is now 3.8.
  • For tokens that use a non-numeric length, a ':' is now compulsory rather than recommended. For example use 'uint:foo' instead of 'uintfoo'.
  • The previous e4m3float and e5m2float formats have become the slightly modified p4binary8 and p3binary8 formats.
  • Some parameters are now enforced as positional only, such as auto in constructors.

Other changes:

... (truncated)

Changelog

Sourced from bitstring's changelog.

January 2025: version 4.3.0

A minor update.

  • Upgraded bitarray dependency to >= 3.0.0.
  • Explicit support for Python 3.13.
  • Added i and I struct codes for 32-bit ints. Bug #340.
  • Removed the 'experimental feature' label from the new exotic floating point types.
  • Fix for negative index LSB0 slicing issue. Bug #343.

May 2024: version 4.2.3

More small bug fixes related to some of the new (beta) float formats.

  • Some codes representing exotic float negative zero converted to positive zero. Bug #333.
  • Auto-scaling rounding the wrong way on occasion. Bug #334.

May 2024: version 4.2.2

A couple more minor bug fixes.

  • Sometimes a ValueError was being raised instead of a ReadError. Bug #325.
  • Initialising a bitstring from None now raises a TypeError rather than generating an empty bitstring. Bug #323.
  • Fixed performance regression for find/findall in some situations. Bug #326.
  • Fix for AttributeError bug when combining Bits with BitStream. Bug #329.

April 2024: version 4.2.1

Fixing a few regressions introduced in 4.2.0.

  • Module crashes on import with 32-bit Python. Bug #317.
  • Lists of integers not converted to bytes when using the bytes constructor. Bug #318.
  • Empty comma separated tokens not handled correctly. Bug #319.
  • Crash on import when docstrings not present due to optimize flag. Bug #321.

April 2024: version 4.2.0

This release contains a fairly large refactor of how different types are managed. This shouldn't affect the end user, and the main noticeable change should be the new Dtype class, which is optional to use.

Support for 8-bit and smaller floats has been reworked and expanded. These are still a 'beta' feature.

Backwardly incompatible changes

  • Dropped support for Python 3.7. Minimum version is now 3.8.
  • For tokens that use a non-numeric length, a ':' is now compulsory rather than recommended. For example use 'uint:foo' instead of 'uintfoo'.
  • The previous e4m3float and e5m2float formats have become the slightly modified p4binary8 and p3binary8 formats.

... (truncated)

Commits
  • 70f5a3c Fix to malformed table.
  • baf5b26 Mostly doc tweaks. Removed experimental label from new exotic floating point ...
  • fdc3fbe Updates again preparing for a 4.3 release.
  • 47bfc2f Adding support for i/I struct codes that just mirror the l/L codes. Issue#340.
  • 7b84881 Small docs updates. Issue #352.
  • e264a04 lsb0 slice logic passing all tests. Now to make the tests harder...
  • 26f33f2 Refactoring offset_slice_lsb0 logic.
  • 9320df0 Removing broken try finally block. Bug #347.
  • 8af5b94 Explicit check for bitarray version to give better error message.
  • 6943dad Update README.md
  • 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)

@dependabot dependabot bot requested a review from a team as a code owner January 7, 2025 20:23
@dependabot dependabot bot added Changed Required label for PR that categorizes merge commit message as "Changed" for changelog dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jan 7, 2025
@dependabot dependabot bot requested review from altendky and emlowe January 7, 2025 20:23
Copy link

socket-security bot commented Jan 7, 2025

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
pypi/bitarray@3.0.0 None 0 0 B

🚮 Removed packages: pypi/bitarray@2.8.2, pypi/bitstring@4.1.4

View full report↗︎

Bumps [bitstring](https://github.com/scott-griffiths/bitstring) from 4.1.4 to 4.3.0.
- [Release notes](https://github.com/scott-griffiths/bitstring/releases)
- [Changelog](https://github.com/scott-griffiths/bitstring/blob/main/release_notes.md)
- [Commits](scott-griffiths/bitstring@bitstring-4.1.4...bitstring-4.3.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/bitstring-4.3.0 branch from ec80dc2 to 3a64ce0 Compare January 8, 2025 16:30
@pmaslana pmaslana merged commit 51277f7 into main Jan 10, 2025
359 checks passed
@pmaslana pmaslana deleted the dependabot/pip/bitstring-4.3.0 branch January 10, 2025 14:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Changed Required label for PR that categorizes merge commit message as "Changed" for changelog 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.

2 participants