Open
Conversation
8234025 to
92ff404
Compare
9d0256f to
bb43714
Compare
580cac2 to
c216cbe
Compare
a05ae6e to
a2edb1e
Compare
52e3d1b to
ea9a5e5
Compare
ea9a5e5 to
e4b6617
Compare
e2e80b6 to
6e9a6e2
Compare
d2248c9 to
1e7bcbf
Compare
b8e60eb to
6e24518
Compare
c0cf56f to
df9da0c
Compare
725bb4a to
9e13ac0
Compare
9e13ac0 to
d119bd3
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:
1.0.15→1.0.160.1.15→0.1.210.2.15→0.2.191.0.21→1.0.221.0.26→1.0.270.6.21→0.6.241.0.106→1.0.1150.15.9→0.15.11Release Notes
dtolnay/automod (automod)
v1.0.16Compare Source
nvzqz/divan (divan)
v0.1.21Compare Source
Fixed
Divan::skip_exactbehaved incorrectly inv0.1.19.Changed
sacking the people who have just been sacked have been sacked.
v0.1.20Compare Source
Fixed
Divan::skip_regexaccidentally droppedregex_lite::Regexand behaved incorrectly in
v0.1.19.v0.1.19Compare Source
Fixed
cargo-nextest] no longer skips benchmarks with argument parameters ([#75]).Changed
v0.1.18Compare Source
Added
Support for [
cargo-nextest] running benchmarks as tests.[
prelude] module for simplifying imports of [#[bench]][bench_attr],[
#[bench_group]][bench_group_attr], [black_box], [black_box_drop],[
AllocProfiler], [Bencher], and [Divan].Support
wasiandemscriptentargets.v0.1.17Compare Source
Changed
Set [MSRV] to 1.80 for [
LazyLock] and newsize_ofprelude import.Reduced thread pool memory usage by many kilobytes by using rendezvous
channels instead of array-based channels.
v0.1.16Compare Source
Added
Thread pool for reusing threads across multi-threaded benchmarks. The result
is that when running Divan benchmarks under a sampling profiler, the
profiler's output will be cleaner and easier to understand. ([#37])
Track the maximum number of allocations during a benchmark.
Changed
Make private
Arg::gettrait method not takeself, so that text editorsdon't recommend using it. ([#59])
Cache
BenchOptionsusingLazyLockinstead ofOnceLock, saving space andsimplifying the implementation.
BurntSushi/jiff (jiff)
v0.2.19Compare Source
===================
This is a small release with a performance optimization (with respect to doing
heavily contended arithmetic on
Zonedvalues) and a bug fix for a panicthat can occur when using
%2sinstrftime.Enhancements:
Avoid cloning
TimeZonefor consuming operations onZoned.Bug fixes:
Fix a panic in
timestamp.strftime("%2s").v0.2.18Compare Source
===================
This release ships a sizeable refactor to the RFC 2822, RFC 9110, RC
3339, RFC 9557, ISO 8601 and friendly format printers. Specifically,
they are now all monomorphic internally (instead of being generic over
jiff::fmt::Write) and write to uninitialized buffers. This improvesruntime performance (sometimes dramatically so), and to a more modest
degree, decreases binary size and improves compile times.
This release also includes a bug fix where
DateTime::MIN.to_zoned(..)could panic.
Enhancements:
Improve runtime performance and binary size of RFC 2822 printer.
Tweak behavior of printing min/max offsets in RFC 2822 and Temporal printers.
Export fallible constructors for
jiff::SignedDuration.Improve runtime performance and binary size of the "friendly" duration printer.
Improve runtime performance and binary size of the Temporal ISO 8601 duration
printer.
Improve runtime performance and binary size of the Temporal ISO 8601 datetime
printer.
Improve runtime performance and binary size of Jiff's
strftimeimplementation.
Fix a bug where time zone lookups for
civil::DateTime::MINcould panic.v0.2.17Compare Source
===================
This release contains binary size improvements to Jiff, more succinct error
messages and some new minor APIs.
While Jiff 1.0 is overdue, I've been doing a lot of experimenting with
improving Jiff's binary size and compile times. In particular, I want to spend
time doing this before Jiff 1.0 so that we don't box ourselves into a corner.
(For example, some binary size improvements may require minor API breaking
changes.)
In this release, Jiff has switched to structured error handling internally
in an effort to provide error predicates and also hopefully improve binary
sizes and compile times. Overall this didn't have as big of an impact on
binary sizes or compile times as I was hoping. I did take this opportunity to
make Jiff's error messages a bit more succinct. In many cases, this involved
de-duplicating some aspects of error messages and omitting user provided input
in the messages. If you feel like there is a significant decrease in error
message quality that isn't easily amended by callers providing additional
context themselves, please open an issue.
This release also updates Jiff's bundled copy of the [IANA Time Zone Database]
to
2025c. See the2025crelease announcement for more details.Enhancements:
Add
Display,FromStr,SerializeandDeserializetrait implementationsfor
jiff::civil::ISOWeekDate. These all use the ISO 8601 week date format.Add some basic predicates to
jiff::Errorfor basic error introspection.#454:
Switch to structured error handling internally.
#457,
#458:
Various improvements to binary size.
v0.2.16Compare Source
===================
This release contains a number of enhancements and bug fixes that have accrued
over the last few months. Most are small polishes. A couple of the bug fixes
apply to panics that could occur when parsing invalid
TZstrings or invalidstrptimeformat strings.Also, parsing into a
Spanshould now be much faster (for both the ISO 8601and "friendly" duration formats).
Enhancements:
Add Serde helpers for (de)serializing
std::time::Durationvalues.Add
SubandAddtrait implementations forZoned(in addition to thealready existing trait implementations for
&Zoned).Add
BrokenDownTime::set_meridiemand ensure it overrides the hour whenformatting.
Switch dependency on
serdetoserde_core. This should help speed upcompilation times in some cases.
Add new
Zoned::seriesAPI, making it consistent with the same API on otherdatetime types.
When
lenientmode is enabled forstrftime, Jiff will no longer error whenthe formatting string contains invalid UTF-8.
Formatting of
%yand%gno longer fails based on the specific year value.Parsing of
%sis now a bit more consistent with other fields. Moreover,BrokenDownTime::{to_timestamp,to_zoned}will now prefer timestamps parsedwith
%sover any other fields that have been parsed.Allow parsing just a
%sinto aZonedvia theEtc/Unknowntime zone.Bug fixes:
Fix a bug where
2087-12-31T23:00:00Zin theAfrica/Casablancatime zonecould not be round-tripped (because its offset was calculated incorrectly as
a result of not handling "permanent DST" POSIX time zones).
Fix a panic that occurred when parsing an empty string as a POSIX time zone.
Fix a panic that could occur when parsing
%:viastrptimeAPIs.Update some parts of the documentation to indicate that
TimeZone::unknown()is a fallback for
TimeZone::system()(instead of thejiff 0.1behavior ofusing
TimeZone::UTC).Fix a panicking bug when reading malformed TZif data.
Fix a panicking bug when parsing century (
%C) viastrptime.Fixed bugs with parsing durations like
-9223372036854775808sand
-PT9223372036854775808S.Performance:
Parsing into
SpanorSignedDurationis now a fair bit faster in some cases.dtolnay/rustversion (rustversion)
v1.0.22Compare Source
dtolnay/semver (semver)
v1.0.27Compare Source
assert-rs/snapbox (snapbox)
v0.6.24Compare Source
v0.6.23Compare Source
v0.6.22Compare Source
dtolnay/trybuild (trybuild)
v1.0.115Compare Source
v1.0.114Compare Source
v1.0.113Compare Source
target-tripledependency to v1v1.0.112Compare Source
v1.0.111Compare Source
v1.0.110Compare Source
v1.0.109Compare Source
v1.0.108Compare Source
v1.0.107Compare Source
Configuration
📅 Schedule: Branch creation - "before 5am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, 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.