fix(deps): update rust crate bitflags to v2 - autoclosed #814
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1
->2
Release Notes
bitflags/bitflags (bitflags)
v2.4.2
Compare Source
What's Changed
unused_tuple_struct_fields
lint by @dtolnay in https://github.com/bitflags/bitflags/pull/393local_inner_macros
by @dtolnay in https://github.com/bitflags/bitflags/pull/392New Contributors
Full Changelog: bitflags/bitflags@2.4.1...2.4.2
v2.4.1
Compare Source
What's Changed
Full Changelog: bitflags/bitflags@2.4.0...2.4.1
v2.4.0
Compare Source
What's Changed
New Contributors
Full Changelog: bitflags/bitflags@2.3.3...2.4.0
v2.3.3
Compare Source
Changes to
-=
The
-=
operator was incorrectly changed to truncate bits that didn't correspond to valid flags in2.3.0
. This hasbeen fixed up so it once again behaves the same as
-
anddifference
.Changes to
!
The
!
operator previously calledSelf::from_bits_truncate
, which would truncate any bits that only partiallyoverlapped with a valid flag. It will now use
bits & Self::all().bits()
, so any bits that overlap any bitsspecified by any flag will be respected. This is unlikely to have any practical implications, but enables defining
a flag like
const ALL = !0
as a way to signal that any bit pattern is a known set of flags.Changes to formatting
Zero-valued flags will never be printed. You'll either get
0x0
for empty flags using debug formatting, or theset of flags with zero-valued flags omitted for others.
Composite flags will no longer be redundantly printed if there are extra bits to print at the end that don't correspond
to a valid flag.
What's Changed
Full Changelog: bitflags/bitflags@2.3.2...2.3.3
v2.3.2
Compare Source
What's Changed
New Contributors
Full Changelog: bitflags/bitflags@2.3.1...2.3.2
v2.3.1
Compare Source
What's Changed
Full Changelog: bitflags/bitflags@2.3.0...2.3.1
v2.3.0
Compare Source
What's Changed
Full Changelog: bitflags/bitflags@2.2.1...2.3.0
v2.2.1
Compare Source
What's Changed
Full Changelog: bitflags/bitflags@2.2.0...2.2.1
v2.2.0
Compare Source
What's Changed
New Contributors
Full Changelog: bitflags/bitflags@2.1.0...2.2.0
v2.1.0
Compare Source
What's Changed
New Contributors
Full Changelog: bitflags/bitflags@2.0.2...2.1.0
v2.0.2
Compare Source
What's Changed
Full Changelog: bitflags/bitflags@2.0.1...2.0.2
v2.0.1
Compare Source
What's Changed
New Contributors
Full Changelog: bitflags/bitflags@2.0.0...2.0.1
v2.0.0
Compare Source
What's Changed
Ok
by @konsumlamm in https://github.com/bitflags/bitflags/pull/266Debug
implementation by @konsumlamm in https://github.com/bitflags/bitflags/pull/268New Contributors
Full Changelog: bitflags/bitflags@1.3.2...2.0.0
v1.3.2
Compare Source
non_snake_case
in generated flags types (#256)v1.3.1
Compare Source
#[repr(transparent)]
(#252)v1.3.0
Compare Source
This release bumps the Minimum Supported Rust Version to
1.46.0
Add
#[repr(transparent)]
(#187)End
empty
doc comment with full stop (#202)Fix typo in crate root docs (#206)
Document from_bits_unchecked unsafety (#207)
Let
is_all
ignore extra bits (#211)Allows empty flag definition (#225)
Making crate accessible from std (#227)
Make
from_bits
a const fn (#229)Allow multiple bitflags structs in one macro invocation (#235)
Add named functions to perform set operations (#244)
Fix typos in method docs (#245)
Modernization of the
bitflags
macro to take advantage of newer features and 2018 idioms (#246)Fix regression (in an unreleased feature) and simplify tests (#247)
Use
Self
and fix bug when overridingstringify!
(#249)v1.2.1
Compare Source
#[inline]
attributes (#194)v1.2.0
Compare Source
Fix typo: {Lower, Upper}Exp - {Lower, Upper}Hex (#183)
Add support for "unknown" bits (#188)
v1.1.0
Compare Source
This is a re-release of
1.0.5
, which was yanked due to a bug in the RLS.v1.0.5
Compare Source
Use compiletest_rs flags supported by stable toolchain (#171)
Put the user provided attributes first (#173)
Make bitflags methods
const
on newer compilers (#175)v1.0.4
Compare Source
Support Rust 2018 style macro imports (#165)
v1.0.3
Compare Source
v1.0.2
Compare Source
30% improvement in compile time of bitflags crate (#156)
Documentation improvements (#153)
Implementation cleanup (#149)
v1.0.1
Compare Source
pub(restricted)
specifier on the bitflags struct (#135)all()
when called from a separate crate (#136)Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.