fix(deps): update rust crate bitflags to v2 #11
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->2Release Notes
bitflags/bitflags (bitflags)
v2.6.0Compare Source
What's Changed
New Contributors
Full Changelog: bitflags/bitflags@2.5.0...2.6.0
v2.5.0Compare Source
What's Changed
DebugforFlag<B>by @tgross35 in https://github.com/bitflags/bitflags/pull/398New Contributors
Full Changelog: bitflags/bitflags@2.4.2...2.5.0
v2.4.2Compare Source
What's Changed
unused_tuple_struct_fieldslint by @dtolnay in https://github.com/bitflags/bitflags/pull/393local_inner_macrosby @dtolnay in https://github.com/bitflags/bitflags/pull/392New Contributors
Full Changelog: bitflags/bitflags@2.4.1...2.4.2
v2.4.1Compare Source
What's Changed
Full Changelog: bitflags/bitflags@2.4.0...2.4.1
v2.4.0Compare Source
What's Changed
New Contributors
Full Changelog: bitflags/bitflags@2.3.3...2.4.0
v2.3.3Compare 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 = !0as 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
0x0for 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.2Compare Source
What's Changed
New Contributors
Full Changelog: bitflags/bitflags@2.3.1...2.3.2
v2.3.1Compare Source
What's Changed
Full Changelog: bitflags/bitflags@2.3.0...2.3.1
v2.3.0Compare Source
Major changes
BitFlagstrait deprecated in favor ofFlagstraitThis release introduces the
Flagstrait and deprecates theBitFlagstrait. These two traits are semver compatible so if you have public API code depending onBitFlagsyou can move toFlagswithout breaking end-users. This is possible because theBitFlagstrait was never publicly implementable, so it now carriesFlagsas a supertrait. All implementations ofFlagsadditionally implementBitFlags.The
Flagstrait is a publicly implementable version of the oldBitFlagstrait. The originalBitFlagstrait carried some macro baggage that made it difficult to implement, so a newFlagstrait has been introduced as the One True Trait for interacting with flags types generically. See the themacro_freeandcustom_deriveexamples for more details.Bitstrait publicly exposedThe
Bitstrait for the underlying storage of flags values is also now publicly implementable. This lets you define your own exotic backing storage for flags. See thecustom_bits_typeexample for more details.What's Changed
Full Changelog: bitflags/bitflags@2.2.1...2.3.0
v2.2.1Compare Source
What's Changed
Full Changelog: bitflags/bitflags@2.2.0...2.2.1
v2.2.0Compare Source
What's Changed
New Contributors
Full Changelog: bitflags/bitflags@2.1.0...2.2.0
v2.1.0Compare Source
What's Changed
New Contributors
Full Changelog: bitflags/bitflags@2.0.2...2.1.0
v2.0.2Compare Source
What's Changed
Full Changelog: bitflags/bitflags@2.0.1...2.0.2
v2.0.1Compare Source
What's Changed
New Contributors
Full Changelog: bitflags/bitflags@2.0.0...2.0.1
v2.0.0Compare Source
Major changes
This release includes some major changes over
1.x. If you usebitflags!types in your public API then upgrading this library may cause breakage in your downstream users.You'll need to add the
serdeCargo feature in order to#[derive(Serialize, Deserialize)]on your generated flags types:where
Tis the underlying bits type you're using, such asu32.The default serialization format with
serdehas changed if you#[derive(Serialize, Deserialize)]on your generated flags types. It will now use a formatted string for human-readable formats and the underlying bits type for compact formats.To keep the old format, see the https://github.com/KodrAus/bitflags-serde-legacy library.
Generated flags types now derive fewer traits. If you need to maintain backwards compatibility, you can derive the following yourself:
#[derive(PartialEq, Eq, PartialOrd, Ord, Hash, Debug, Clone, Copy)]The unsafe
from_bits_uncheckedmethod is now a safefrom_bits_retainmethod.You can add the following method to your generated types to keep them compatible:
where
Tis the underlying bits type you're using, such asu32..bitsfieldYou can now use the
.bits()method instead of the old.bits.The representation of generated flags types has changed from a struct with the single field
bitsto a newtype.What's Changed
Okby @konsumlamm in https://github.com/bitflags/bitflags/pull/266Debugimplementation by @konsumlamm in https://github.com/bitflags/bitflags/pull/268New Contributors
Full Changelog: bitflags/bitflags@1.3.2...2.0.0
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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.