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

fix(deps): update all patch updates #531

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 4, 2024

This PR contains the following updates:

Package Type Update Change
anyhow dependencies patch 1.0.86 -> 1.0.93
byte-unit (source) dependencies patch 5.1.4 -> 5.1.6
futures (source) dependencies patch 0.3.30 -> 0.3.31
serde (source) dependencies patch 1.0.208 -> 1.0.215
serde_json dependencies patch 1.0.125 -> 1.0.132
serenity workspace.dependencies patch 0.12.2 -> 0.12.4
thiserror dependencies patch 1.0.63 -> 1.0.69
tokio-util (source) dependencies patch 0.7.11 -> 0.7.12
url dependencies patch 2.5.2 -> 2.5.3

Release Notes

dtolnay/anyhow (anyhow)

v1.0.93

Compare Source

  • Update dev-dependencies to thiserror v2

v1.0.92

Compare Source

  • Support Rust 1.82's &raw const and &raw mut syntax inside ensure! (#​390)

v1.0.91

Compare Source

  • Ensure OUT_DIR is left with deterministic contents after build script execution (#​388)

v1.0.90

Compare Source

  • Documentation improvements

v1.0.89

Compare Source

  • Make anyhow::Error's UnwindSafe and RefUnwindSafe impl consistently available between versions of Rust newer and older than 1.72 (#​386)

v1.0.88

Compare Source

  • Documentation improvements

v1.0.87

Compare Source

  • Support more APIs, including Error::new and Error::chain, in no-std mode on Rust 1.81+ (#​383)
magiclen/byte-unit (byte-unit)

v5.1.6

Compare Source

v5.1.5

Compare Source

rust-lang/futures-rs (futures)

v0.3.31

Compare Source

  • Fix use after free of task in FuturesUnordered when dropped future panics (#​2886)
  • Fix soundness bug in task::waker_ref (#​2830)
    This is a breaking change but allowed because it is soundness bug fix.
  • Fix bugs in AsyncBufRead::read_line and AsyncBufReadExt::lines (#​2884)
  • Fix parsing issue in select!/select_biased! (#​2832)
    This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted.
  • Work around issue due to upstream Waker::will_wake change (#​2865)
  • Add stream::Iter::{get_ref,get_mut,into_inner} (#​2875)
  • Add future::AlwaysReady (#​2825)
  • Relax trait bound on non-constructor methods of io::{BufReader,BufWriter} (#​2848)
serde-rs/serde (serde)

v1.0.215

Compare Source

v1.0.214

Compare Source

  • Implement IntoDeserializer for all Deserializers in serde::de::value module (#​2568, thanks @​Mingun)

v1.0.213

Compare Source

  • Fix support for macro-generated with attributes inside a newtype struct (#​2847)

v1.0.212

Compare Source

  • Fix hygiene of macro-generated local variable accesses in serde(with) wrappers (#​2845)

v1.0.211

Compare Source

  • Improve error reporting about mismatched signature in with and default attributes (#​2558, thanks @​Mingun)
  • Show variant aliases in error message when variant deserialization fails (#​2566, thanks @​Mingun)
  • Improve binary size of untagged enum and internally tagged enum deserialization by about 12% (#​2821)

v1.0.210

Compare Source

  • Support serializing and deserializing IpAddr and SocketAddr in no-std mode on Rust 1.77+ (#​2816, thanks @​MathiasKoch)
  • Make serde::ser::StdError and serde::de::StdError equivalent to core::error::Error on Rust 1.81+ (#​2818)

v1.0.209

Compare Source

  • Fix deserialization of empty structs and empty tuples inside of untagged enums (#​2805, thanks @​Mingun)
serde-rs/json (serde_json)

v1.0.132

Compare Source

  • Improve binary size and compile time for JSON array and JSON object deserialization by about 50% (#​1205)
  • Improve performance of JSON array and JSON object deserialization by about 8% (#​1206)

v1.0.131

Compare Source

  • Implement Deserializer and IntoDeserializer for Map<String, Value> and &Map<String, Value> (#​1135, thanks @​swlynch99)

v1.0.130

Compare Source

  • Support converting and deserializing Number from i128 and u128 (#​1141, thanks @​druide)

v1.0.129

Compare Source

v1.0.128

Compare Source

v1.0.127

Compare Source

v1.0.126

Compare Source

  • Improve string parsing on targets that use 32-bit pointers but also have fast 64-bit integer arithmetic, such as aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (#​1182, thanks @​CryZe)
serenity-rs/serenity (serenity)

v0.12.4

Compare Source

This is a hotfix release to fix broken behaviour of Message::author_permissions before it is relied on.

Thanks to the following for their contributions:

Deprecations
  • #​3037 Permission methods which do not respect channel permission overrides are now deprecated, use the _in variants.
Additions
  • #​3008 From<&User> has been added to CreateEmbedAuthor, to avoid consuming the user.
Fixes
  • #​3037 Message::author_permissions now respects permission overrides, as it is documented to.
  • #​3039 Message::author_permissions now respects SEND_MESSAGES_IN_THREADS when used in threads.
Documentation improvements
  • #​3038 Documentation for Guild::threads has been expanded.

v0.12.3

Compare Source

Thanks to the following for their contributions:

Deprecations
  • #​2894 Message(Id)::link_ensured can be replaced by Message(Id)::link if recieved via event, or MessageId::link if the message was recieved via a HTTP request.
  • #​2905 CreateInteractionResponse::PremiumRequired has been deprecated and replaced with Premium Buttons.
  • #​3030 GuildChannel::permissions_for_user has been deprecated, use the new Message::author_permissions helper or Guild::user_permissions_in.
Additions
  • #​2891 Guild Incident message types have been added to MessageType.
  • #​2913 CreateButton now implements From<Button>.
  • #​2914 User::display_name has been added, as users may have two different names now.
  • #​2920 Support for Application Emojis has been added, getting rid of those "emoji servers" many bots required.
  • #​2905 Support for Premium Buttons has been added, which link to the store page of a chosen SKU.
  • #​2926 A method to get the role icon URL has been added.
  • #​2939 Some missing fields have been added to to CurrentApplicationInfo.
  • #​2946 Support for the Get Guild Role endpoint has been added.
  • #​2960 Support for the Get Sticker Pack by Id endpoint has been added.
  • #​2962 Some missing entries in GuildMemberFlags have been added.
  • #​2950 The missing USE_EXTERNAL_APPS permission has been added.
  • #​2987 A builder for the Get Entitlements endpoint has been added.
  • #​2996 MessageReferenceKind has been added to start supporting forwarding.
  • #​3001 {PartialGuild, Guild}::partial_member_permissions has been added for more efficent permissions checking
  • #​3013 Interaction responses can now send polls.
  • #​3018 User App support has been stablised, usable without unstable_discord_api.
  • #​3021 Support for Entry Point Commands has been added.
  • #​3030 A Message::author_permissions helper has been added, alongside Permissions::dm_permissions.
Deserialisation Fixes
  • #​2887, #​2893
    Messages with reactions no longer fail to deserialize due to super reaction changes.
  • #​2917 Application no longer fails to deserialize with unstable_discord_api
  • #​3032 Guilds with an @​everyone role at position -1 no longer fail to deserialise.
General fixes
  • #​2886 A typo has been fixed in GuildId::members_iter documentation.
  • #​2906 CreateAttachment documentation has been updated to be more consistent with other builders.
  • #​2911 CreateEmbedAuthor documentation can now spell embed correctly.
  • Pushed to Current AuthorizingIntegrationOwners is now usable, as the field was previously private.
  • #​2945 (Partial)Guild::member_permissions is now usable without cache.
  • #​2973 ChannelId::delete_messages documentation has been expanded to document the single item case.
  • #​2959 The rules for attachment names for local attachments in embeds have now been documented.
  • #​3005 The fields of BulkBanResponse have been made public.
  • #​3006 The bulk_ban endpoint is now usable, previously unusable due to Send issues.
dtolnay/thiserror (thiserror)

v1.0.69

Compare Source

  • Backport 2.0.2 fixes

v1.0.68

Compare Source

  • Handle incomplete expressions more robustly in format arguments, such as while code is being typed (#​341, #​344)

v1.0.67

Compare Source

v1.0.66

Compare Source

  • Improve compile error on malformed format attribute (#​327)

v1.0.65

Compare Source

  • Ensure OUT_DIR is left with deterministic contents after build script execution (#​325)

v1.0.64

Compare Source

tokio-rs/tokio (tokio-util)

v0.7.12

Compare Source

servo/rust-url (url)

v2.5.3

Compare Source

What's Changed
New Contributors

Full Changelog: servo/rust-url@v2.5.2...v2.5.3


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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title fix(deps): update rust crate tokio-util to 0.7.11 fix(deps): update rust crate tokio-util to v0.7.11 May 5, 2024
@renovate renovate bot changed the title fix(deps): update rust crate tokio-util to v0.7.11 fix(deps): update all patch updates May 6, 2024
@renovate renovate bot force-pushed the renovate/all-patch branch 3 times, most recently from 55233c2 to 2e3344d Compare May 8, 2024 02:01
@renovate renovate bot force-pushed the renovate/all-patch branch 3 times, most recently from 648e162 to 341eadc Compare May 18, 2024 16:38
@renovate renovate bot force-pushed the renovate/all-patch branch 2 times, most recently from 5fb82f5 to b8ac7ab Compare May 25, 2024 19:29
@renovate renovate bot force-pushed the renovate/all-patch branch 2 times, most recently from fed6091 to 941585b Compare June 10, 2024 16:33
@renovate renovate bot force-pushed the renovate/all-patch branch 2 times, most recently from ddfb627 to 30cc93f Compare June 25, 2024 08:22
@renovate renovate bot force-pushed the renovate/all-patch branch 3 times, most recently from 58bb869 to f9a9133 Compare July 6, 2024 21:15
@renovate renovate bot force-pushed the renovate/all-patch branch 2 times, most recently from bb9c6da to b0a5f35 Compare July 17, 2024 21:22
@renovate renovate bot force-pushed the renovate/all-patch branch 3 times, most recently from efa184d to 8bfdb83 Compare August 2, 2024 16:14
@renovate renovate bot force-pushed the renovate/all-patch branch 5 times, most recently from 068ddc9 to e992368 Compare August 12, 2024 21:55
@renovate renovate bot force-pushed the renovate/all-patch branch 2 times, most recently from 640a33b to afa033e Compare August 15, 2024 16:53
@renovate renovate bot changed the title fix(deps): update all patch updates - autoclosed fix(deps): update all patch updates Aug 23, 2024
@renovate renovate bot reopened this Aug 23, 2024
@renovate renovate bot changed the title fix(deps): update all patch updates fix(deps): update rust crate serde_json to v1.0.127 Aug 23, 2024
@renovate renovate bot force-pushed the renovate/all-patch branch 2 times, most recently from 441d7e5 to da01f54 Compare August 24, 2024 03:41
@renovate renovate bot changed the title fix(deps): update rust crate serde_json to v1.0.127 fix(deps): update all patch updates Aug 24, 2024
@renovate renovate bot force-pushed the renovate/all-patch branch 2 times, most recently from ca4873d to af126ac Compare September 22, 2024 19:33
@renovate renovate bot force-pushed the renovate/all-patch branch 7 times, most recently from 6e80378 to 6c9a2bc Compare October 22, 2024 22:26
@renovate renovate bot force-pushed the renovate/all-patch branch 8 times, most recently from 3f15134 to debbc68 Compare November 4, 2024 17:30
@renovate renovate bot force-pushed the renovate/all-patch branch 4 times, most recently from f9dec4c to c5d880d Compare November 13, 2024 00:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants