Skip to content
This repository was archived by the owner on Nov 21, 2025. It is now read-only.

Update all dependencies#101

Open
renovate[bot] wants to merge 1 commit intodevelopfrom
renovate/all
Open

Update all dependencies#101
renovate[bot] wants to merge 1 commit intodevelopfrom
renovate/all

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Apr 30, 2023

This PR contains the following updates:

Package Type Update Change
actions/checkout action major v3 -> v5
adw (source) dependencies minor 0.2.1 -> 0.8.0
base64 dependencies minor 0.20.0 -> 0.22.0
blocking dependencies patch 1.6.1 -> 1.6.2
clap dependencies patch 4.5.7 -> 4.5.53
futures (source) dependencies patch 0.3.30 -> 0.3.31
glob dependencies patch 0.3.1 -> 0.3.3
grass build-dependencies minor 0.11.2 -> 0.13.0
hw-msg dependencies minor 0.3.1 -> 0.4.0
indexmap dependencies major 1.9.3 -> 2.0.0
ksni dependencies minor 0.2.2 -> 0.3.0
lazy_static dependencies minor 1.4.0 -> 1.5.0
librclone dependencies minor 0.6.3 -> 0.9.0
nix dependencies minor 0.26.4 -> 0.30.0
rand (source) dependencies minor 0.8.5 -> 0.9.0
regex dependencies minor 1.10.5 -> 1.12.2
sea-orm (source) dependencies major 0.10.7 -> 1.0.0
sea-orm-migration (source) dependencies major 0.10.7 -> 1.0.0
serde (source) dependencies patch 1.0.203 -> 1.0.228
serde_json dependencies patch 1.0.117 -> 1.0.145
tempfile (source) dependencies minor 3.10.1 -> 3.23.0
tera (source) dependencies patch 1.20.0 -> 1.20.1
time (source) dependencies patch 0.3.36 -> 0.3.44
toml_edit dependencies minor 0.14.4 -> 0.23.0
tr dependencies patch 0.1.7 -> 0.1.11
url dependencies patch 2.5.2 -> 2.5.7

Release Notes

actions/checkout (actions/checkout)

v5

Compare Source

v4

Compare Source

marshallpierce/rust-base64 (base64)

v0.22.1

Compare Source

  • Correct the symbols used for the predefined alphabet::BIN_HEX.

v0.22.0

Compare Source

  • DecodeSliceError::OutputSliceTooSmall is now conservative rather than precise. That is, the error will only occur if the decoded output cannot fit, meaning that Engine::decode_slice can now be used with exactly-sized output slices. As part of this, Engine::internal_decode now returns DecodeSliceError instead of DecodeError, but that is not expected to affect any external callers.
  • DecodeError::InvalidLength now refers specifically to the number of valid symbols being invalid (i.e. len % 4 == 1), rather than just the number of input bytes. This avoids confusing scenarios when based on interpretation you could make a case for either InvalidLength or InvalidByte being appropriate.
  • Decoding is somewhat faster (5-10%)

v0.21.7

Compare Source

  • Support getting an alphabet's contents as a str via Alphabet::as_str()

v0.21.6

Compare Source

  • Improved introductory documentation and example

v0.21.5

Compare Source

  • Add Debug and Clone impls for the general purpose Engine

v0.21.4

Compare Source

  • Make encoded_len const, allowing the creation of arrays sized to encode compile-time-known data lengths

v0.21.3

Compare Source

  • Implement source instead of cause on Error types
  • Roll back MSRV to 1.48.0 so Debian can continue to live in a time warp
  • Slightly faster chunked encoding for short inputs
  • Decrease binary size

v0.21.2

Compare Source

  • Rollback MSRV to 1.57.0 -- only dev dependencies need 1.60, not the main code

v0.21.1

Compare Source

  • Remove the possibility of panicking during decoded length calculations
  • DecoderReader no longer sometimes erroneously ignores
    padding #​226

Breaking changes

  • Engine.internal_decode return type changed
  • Update MSRV to 1.60.0

v0.21.0

Compare Source

Migration

Functions
< 0.20 function 0.21 equivalent
encode() engine::general_purpose::STANDARD.encode() or prelude::BASE64_STANDARD.encode()
encode_config() engine.encode()
encode_config_buf() engine.encode_string()
encode_config_slice() engine.encode_slice()
decode() engine::general_purpose::STANDARD.decode() or prelude::BASE64_STANDARD.decode()
decode_config() engine.decode()
decode_config_buf() engine.decode_vec()
decode_config_slice() engine.decode_slice()

The short-lived 0.20 functions were the 0.13 functions with config replaced with engine.

Padding

If applicable, use the preset engines engine::STANDARD, engine::STANDARD_NO_PAD, engine::URL_SAFE,
or engine::URL_SAFE_NO_PAD.
The NO_PAD ones require that padding is absent when decoding, and the others require that
canonical padding is present .

If you need the < 0.20 behavior that did not care about padding, or want to recreate < 0.20.0's predefined Configs
precisely, see the following table.

0.13.1 Config 0.20.0+ alphabet encode_padding decode_padding_mode
STANDARD STANDARD true Indifferent
STANDARD_NO_PAD STANDARD false Indifferent
URL_SAFE URL_SAFE true Indifferent
URL_SAFE_NO_PAD URL_SAFE false Indifferent
smol-rs/blocking (blocking)

v1.6.2

Compare Source

  • Fix build failure with minimal-versions. (#​71)
clap-rs/clap (clap)

v4.5.53

Compare Source

v4.5.52

Compare Source

Fixes
  • Don't panic when args_conflicts_with_subcommands conflicts with an ArgGroup

v4.5.51

Compare Source

Fixes
  • (help) Correctly calculate padding for short flags that take a value
  • (help) Don't panic on short flags using ArgAction::Count

v4.5.50

Compare Source

Features
  • Accept Cow where String and &str are accepted

v4.5.49

Compare Source

Fixes
  • (help) Correctly wrap when ANSI escape codes are present

v4.5.48

Compare Source

Documentation
  • Add a new CLI Concepts document as another way of framing clap
  • Expand the typed_derive cookbook entry

v4.5.47

Compare Source

Features
  • Added impl FromArgMatches for ()
  • Added impl Args for ()
  • Added impl Subcommand for ()
  • Added impl FromArgMatches for Infallible
  • Added impl Subcommand for Infallible
Fixes
  • (derive) Update runtime error text to match clap

v4.5.46

Compare Source

Features
  • Expose StyledStr::push_str

v4.5.45

Compare Source

Fixes
  • (unstable-v5) ValueEnum variants now use the full doc comment, not summary, for PossibleValue::help

v4.5.44

Compare Source

Features
  • Add Command::mut_subcommands

v4.5.43

Compare Source

Fixes
  • (help) In long help, list Possible Values before defaults, rather than after, for a more consistent look

v4.5.42

Compare Source

Fixes
  • Include subcommand visible long aliases in --help

v4.5.41

Compare Source

Features
  • Add Styles::context and Styles::context_value to customize the styling of [default: value] like notes in the --help

v4.5.40

Compare Source

Features
  • Support quoted ids in arg!() macro (e.g. arg!("check-config": ...))

v4.5.39

Compare Source

Fixes
  • (help) Show short flag aliases before long
  • (help) Merge the short and long flag alias lists

v4.5.38

Compare Source

Fixes
  • (help) When showing aliases, include leading -- or -

v4.5.37

Compare Source

Features
  • Added ArgMatches::try_clear_id()

v4.5.36

Compare Source

Fixes
  • (help) Revert 4.5.35's "Don't leave space for shorts if there are none" for now

v4.5.35

Compare Source

Fixes
  • (help) Align positionals and flags when put in the same help_heading
  • (help) Don't leave space for shorts if there are none

v4.5.34

Compare Source

Fixes
  • (help) Don't add extra blank lines with flatten_help(true) and subcommands without arguments

v4.5.33

Compare Source

Fixes
  • (error) When showing the usage of a suggestion for an unknown argument, don't show the group

v4.5.32

Compare Source

Features
  • Add Error::remove
Documentation
  • (cookbook) Switch from humantime to jiff
  • (tutorial) Better cover required vs optional
Internal
  • Update pulldown-cmark

v4.5.31

Compare Source

Features
  • Add ValueParserFactory for Saturating<T>

v4.5.30

Compare Source

Fixes
  • (assert) Allow num_args(0..=1) to be used with SetTrue
  • (assert) Clean up rendering of takes_values assertions

v4.5.29

Compare Source

Fixes
  • Change ArgMatches::args_present so not-present flags are considered not-present (matching the documentation)

v4.5.28

Compare Source

Features
  • (derive) Unstable support for full markdown syntax for doc comments, enabled with unstable-markdown

v4.5.27

Compare Source

Documentation
  • Iterate on tutorials and reference based on feedback

v4.5.26

Compare Source

Fixes
  • (error) Reduce binary size with the suggestions feature

v4.5.25

Compare Source

Fixes
  • (help) Reduce binary size

v4.5.24

Compare Source

Fixes
  • (parser) Correctly handle defaults with ignore_errors(true) and when a suggestion is provided for an unknown argument

v4.5.23

Compare Source

Fixes
  • (parser) When check allow_negative_numbers, allow E again

v4.5.22

Compare Source

Fixes
  • (assert) Catch bugs with arguments requiring themself

v4.5.21

Compare Source

Fixes
  • (parser) Ensure defaults are filled in on error with ignore_errors(true)

v4.5.20

Compare Source

Features
  • (unstable) Add CommandExt

v4.5.19

Compare Source

Internal
  • Update dependencies

v4.5.18

Compare Source

Features
  • (builder) Expose Arg::get_display_order and Command::get_display_order

v4.5.17

Compare Source

Fixes
  • (help) Style required argument groups
  • (derive) Improve error messages when unsupported fields are used

v4.5.16

Compare Source

Fixes
  • (derive) Improve error messages when derive feature is missing

v4.5.15

Compare Source

Compatiblity
  • (unstable-ext) Arg::remove changed return types
Fixes
  • (unstable-ext) Make Arg::remove return the removed item

v4.5.14

Compare Source

Features
  • (unstable-ext) Added Arg::add for attaching arbitrary state, like completion hints, to Arg without Arg knowing about it

v4.5.13

Compare Source

Fixes
  • (derive) Improve error message when #[flatten]ing an optional #[group(skip)]
  • (help) Properly wrap long subcommand descriptions in help

v4.5.12

Compare Source

v4.5.11

Compare Source

v4.5.10

Compare Source

v4.5.9

Compare Source

Fixes
  • (error) When defining a custom help flag, be sure to suggest it like we do the built-in one

v4.5.8

Compare Source

Fixes
  • Reduce extra flushes
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)
rust-lang/glob (glob)

