Open
Conversation
26d2687 to
487fbf8
Compare
aac80ff to
21f01b4
Compare
5bb7347 to
6e64bc3
Compare
d55e584 to
5485ec9
Compare
d993a94 to
2a9a9a6
Compare
c828db6 to
e4a84c5
Compare
ebb3789 to
4817cd8
Compare
6043541 to
dc2439b
Compare
2dce059 to
6c205b8
Compare
df76f64 to
7388c91
Compare
5528a06 to
7b34b11
Compare
7fb2db5 to
faed03d
Compare
ea2efe2 to
673ba5c
Compare
aca87a6 to
ae556de
Compare
bcca52b to
80878db
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
v4.7.3→v4.8.0v4.2.2→v4.3.10.1.88→0.1.894.5.40→4.6.14.5.54→4.6.20.16.0→0.16.30.2.34→0.2.36v3.6.0→v3.7.00.3.31→0.3.320.3.2→0.3.30.4.1→0.4.20.18.0→0.18.40.2.174→0.2.1850.9.3→0.9.51.11.1→1.12.31.0.219→1.0.2281.0.140→1.0.1490.8.0→0.9.03.20.0→3.27.01.46.1→1.52.10.1.17→0.1.180.4.4→0.4.50.1.41→0.1.441.17.0→1.23.1Release Notes
JamesIves/github-pages-deploy-action (JamesIves/github-pages-deploy-action)
v4.8.0Compare Source
What's Changed
Build 🔧
Full Changelog: JamesIves/github-pages-deploy-action@v4...v4.8.0
v4.7.6Compare Source
What's Changed
Build 🔧
Full Changelog: JamesIves/github-pages-deploy-action@v4...v4.7.6
v4.7.5Compare Source
What's Changed
Bug Fixes 🐛
Build 🔧
Full Changelog: JamesIves/github-pages-deploy-action@v4...v4.7.5
v4.7.4Compare Source
What's Changed
Bug Fixes 🐛
Build 🔧
Other Changes
Full Changelog: JamesIves/github-pages-deploy-action@v4...v4.7.4
actions/checkout (actions/checkout)
v4.3.1Compare Source
What's Changed
Full Changelog: actions/checkout@v4...v4.3.1
v4.3.0Compare Source
What's Changed
New Contributors
Full Changelog: actions/checkout@v4...v4.3.0
dtolnay/async-trait (async-trait)
v0.1.89Compare Source
clap-rs/clap (clap)
v4.6.1Compare Source
v4.6.0Compare Source
Compatibility
v4.5.61Compare Source
Internal
v4.5.60Compare Source
Fixes
v4.5.59Compare Source
Fixes
Command::ignore_errorsno longer masks help/version on subcommandsv4.5.58Compare Source
v4.5.57Compare Source
Fixes
.value_terminator("--")caused problems with an argument with.last(true)v4.5.56Compare Source
Fixes
v4.5.55Compare Source
Fixes
value_terminator("--")and escapes (--) where./foo -- barmeans the first arg is empty, rather than escaping future argsv4.5.54Compare Source
Fixes
[default]to its own paragraph whenPossibleValue::helpis present in--helpv4.5.53Compare Source
Features
default_values_if,default_values_ifsv4.5.52Compare Source
Fixes
args_conflicts_with_subcommandsconflicts with anArgGroupv4.5.51Compare Source
Fixes
ArgAction::Countv4.5.50Compare Source
Features
CowwhereStringand&strare acceptedv4.5.49Compare Source
Fixes
v4.5.48Compare Source
Documentation
typed_derivecookbook entryv4.5.47Compare Source
Features
impl FromArgMatches for ()impl Args for ()impl Subcommand for ()impl FromArgMatches for Infallibleimpl Subcommand for InfallibleFixes
clapv4.5.46Compare Source
Features
StyledStr::push_strv4.5.45Compare Source
Fixes
ValueEnumvariants now use the full doc comment, not summary, forPossibleValue::helpv4.5.44Compare Source
Features
Command::mut_subcommandsv4.5.43Compare Source
Fixes
v4.5.42Compare Source
Fixes
--helpv4.5.41Compare Source
Features
Styles::contextandStyles::context_valueto customize the styling of[default: value]like notes in the--helpconsole-rs/console (console)
v0.16.3Compare Source
What's Changed
std::sync::OnceLockinstead ofonce_cellby @cuviper in #281v0.16.2Compare Source
What's Changed
v0.16.1Compare Source
What's Changed
rodrimati1992/const_format_crates (const_format)
v0.2.36Breaking change: bumped Minimum Supported Rust Version to Rust 1.71. This change is motivated by
quoteincreasing its MSRV to 1.71.Now the
"rust_1_64"feature is effectively always enabled, so these items are always enabled:const_format::str_splitDeprecated these items because their replacements now take constant time to run:
const_format::fmt::StrWriter::as_bytes_alt: superceeded byas_bytesconst_format::fmt::StrWriter::as_str_alt: superceeded byas_strconst_format::fmt::StrWriterMut::as_bytes_alt: superceeded byas_bytesconst_format::fmt::StrWriterMut::as_str_alt: superceeded byas_strconst_format::utils::slice_up_to_len_alt: superceeded byslice_up_to_lenChanged these methods from being conditionally const (by requiring the
"rust_1_64"feature to be const) to being unconditionally const:const_format::fmt::StrWriter::as_bytesconst_format::fmt::StrWriter::as_strconst_format::fmt::StrWriterMut::as_bytesconst_format::fmt::StrWriterMut::as_strChanged this method to be
const:const_format::AsciiStr::as_strFixed nightly 2026-04-09 compatibility when
cargo update -Z minimal-versionsis used by bumpingkonstinternal dependency to"0.2.20"versionv0.2.35Breaking change: bumped Minimum Supported Rust Version to Rust 1.60. This change is motivated by
quoteincreasing its MSRV to 1.60.docker/setup-qemu-action (docker/setup-qemu-action)
v3.7.0Compare Source
Full Changelog: docker/setup-qemu-action@v3.6.0...v3.7.0
rust-lang/futures-rs (futures)
v0.3.32Compare Source
ready!macro in favor ofstd::task::ready!added in Rust 1.64 (#2925)pin_mut!macro in favor ofstd::pin::pin!added in Rust 1.68 (#2929)FuturesOrdered::clear(#2927)mpsc::*Receiver::recv(#2947)mpsc::*Receiver::try_recvand deprecatempsc::*Receiver::::try_next(#2944)FusedStreamforsink::With(#2948)no_stdsupport forshared(#2868)Mutex::new()const (#2956)#[clippy::has_significant_drop]to guards (#2967)pin-utils(#2929)num_cpus(#2946)rust-lang/glob (glob)
v0.3.3Compare Source
djc/hostname (hostname)
v0.4.2: 0.4.2Compare Source
What's Changed
windows-linkdependency0.2by @MarijnS95 in #330.4.2by @MarijnS95 in #34console-rs/indicatif (indicatif)
v0.18.4Compare Source
What's Changed
v0.18.3Compare Source
What's Changed
v0.18.2Compare Source
What's Changed
v0.18.1Compare Source
What's Changed
rust-lang/libc (libc)
v0.2.185Compare Source
Added
espidf_picolibccfg for picolibcO_*flag values (#5035)sprintf,snprintf, and thescanffamily (#5024)Fixed
time64types from musl symbol redirects (#5040)POLLconstants fromc_shorttoc_int(#5045)v0.2.184Compare Source
MSRV
This release increases the MSRV of
libcto 1.65. With this update, you can now always use thecore::ffi::c_*types withlibcdefinitions, sincelibchas been changed to reexport fromcorerather than redefining them. (This usually worked before but had edge cases.)(#4972)
Added
IP_MINTTLto bsd (#5026)TIOCM_DSR(#5031)xfilestructe and file descriptor types (#5002)struct ethhdr(#4239)struct ifinfomsg(#5012)max_align_tfor riscv64 (#5029)CLOCK_constants (#5020)_SC_HOST_NAME_MAX(#5004)flockandF_*LCKconstants (#4043)_SC_*sysconf constants (#5023)Deprecated
The remaining fixed-width integer aliases,
__uint128_t,__uint128,__int128_t, and__int128,have been deprecated. Use
i128andu128instead. (#4343)Fixed
DT_*constants (#5034)RTLD_NOLOAD, some TCP constants (#5025)Padding::new(<zeroed>)rather thanPadding::uninit()(#5036)Changed
struct ptrace_syscall_info(#4966)core::ffiinteger types rather than redefining (#5015)F_DUPFD,IP, andTCPconstants to match relibc (#4990)v0.2.183Compare Source
Added
SOMAXCONN(#4993)name_to_handle_atandopen_by_handle_at(#4988)kinfo_file,kinfo_pcb, and related constants (#4985)kinfo_fileand related constants (#4991)Defaultfortimevalandtimespec(#4976)Fixed
time_tsupport andmusl_v1_2_3(#4992)Padding(#4997)sigaction.sa_flagstoc_int(#4986)blkcnt_ttype (#4994)v0.2.182Compare Source
Added
tgkill(#4970)RENAME_NOREPLACE(#4968)renameat2(#4968)v0.2.181Compare Source
Added
MADV_ZERO(#4924)makedev,major, andminor(#4928)PTRACE_SET_SYSCALL_INFO(#4933)max_align_t(#4927)_CS_PATH(#4956)ppoll(#4957)Fixed
dev_t(#4928)tc{g,s}etattr(#4938)cf{g,s}et{i,o}speedon mips{32,64}r6 (#4938)ptrace_thread_state(#4947)PTHREAD_MUTEX_{NORMAL, RECURSIVE}(#4943)Changed
SO_*constants (#4937)v0.2.180Compare Source
Added
Fixed
CMSG_NXTHDR(#4903)CMSG_NXTHDR(#4903)mcontexttype definitions (#4886)__SIZEOF_PTHREAD_COND_Ton non-L4Re uclibc (#4915)netlinkmodule to resolve build errors (#4915)v0.2.179Compare Source
With this release, we now have unstable support for 64-bit
time_ton 32-bitplatforms with both Musl and Glibc. Testing is appreciated!
For now, these can be enabled by setting environment variables during build:
Note that the exact configuration will change in the future. Setting the
MUSL_V1_2_3variable also enables some newer API unrelated totime_t.Added
XCASE(#4847)NAME_MAX(#4888)AT_EXECVE_CHECK(#4422)SUN_LENmacro (#4269)getitimerandsetitimer(#4890)pthread_tryjoin_nandpthread_timedjoin_np(#4887)time_ton 32-bit platforms (#4463)LINK_STATE_*definitions fromsys/net/if.h(#4751)Fixed
cf{g,s}et{i,o}speed(#4882)pthread(#4479)CPU_SETSIZEon musl 1.2+ (#4865)stat/stat64(#4463)SIGSTKSZ/MINSIGSTKSZ(#4884)PT_{GET,SET}FPREGS,_REG_TIPDR, and_REG_{LR,SP}(#4899)if_msghdralignment (#4902)siginfo_tlayout on 32-bit platforms (#4904)pthread_spin_tto allow arch redefinition. (#4899)Changed
pthreadstruct fields private (#4876)Paddingtype (#4862)Removed
RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64(#4865)v0.2.178Compare Source
Added
issetugid(#4744)__psw_t/fprefset_t/Configuration
📅 Schedule: (UTC)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.