fix(deps): update rust crate time to v0.3.36 #7
No reviewers
Labels
No labels
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
bug
duplicate
enhancement
help wanted
invalid
question
renovate-bot
renovate-security
security
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: LibrePages/libconfig#7
Loading…
Reference in a new issue
No description provided.
Delete branch "renovate/time-0.x-lockfile"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
0.3.17
->0.3.36
Release Notes
time-rs/time (time)
v0.3.36
Compare Source
# Fixed
FormatItem
can be used as part of an import path. See #675 for details.v0.3.35
Compare Source
Added
Duration::checked_neg
ext::InstantExt
, which provides methods for usingtime::Duration
withstd::time::Instant
Changed
Instant
is deprecated. It is recommended to usestd::time::Instant
directly, importingtime::ext::InstantExt
for interoperability withtime::Duration
.FormatItem
has been renamed toBorrowedFormatItem
, avoiding confusion withOwnedFormatItem
.An alias has been added for backwards compatibility.
Fixed
Duration
is documented correctly. The previous documentationcontained an off-by-one error.
v0.3.34
Compare Source
Fixed
Computing the local offset on Windows works again. It was broken in some cases in v0.3.32 and
v0.3.33.
v0.3.33
Compare Source
Fixed
Builds targeting
wasm32-unknown-unknown
now work again.v0.3.32
Compare Source
Added
Date::replace_ordinal
PrimitiveDateTime::replace_ordinal
OffsetDateTime::replace_ordinal
OffsetDateTime
as a Unix timestamp with subsecond precision for serde.time::serde::timestamp::milliseconds
time::serde::timestamp::microseconds
time::serde::timestamp::nanoseconds
Changed
Duration::time_fn
is deprecated.v0.3.31
Compare Source
Added
OffsetDateTime::new_in_offset
OffsetDateTime::new_utc
Changed
UtcOffset
has been expanded from ±23:59:59 to ±25:59:59. This is to supportthe full POSIX range while permitting infallible negation.
v0.3.30
Compare Source
Added
powerfmt::smart_display::SmartDisplay
has been added for the main types in the library. Theseimplementations ensure that values follow the requested fill, width, and alignment when using
format!
or similar macros.Display
is implemented in terms ofSmartDisplay
.Fixed
NumericalDuration
orNumericalStdDuration
.v0.3.29
Compare Source
Added
Niche value optimization for
Date
has been added. BothDate
andOption<Date>
are four bytes.Unit conversions have been added. It is now possible to write
Second::per(Day)
, which returnsthe number of seconds in one day. See the types in the [
time::convert
module][time::convert module] for moreinformation.
Changed
--cfg unsound_local_offset
has been removed.#![feature(no_coverage)]
was previously used internally for code coverage. It is no longer used,so it has been removed.
modifier::OffsetHour
has been changed. This was unintentionally changed inv0.3.17 and went unnoticed until now. The sign is now only present if needed by default, as was
the case previously. This does not affect any situation where
format_description!
orformat_description::parse
is used.Fixed
std::time::Duration
to/from anOffsetDateTime
will not result ininteger overflow internally. It will still panic if the result is out of range.
v0.3.28
Compare Source
Added
Iso8601
format description have been added. Thisavoids the need to manually configure the format.
[end]
component has been added. This is ignored during formatting, but is used to indicatethe end of input when parsing. If any input remains after this component, an error is returned.
This is useful when using the
[first]
component, as it avoids the need to reorder variants.Changed
versions of MacOS do not meet the requirements for the exemption.
UnexpectedTrailingCharacters
error variant has been moved toParseFromDescription
. Allpreviously-existing locations of this variant have been deprecated and will no longer be returned.
v0.3.27
Compare Source
This sets the
serde
dependency requirement to>= 1.0.184
where the binaries have been removed.v0.3.26
Compare Source
This release contains only a single change.
serde
is required to be a version prior to 1.0.171.This is due to the decision by the maintainer of
serde
to include pre-built binaries that areexecuted without the end user's knowledge. As of the time of publishing, the included binary has not
even been reproduced. This is a security risk, and the
time
project strongly opposes thisdecision. While this may break some users' builds due to conflicting versions, it is a necessary
step to ensure the security.
v0.3.25
Compare Source
Fixed
Time::replace_milliseconds
would panic on some out-of-range values. This hasbeen fixed.
v0.3.24
Compare Source
Added
subsecond
component is taken into account when parsing theunix_timestamp
component. Ifdata is conflicting, the
subsecond
value takes precedence.Time
with only thehour
component is now supported. Theminute
andsecond
, andsubsecond
components are assumed to be zero.Changed
Parsed
has been improved.before being rejected in the final step. Now, invalid values are rejected as soon as they are
encountered. This affects the error variant returned, which may cause minor breakage for any code
(incorrectly) relying on the exact error variant.
Time
, an error is returned if components are present but not consecutive. Forexample, if
hours
andseconds
are present,minutes
will not be assumed to be zero.Fixed
Duration::checked_div
could return a slightly incorrect result in somecases. This has been fixed.
v0.3.23
Compare Source
Added
Date::next_occurrence
Date::prev_occurrence
Date::nth_next_occurrence
Date::nth_prev_occurrence
Weekday::nth_prev
Month::nth_next
Month::nth_prev
Changed
The minimum supported Rust version policy has been updated. See the README for
details.
Fixed
Duration::abs
correctly returnsDuration::MAX
when near the minimum value. The nanosecondsvalue was previously incorrect.
in some cases.
v0.3.22
Compare Source
Added
OffsetDateTime::checked_to_offset
v0.3.21
Compare Source
Added
time::serde::format_description!
macro.Weekday::nth_next
Changed
v0.3.20
Compare Source
Changed
offset no longer require a check that the program is single-threaded. This currently includes
MacOS, illumos, and NetBSD.
Added
[ignore]
component in format descriptions. Acount
modifier is required, indicating the numberof bytes to ignore when parsing.
[unix_timestamp]
component in format descriptions. This is currently only usable withOffsetDateTime
. Users can choose between seconds, milliseconds, microseconds, and nanoseconds,and whether the sign is mandatory or optional.
Fixed
v0.3.19
Compare Source
Fixed
This includes the update to the
format_description!
macro, which was supposed to be included in0.3.18.
v0.3.18
Compare Source
Changed
Added
[first]
and[optional]
items can now be included in format descriptions. To parse this atruntime, you must use the
format_description::parse_owned
method.format_description::parse_borrowed
the previous, officially unsupported
RUSTFLAGS="--cfg unsound_local_offset"
. End users may calltime::util::local_offset::set_soundness(time::util::local_offset::Soundness::Unsound)
. Thismethod is
unsafe
because it enables undefined behavior if its safety requirements are notupheld. Note that libraries must not set this to
Unsound
, as it is impossible for a libraryto guarantee end users uphold the required invariants.
Fixed
even if the sign indicated otherwise.
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.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.