v0.3.3

Compare Source

  • Optimize memory allocations (#​147)
  • Bump the MSRV to 1.63 (#​172)
  • Fix spelling in pattern documentation (#​164)
  • Fix version numbers and some formatting (#​157)
  • Style fixes (#​137)

v0.3.2

Compare Source

connorskees/grass (grass)

v0.13.4

  • support ...$keys argument to map-has-key(..)/map.has-key(..)
  • parse aliased colors (e.g. cyan for aqua) as colors rather than identifiers

v0.13.3

  • implement builtin string-module function string.split(..) (#​96) by @​xpe
  • implement functionality for intercepting logs (#​93) by cryocz

v0.13.2

Compare Source

  • update rustix dependency to silence security warning
  • fix @​forward statement altering the scope of the forwarded module (#​85) by @​kketch
  • bump MSRV to 1.70.0

v0.13.1

Compare Source

  • update clap dependency to 4.x.x to silence atty security warning
  • bump MSRV to 1.64.0 for new clap version
  • fix bug in which --no-charset flag wasn't respected

v0.13.0

Compare Source

  • fix various module system bugs when combined with @import. this is potentially breaking in rare cases where users were relying on the incorrect behavior
  • expose more AST internals in grass_compiler
  • allow building docs with stable/beta rust compiler
  • support ...$keys argument to map-get(..)/map.get(..) (#​83)

v0.12.4

Compare Source

  • implement builtin map-module functions map.deep-merge(..) and map.deep-remove(..)

v0.12.3

No visible changes for users of the grass crate

Exposes more internals of the grass_compiler crate, allowing for custom functions implemented in rust to be accessed from Sass.

v0.12.2

  • implement an import cache, significantly improving the performance of certain pathological cases
  • slash lists can be compared using ==
  • resolve rounding errors for extremely large numbers
  • potentially breaking bug fixes in certain color functions
    • color.hwb(..) no longer allows whiteness or blackness values outside the bounds 0% to 100%
    • scale-color(..) no longer allows the $hue argument. previously it was ignored
    • scale-color(..), change-color(..), and adjust-color(..) no longer allow invalid combinations of arguments or unknown named arguments
    • many functions that accept hues now convert other angle units (rad, grad, turn) to deg. previously the unit was ignored
  • improve compressed output of selectors containing newlines and rgba(..) colors
  • improve resolution of imports containing explicit file extensions, e.g. @import "foo.scss"
  • fix bug in which whitespace was not emitted between + or - inside calc for compressed output (#​71 by @​ModProg)

v0.12.1

  • add grass::include! macro to make it easier to include CSS at compile time
  • various optimizations improving the bootstrap benchmark by ~30% and the bulma benchmark by ~15%
  • improve error message for complex units in calculations
  • more accurate formatting of named arguments in arglists when passed to inspect(..)
  • more accurate formatting of nested lists with different separators when passed to inspect(..)
  • support $whiteness and $blackness as arguments to scale-color(..)
  • more accurate list separator from join(..)
  • resolve unicode edge cases in str-index(..)
  • more robust support for @forward prefixes
  • allow strings as the first argument to call(..)
  • bug fix: add back support for the $css argument to get-function(..). regressed in 0.12.0

v0.12.0

  • complete rewrite of parsing, evaluation, and serialization steps
  • implement the indented syntax
  • implement plain CSS imports
  • support for custom properties
  • represent all numbers as f64, rather than using arbitrary precision
  • implement media query merging
  • implement builtin function keywords
  • implement Infinity and -Infinity
  • implement the @forward rule
  • feature complete parsing of @supports conditions
  • support media queries level 4
  • implement calculation simplification and the calculation value type
  • implement builtin fns calc-args, calc-name
  • add builtin math module variables $epsilon, $max-safe-integer, $min-safe-integer, $max-number, $min-number
  • allow angle units turn and grad in builtin trigonometry functions
  • implement @at-root conditions
  • implement @import conditions
  • remove dependency on num-rational and beef
  • support control flow inside declaration blocks
    For example:
a {
  -webkit-: {
    @&#8203;if 1 == 1 {
      scrollbar: red;
    }
  }
}

will now emit

a {
  -webkit-scrollbar: red;
}
  • always emit rgb/rgba/hsl/hsla for colors declared as such in expanded mode
  • more efficiently compress colors in compressed mode
  • treat :where the same as :is in extension
  • support "import-only" files
  • treat @elseif the same as @else if
  • implement division of non-comparable units and feature complete support for complex units
  • support 1 arg color.hwb()
hwittenborn/hw-msg (hw-msg)

v0.4.1

Compare Source

v0.4.0

Compare Source

indexmap-rs/indexmap (indexmap)

v2.12.0

Compare Source

  • MSRV: Rust 1.82.0 or later is now required.
  • Updated the hashbrown dependency to 0.16 alone.
  • Error types now implement core::error::Error.
  • Added pop_if methods to IndexMap and IndexSet, similar to the
    method for Vec added in Rust 1.86.

v2.11.4

Compare Source

  • Updated the hashbrown dependency to a range allowing 0.15 or 0.16.

v2.11.3

Compare Source

  • Make the minimum serde version only apply when "serde" is enabled.

v2.11.2

Compare Source

  • Switched the "serde" feature to depend on serde_core, improving build
    parallelism in cases where other dependents have enabled "serde/derive".

v2.11.1

Compare Source

  • Added a get_key_value_mut method to IndexMap.
  • Removed the unnecessary Ord bound on insert_sorted_by methods.

v2.11.0

Compare Source

  • Added insert_sorted_by and insert_sorted_by_key methods to IndexMap,
    IndexSet, and VacantEntry, like customizable versions of insert_sorted.
  • Added is_sorted, is_sorted_by, and is_sorted_by_key methods to
    IndexMap and IndexSet, as well as their Slice counterparts.
  • Added sort_by_key and sort_unstable_by_key methods to IndexMap and
    IndexSet, as well as parallel counterparts.
  • Added replace_index methods to IndexMap, IndexSet, and VacantEntry
    to replace the key (or set value) at a given index.
  • Added optional sval serialization support.

v2.10.0

Compare Source

  • Added extract_if methods to IndexMap and IndexSet, similar to the
    methods for HashMap and HashSet with ranges like Vec::extract_if.
  • Added more #[track_caller] annotations to functions that may panic.

v2.9.0

Compare Source

  • Added a get_disjoint_mut method to IndexMap, matching Rust 1.86's
    HashMap method.
  • Added a get_disjoint_indices_mut method to IndexMap and map::Slice,
    matching Rust 1.86's get_disjoint_mut method on slices.
  • Deprecated the borsh feature in favor of their own indexmap feature,
    solving a cyclic dependency that occurred via borsh-derive.

v2.8.0

Compare Source

  • Added indexmap_with_default! and indexset_with_default! to be used with
    alternative hashers, especially when using the crate without std.
  • Implemented PartialEq between each Slice and []/arrays.
  • Removed the internal rustc-rayon feature and dependency.

v2.7.1

Compare Source

  • Added #[track_caller] to functions that may panic.
  • Improved memory reservation for insert_entry.

v2.7.0

Compare Source

  • Added methods Entry::insert_entry and VacantEntry::insert_entry, returning
    an OccupiedEntry after insertion.

v2.6.0

Compare Source

  • Implemented Clone for map::IntoIter and set::IntoIter.
  • Updated the hashbrown dependency to version 0.15.

v2.5.0

Compare Source

  • Added an insert_before method to IndexMap and IndexSet, as an
    alternative to shift_insert with different behavior on existing entries.
  • Added first_entry and last_entry methods to IndexMap.
  • Added From implementations between IndexedEntry and OccupiedEntry.

v2.4.0

Compare Source

  • Added methods IndexMap::append and IndexSet::append, moving all items from
    one map or set into another, and leaving the original capacity for reuse.

v2.3.0

Compare Source

  • Added trait MutableEntryKey for opt-in mutable access to map entry keys.
  • Added method MutableKeys::iter_mut2 for opt-in mutable iteration of map
    keys and values.

v2.2.6

Compare Source

  • Added trait MutableValues for opt-in mutable access to set values.

v2.2.5

Compare Source

  • Added optional borsh serialization support.

v2.2.4

Compare Source

  • Added an insert_sorted method on IndexMap, IndexSet, and VacantEntry.
  • Avoid hashing for lookups in single-entry maps.
  • Limit preallocated memory in serde deserializers.

v2.2.3

Compare Source

  • Added move_index and swap_indices methods to IndexedEntry,
    OccupiedEntry, and RawOccupiedEntryMut, functioning like the existing
    methods on IndexMap.
  • Added shift_insert methods on VacantEntry and RawVacantEntryMut, as
    well as shift_insert_hashed_nocheck on the latter, to insert the new entry
    at a particular index.
  • Added shift_insert methods on IndexMap and IndexSet to insert a new
    entry at a particular index, or else move an existing entry there.

v2.2.2

Compare Source

  • Added indexing methods to raw entries: RawEntryBuilder::from_hash_full,
    RawEntryBuilder::index_from_hash, and RawEntryMut::index.

v2.2.1

Compare Source

  • Corrected the signature of RawOccupiedEntryMut::into_key(self) -> &'a mut K,
    This a breaking change from 2.2.0, but that version was published for less
    than a day and has now been yanked.

v2.2.0

Compare Source

  • The new IndexMap::get_index_entry method finds an entry by its index for
    in-place manipulation.

  • The Keys iterator now implements Index<usize> for quick access to the
    entry's key, compared to indexing the map to get the value.

  • The new IndexMap::splice and IndexSet::splice methods will drain the
    given range as an iterator, and then replace that range with entries from
    an input iterator.

  • The new trait RawEntryApiV1 offers opt-in access to a raw entry API for
    IndexMap, corresponding to the unstable API on HashSet as of Rust 1.75.

  • Many IndexMap and IndexSet methods have relaxed their type constraints,
    e.g. removing K: Hash on methods that don't actually need to hash.

  • Removal methods remove, remove_entry, and take are now deprecated
    in favor of their shift_ or swap_ prefixed variants, which are more
    explicit about their effect on the index and order of remaining items.
    The deprecated methods will remain to guide drop-in replacements from
    HashMap and HashSet toward the prefixed methods.

v2.1.0

Compare Source

  • Empty slices can now be created with map::Slice::{new, new_mut} and
    set::Slice::new. In addition, Slice::new, len, and is_empty are
    now const functions on both types.

  • IndexMap, IndexSet, and their respective Slices all have binary
    search methods for sorted data: map binary_search_keys and set
    binary_search for plain comparison, binary_search_by for custom
    comparators, binary_search_by_key for key extraction, and
    partition_point for boolean conditions.

v2.0.2

Compare Source

  • The hashbrown dependency has been updated to version 0.14.1 to
    complete the support for Rust 1.63.

v2.0.1

Compare Source

  • MSRV: Rust 1.63.0 is now supported as well, pending publication of
    hashbrown's relaxed MSRV (or use cargo --ignore-rust-version).

v2.0.0

Compare Source

  • MSRV: Rust 1.64.0 or later is now required.

  • The "std" feature is no longer auto-detected. It is included in the
    default feature set, or else can be enabled like any other Cargo feature.

  • The "serde-1" feature has been removed, leaving just the optional
    "serde" dependency to be enabled like a feature itself.

  • IndexMap::get_index_mut now returns Option<(&K, &mut V)>, changing
    the key part from &mut K to &K. There is also a new alternative
    MutableKeys::get_index_mut2 to access the former behavior.

  • The new map::Slice<K, V> and set::Slice<T> offer a linear view of maps
    and sets, behaving a lot like normal [(K, V)] and [T] slices. Notably,
    comparison traits like Eq only consider items in order, rather than hash
    lookups, and slices even implement Hash.

  • IndexMap and IndexSet now have sort_by_cached_key and
    par_sort_by_cached_key methods which perform stable sorts in place
    using a key extraction function.

  • IndexMap and IndexSet now have reserve_exact, try_reserve, and
    try_reserve_exact methods that correspond to the same methods on Vec.
    However, exactness only applies to the direct capacity for items, while the
    raw hash table still follows its own rules for capacity and load factor.

  • The Equivalent trait is now re-exported from the equivalent crate,
    intended as a common base to allow types to work with multiple map types.

  • The hashbrown dependency has been updated to version 0.14.

  • The serde_seq module has been moved from the crate root to below the
    map module.

iovxw/ksni (ksni)

v0.3.1

Compare Source

  • Fixed compatibility of Orientation with org.kde.StatusNotifierItem, previously only with org.freedesktop.StatusNotifierItem
  • Documentation updates

v0.3.0

Replaced dbus-rs with zbus, got async

All methods of TrayService have been moved into TrayMethods. TrayMethods is a trait that is
implemented by default for all T where T: Tray (RFC #​445), so you no longer need to wrap a
Tray with TrayService to call the spawn method.

The new spawn method returns a Result<Handle, Error>. Any error during the tray creation is
returned directly. If the spawn succeeds, tray is created. No longer need to impl watcher_online
and watcher_offline to handle the result of a spawned tray.

The run method has been removed, no one's actually using it. With this change, we don't have to
provide a separate method to return the Handle, it can be returned directly by the spawn method.

Big thanks to @​lunixbochs

Added

  • TrayMethods
  • OfflineReason, see below #Changed
  • Orientation
  • blocking::* for blocking API
  • Tray::MENU_ON_ACTIVATE for the org.freedesktop.StatusNotifierItem.ItemIsMenu

Removed

  • TrayService, see the new TrayMethods
  • Deprecated methods in 0.2

Changed

  • All methods that should be async are now async
  • Tray now requires Send. If you are using .spawn, this won't affect you.
  • Tray::id is a required method now, default impl removed
  • Tray::scroll(&mut self, i32, &str) -> Tray::scroll(&mut self, i32, Orientation)
  • Tray::watcher_offline have a new OfflineReason argument
  • Tray::watcher_online or Tray::watcher_offline won't be called immediately after tray started,
    now only be called after the state of watcher changed
rust-lang-nursery/lazy-static.rs (lazy_static)

v1.5.0

Compare Source

trevyn/librclone (librclone)

v0.9.0

  • Update rclone to v1.69.0
  • MSRV is now 1.82

v0.8.0

  • Update rclone to v1.66.0
  • MSRV is now 1.70

v0.7.0

  • Update rclone to v1.65.0
nix-rust/nix (nix)

v0.30.1

Compare Source

Fixed

v0.30.0

Compare Source

Added
  • Add socket option IPV6_PKTINFO for BSDs/Linux/Android, also
    IPV6_RECVPKTINFO for DragonFlyBSD
    (#​2113)
  • Add fcntl's F_PREALLOCATE constant for Apple targets.
    (#​2393)
  • Improve support for extracting the TTL / Hop Limit from incoming packets
    and support for DSCP (ToS / Traffic Class).
    (#​2425)
  • Add socket option IP_TOS (nix::sys::socket::sockopt::IpTos) IPV6_TCLASS
    (nix::sys::socket::sockopt::Ipv6TClass) on Android/FreeBSD
    (#​2464)
  • Add SeekData and SeekHole to Whence for hurd and apple targets
    (#​2473)
  • Add From trait implementation between SocketAddr and Sockaddr,
    Sockaddr6 (#​2474)
  • Added wrappers for posix_spawn API
    (#​2475)
  • Add the support for Emscripten.
    (#​2477)
  • Add fcntl constant F_RDADVISE for Apple target
    (#​2480)
  • Add fcntl constant F_RDAHEAD for Apple target
    (#​2482)
  • Add F_LOG2PHYS and F_LOG2PHYS_EXT for Apple target
    (#​2483)
  • MAP_SHARED_VALIDATE was added for all linux targets. & MAP_SYNC was added
    for linux with the exclusion of mips architecures, and uclibc
    (#​2499)
  • Add getregs()/getregset()/setregset() for Linux/musl/aarch64
    (#​2502)
  • Add FcntlArgs F_TRANSFEREXTENTS constant for Apple targets
    (#​2504)
  • Add MapFlags::MAP_STACK in sys::man for netbsd
    (#​2526)
  • Add support for libc::LOCAL_PEERTOKEN in getsockopt.
    (#​2529)
  • Add support for syslog, openlog, closelog on all unix.
    (#​2537)
  • Add the TCP_FUNCTION_BLK sockopt, on FreeBSD.
    (#​2539)
  • Implements Into<OwnedFd> for PtyMaster/Fanotify/Inotify/SignalFd/TimerFd
    (#​2548)
  • Add MremapFlags::MREMAP_DONTUNMAP to sys::mman::mremap for linux target.
    (#​2555)
  • Added sockopt_impl! to the public API. It's now possible for users to
    define
    their own sockopts without needing to make a PR to Nix.
    (#​2556)
  • Add the TCP_FUNCTION_ALIAS sockopt, on FreeBSD.
    (#​2558)
  • Add sys::mman::MmapAdvise MADV_PAGEOUT, MADV_COLD, MADV_WIPEONFORK,
    MADV_KEEPONFORK for Linux and Android targets
    (#​2559)
  • Add socket protocol Sctp, as well as MSG_NOTIFICATION for non-Android
    Linux targets. (#​2562)
  • Added from_owned_fd constructor to EventFd
    (#​2563)
  • Add sys::mman::MmapAdvise MADV_POPULATE_READ, MADV_POPULATE_WRITE for
    Linux and Android targets
    (#​2565)
  • Added from_owned_fd constructor to
    PtyMaster/Fanotify/Inotify/SignalFd/TimerFd
    (#​2566)
  • Added FcntlArg::F_READAHEAD for FreeBSD target
    (#​2569)
  • Added sockopt::LingerSec for Apple targets
    (#​2572)
  • Added sockopt::EsclBind for solarish targets
    (#​2573)
  • Exposed the std::os::fd::AsRawFd trait method for
    nix::sys::fanotify::Fanotify struct
    (#​2575)
  • Add support for syslog's setlogmask on all unix.
    (#​2579)
  • Added Fuchsia support for ioctl.
    (#​2580)
  • Add sys::socket::SockProtocol::EthIp,
    sys::socket::SockProtocol::EthIpv6,
    sys::socket::SockProtocol::EthLoop
    (#​2581)
  • Add OpenHarmony target into CI and Update documents.
    (#​2599)
  • Added the TcpMaxSeg setsockopt option for apple targets
    (#​2603)
  • Add FilAttach and FilDetach to socket::sockopt for Illumos
    (#​2611)
  • Add PeerPidfd (SO_PEERPIDFD) to socket::sockopt for Linux
    (#​2620)
  • Added socket::sockopt::AttachReusePortCbpf for Linux
    (#​2621)
  • Add ptrace::syscall_info for linux/glibc
    (#​2627)
Changed
  • Module sys/signal now adopts I/O safety
    (#​1936)
  • Change the type of the name argument of memfd_create() from &CStr to
    <P: NixPath>(name: &P) (#​2431)
  • Public interfaces in fcntl.rs and dir.rs now use I/O-safe types.
    (#​2434)
  • Module sys/stat now adopts I/O safety.
    (#​2439)
  • Module unistd now adopts I/O safety.
    (#​2440)
  • Module sys/fanotify now adopts I/O safety
    (#​2443)
  • Socket option IpTos has been renamed to Ipv4Tos, the old symbol is
    deprecated since 0.30.0 (#​2465)
  • Rename Flags EventFlag to EvFlags, and MemFdCreateFlag to MFdFlags
    (#​2476)
  • Made nix::sys::socket::UnknownCmsg public and more readable
    (#​2520)
  • recvmsg: take slice for cmsg_buffer instead of Vec
    (#​2524)
  • linkat: allow distinct types for path arguments
    (#​2582)
Fixed
  • Disable unsupported signals on sparc-linux
    (#​2454)
  • Fix cmsg_len() return type on OpenHarmony
    (#​2456)
  • The ns argument of sys::prctl::set_timerslack() should be of type
    c_ulong (#​2505)
  • Properly exclude NUL characters from OSStrings returned by getsockopt.
    (#​2557)
  • Fixes the build on OpenHarmony
    (#​2587)
Removed

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 force-pushed the renovate/all branch 4 times, most recently from 2a91e2c to 8329af2 Compare May 6, 2023 04:50
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from cda1f2a to e9720b1 Compare May 15, 2023 18:45
@renovate renovate bot force-pushed the renovate/all branch 7 times, most recently from 24a9944 to a0847f3 Compare May 25, 2023 14:53
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 4248291 to 5ec5d7d Compare May 27, 2023 23:11
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from 371a190 to 5e17018 Compare June 7, 2023 07:34
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 25b7b3c to ace24a6 Compare June 17, 2023 05:44
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 519a3b8 to 51e1828 Compare June 24, 2023 05:48
@renovate renovate bot force-pushed the renovate/all branch 6 times, most recently from a516a45 to 90e0368 Compare July 24, 2023 05:14
@renovate renovate bot force-pushed the renovate/all branch 6 times, most recently from 1564e93 to 02f4af7 Compare August 1, 2023 01:27
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from 6e8f46c to ea0f9f2 Compare August 9, 2023 19:22
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from 28ae705 to 9d60347 Compare August 19, 2023 08:52
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 7ebf7f2 to 6d11e14 Compare August 27, 2023 08:54
@renovate
Copy link
Contributor Author

renovate bot commented May 5, 2024

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package indexmap@1.9.3 --precise 2.2.6
    Updating crates.io index
error: failed to select a version for the requirement `indexmap = "^1.0"`
candidate versions found which didn't match: 2.2.6
location searched: crates.io index
required by package `rocket v0.5.0-rc.3`
    ... which satisfies dependency `rocket = "^0.5.0-rc.2"` (locked to 0.5.0-rc.3) of package `celeste v0.8.1 (/tmp/renovate/repos/github/hwittenborn/celeste)`
perhaps a crate was updated and forgotten to be re-vendored?

@renovate
Copy link
Contributor Author

renovate bot commented Sep 1, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package sea-orm-migration@0.10.7 --precise 1.1.19
error: package ID specification `sea-orm-migration@0.10.7` did not match any packages
help: there are similar package ID specifications:

  sea-orm-migration@1.1.14

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants