chore(deps): update all dependencies #43
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "renovate/all"
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.1.1
->0.1.6
0.5.9
->0.5.15
0.4.26
->0.4.38
0.6.2
->0.6.3
0.2.22
->0.13.0
1690401410
->1701123940
0.6.8
->0.6.12
6.4.2
->6.7.1
3.3.1
->3.4.15
1.31.0
->1.41.1
Release Notes
catppuccin/tailwindcss (@catppuccin/tailwindcss)
v0.1.6
Compare Source
v0.1.5
Compare Source
v0.1.4
Compare Source
v0.1.3
Compare Source
v0.1.2
Compare Source
tailwindlabs/tailwindcss-typography (@tailwindcss/typography)
v0.5.15
Compare Source
Fixed
v0.5.14
Compare Source
Fixed
v0.5.13
Compare Source
Fixed
<br>
elements contained in an<li>
in FF (#350)v0.5.12
Compare Source
Added
v0.5.11
Compare Source
Added
prose-kbd
modifier (#340)Fixed
<figcaption>
and<video>
(#339)v0.5.10
Compare Source
Fixed
<figcaption>
and<pre>
(#313)not-prose
elements in addition to their children (#301)<picture>
styles (#314)prose-invert
when used with colors in light mode (#315)<kbd>
styles (#317)<dl>
,<dt>
,<dd>
) styles (#316)chronotope/chrono (chrono)
v0.4.38
Compare Source
This release bring a ca. 20% improvement to the performance of the formatting code, and a convenient
days_since
method for theWeekday
type.Chrono 0.4.38 also removes the long deprecated
rustc-serialize
feature. Support forrustc-serialize
will be soft-destabilized in the next Rust edition. Removing the feature will not break existing users of the feature; Cargo will just not update dependents that rely on it to newer versions of chrono.In chrono 0.4.36 we made an accidental breaking change by switching to
derive(Copy)
forDateTime
instead of a manual implementation. It is reverted in this release.Removals
rustc-serialize
feature (#1548, thanks @workingjubilee)Additions
Weekday::days_since
(#1249, based on #216 by @clarfonthey)TimeDelta::checked_mul
andTimeDelta::checked_div
(#1565, thanks @Zomtir)Fixes
Copy
forDateTime
if offset isCopy
(#1573)Internal
test_encodable_json
andtest_decodable_json
functions (#1550)cargo hack check
(#1553)Thanks to all contributors on behalf of the chrono team, @djc and @pitdicker!
v0.4.37
Compare Source
Version 0.4.36 introduced an unexpected breaking change and was yanked. In it
LocalResult
was renamed toMappedLocalTime
to avoid the impression that it is aResult
type were some of the results are errors. For backwards compatibility a type alias with the old name was added.As it turns out there is one case where a type alias behaves differently from the regular enum: you can't import enum variants from a type alias with
use chrono::LocalResult::*
. With 0.4.37 we make the new nameMappedLocalTime
the alias, but keep using it in function signatures and the documentation as much as possible.See also the release notes of chrono 0.4.36 from yesterday for the yanked release.
v0.4.36
Compare Source
This release un-deprecates the methods on
TimeDelta
that were deprecated with the 0.4.35 release because of the churn they are causing for the ecosystem.New is the
DateTime::with_time()
method. As an example of when it is useful:Additions
DateTime::with_time()
(#1510)Deprecations
TimeDelta
deprecations (#1543)TimeStamp::timestamp_subsec_nanos
, which was missed in the 0.4.35 release (#1486)Documentation
Internal
Copy
andSend
impls (#1492, thanks @erickt)NaiveDate
unit tests (#1500, thanks @Zomtir)LocalResult
toTzResolution
, add alias (#1501)NaiveDate::from_yof
(#1518)DateTime::date_naive
andNaiveDate::diff_months
(#1530)unwrap
in UnixLocal
type (#1533)Thanks to all contributors on behalf of the chrono team, @djc and @pitdicker!
v0.4.35
Compare Source
Most of our efforts have shifted to improving the API for a 0.5 release, for which cleanups and refactorings are landing on the 0.4.x branch.
The most significant changes in this release are two sets of deprecations.
We deprecated all timestamp-related methods on
NaiveDateTime
. The reason is that a timestamp is defined to be in UTC. TheNaiveDateTime
type doesn't know the offset from UTC, so it was technically wrong to have these methods. The alternative is to use the similar methods on theDateTime<Utc>
type, or from theTimeZone
trait.Converting from
NaiveDateTime
toDateTime<Utc>
is simple with.and_utc()
, and in the other direction with.naive_utc()
.The panicking constructors of
TimeDelta
(the new name of theDuration
type) are deprecated. This was the last part of chrono that defaulted to panicking on error, dating from before rust 1.0.A nice change is that
NaiveDate
now includes a niche. So nowOption<NaiveDate>
,Option<NaiveDateTime>
andOption<DateTime<Tz>>
are the same size as their base types.format::Numeric
andformat::Fixed
are marked asnon_exhaustive
. This will allow us to improve our formatting and parsing support, and we have reason to believe this breaking change will have little to no impact on users.Additions
DateTime::{from_timestamp_micros, from_timestamp_nanos}
(#1234)Parsed
(#1465)Deprecations
NaiveDateTime
(#1473)TimeDelta
(#1450)Changes/fixes
NonZeroI32
insideNaiveDate
(#1207)format::Numeric
andformat::Fixed
asnon_exhaustive
(#1430)Parsed
fixes to error values (#1439)overflowing_naive_local
inDateTime::checked_add*
(#1333)Parsed::set_*
(#1465)Documentation
Parsed
(#1439)Internal
internals
module (#1428, #1429, #1431, #1432, #1433, #1438)x86_64-unknown-illumos
instead of Solaris (#1437)cargo hack check
on Linux (#1442)parse_internal
(#1459)SerdeError
(#1458)NaiveDate::from_isoywd
a bit (#1464)Thanks to all contributors on behalf of the chrono team, @djc and @pitdicker!
v0.4.34
Compare Source
Notable changes
Duration
type toTimeDelta
. This removes the confusion between chrono's type and the laterDuration
type in the standard library. It will remain available under the old name as a type alias for compatibility.Local
is rewritten. The new version avoids panics when the date is outside of the range supported by windows (the years 1601 to 30828), and gives more accurate results during DST transitions.Display
format ofTimeDelta
is modified to conform better to ISO 8601. Previously it converted all values greater than 24 hours to a value with days. This is not correct, as doing so changes the duration from an 'accurate' to a 'nominal' representation to use ISO 8601 terms.Fixes
TimeDelta::milliseconds
(#1385, thanks @danwilliams)DurationExceedsTimestamp
inDurationRound
(#1403, thanks @joroKr21)%X
(https://github.com/chronotope/pure-rust-locales/pull/12, #1420)GetTimeZoneInformationForYear
(#1017)Additions
TimeDelta::try_milliseconds
(#1385, thanks @danwilliams)TimeDelta::new
(#1337)StrftimeItems::{parse, parse_to_owned}
and more documentation (#1184)format::Locale
(via https://github.com/chronotope/pure-rust-locales/pull/8)Changes
Duration
toTimeDelta
, add type alias (#1406)TimeDelta
methods const (#1337)NaiveDate
,NaiveWeek
,NaiveTime
andNaiveDateTime
const where possible (#1337)DateTime
const where possible (#1400)Display
format ofTimeDelta
conform better to ISO 8601 (#1328)Documentation
timestamp_micros
's Example doc (#1338 via #1386, thanks @emikitas)TimeDelta
constructors (#1385, thanks @danwilliams)Internal
main
branch, work on 0.5 happens in the0.5.x
branch (#1390, #1402).impl Arbitrary for DateTime
and set up CI test (#1336)codecov/codecov-action
from 3 to 4 (#1404)-0000
offset (#1411)TOO_LONG
error out ofparse_internal
(#1419)Thanks to all contributors on behalf of the chrono team, @djc and @pitdicker!
v0.4.33
Compare Source
This release fixes the broken docrs.rs build of chrono 0.4.32.
What's Changed
rkyv
feature implysize_32
(#1383)Duration::hours()
exception (#1384, thanks @danwilliams)v0.4.32
Compare Source
In this release we shipped part of the effort to reduce the number of methods that could unexpectedly panic, notably for the
DateTime
andDuration
types.Chrono internally stores the value of a
DateTime
in UTC, and transparently converts it to the local value as required. For example adding a second to aDateTime
needs to be done in UTC to get the correct result, but adding a day needs to be done in local time to be correct. What happens when the value is near the edge of the representable range, and the implicit conversions pushes it beyond the representable range? Many methods could panic on such inputs, including formatting the value forDebug
output.In chrono 0.4.32 the range of
NaiveDate
,NaiveDateTime
andDateTime
is made slightly smaller. This allows us to always do the implicit conversion, and in many cases return the expected result. Specifically the range is now from January 1, -262144 until December 31, 262143, one year less on both sides than before. We expect this may trip up tests if you hardcoded theMIN
andMAX
dates.Duration
had a similar issue. The range of this type was pretty arbitrary picked to match the range of ani64
in milliseconds. Negating ani64::MIN
pushes a value out of range, and in the same way negatingDuration::MIN
could push it out of our defined range and cause a panic. This turns out to be somewhat common and hidden behind many layers of abstraction. We adjusted the type to have a minimum value of-Duration::MAX
instead and prevent the panic case.Other highlights:
Duration
gained new fallible initialization methods.rkyv
.NaiveDateTime
are now const.DateTime
const in a future release.Complete list of changes:
Fixes
TimeZone::from_local_datetime
(#1071)DateTime
getters and setters (#1317, #1329)Additions
NaiveDateTime::checked_(add|sub)_offset
(#1313)DateTime::to_utc
(#1325)Default
forDuration
(#1327)Duration::subsec_nanos
(#1327)try_*
builders toDuration
(#1327)AddAssign
andSubAssign
forDuration
(#1327)NaiveDateTime
const where possible (#1286)clock
feature intoclock
andnow
(#1343, thanks @mmastrac)From<NaiveDate>
forNaiveDateTime
(#1355, thanks @dcechano)NaiveDateTime::from_timestamp_nanos
(#1357, thanks @Ali-Mirghasemi)Months::num_months()
andnum_years()
(#1373, thanks @danwilliams)DateTime<Utc>::from_timestamp_millis
(#1374, thanks @xmakro)Changes
Duration::MIN.abs()
(adjustDuration::MIN
by 1 millisecond) (#1334)Deprecations
format
functions (#1306)Documentation
doc_auto_cfg
(#1305, #1326)Add
/Sub
impls and useexpect
(#1316)TimeZone::datetime_from_str
(#1342, thanks @tmccombs)Datelike
impl forDateTime
(#1376, thanks @ElectrifyPro)Rkyv support
Archived*
types inrkyv
module (#1304)Archived*
types (#1271, thanks @Awpteamoose)Changes to unstable features
unstable-locales
imply thealloc
feature (#1307)format::{format_localized, format_item_localized}
(#1311)write_rfc2822_inner
, don't localize (#1322)Internal
DateTime::with_*
(#1309)*_DAYS_FROM_YEAR_0
calculation (#1312)NaiveTime::overflowing_(add|sub)_offset
(#1310)DateTime::overflowing_(add|sub)_offset
(#1069)set env LC_ALL
(#1315, thanks @jtmoon79)deny.toml
(#1320)with: node-version
(#1352, thanks @jtmoon79)toml
job (#1371, thanks @gibbz00)Thanks to all contributors on behalf of the chrono team, @djc and @pitdicker!
v0.4.31
Compare Source
Another maintenance release.
It was not a planned effort to improve our support for UNIX timestamps, yet most PRs seem related to this.
Deprecations
timestamp_nanos
in favor of the non-panickingtimestamp_nanos_opt
(#1275)Additions
DateTime::<Utc>::from_timestamp
(#1279, thanks @demurgos)TimeZone::timestamp_micros
(#1285, thanks @emikitas)DateTime<Tz>::timestamp_nanos_opt
andNaiveDateTime::timestamp_nanos_opt
(#1275)UNIX_EPOCH
constants (#1291)Fixes
This makes many methods a little more strict:
NaiveTime::from_hms_milli
NaiveTime::from_hms_milli_opt
NaiveTime::from_hms_micro
NaiveTime::from_hms_micro_opt
NaiveTime::from_hms_nano
NaiveTime::from_hms_nano_opt
NaiveTime::from_num_seconds_from_midnight
NaiveTime::from_num_seconds_from_midnight_opt
NaiveDate::and_hms_milli
NaiveDate::and_hms_milli_opt
NaiveDate::and_hms_micro
NaiveDate::and_hms_micro_opt
NaiveDate::and_hms_nano
NaiveDate::and_hms_nano_opt
NaiveDateTime::from_timestamp
NaiveDateTime::from_timestamp_opt
TimeZone::timestamp
TimeZone::timestamp_opt
NaiveDateTime::timestamp_nanos_opt
(#1294, thanks @crepererum)Documentation
Internal
__doctest
feature anddoc_comment
dependency (#1276)actions/checkout
from 3 to 4 (#1280)NaiveDate::add_days
for small values (#1214)pure-rust-locales
to 0.7.0 (#1288, thanks @jeremija wo did good improvements onpure-rust-locales
)Thanks to all contributors on behalf of the chrono team, @djc and @pitdicker!
v0.4.30
Compare Source
In this release, we have decided to swap out the
chrono::Duration
type (which has been a re-export of time 0.1Duration
type) with our own definition, which exposes a strict superset of thetime::Duration
API. This helps avoid warnings about the CVE-2020-26235 and RUSTSEC-2020-0071 advisories for downstream users and allows us to improve theDuration
API going forward.While this is technically a SemVer-breaking change, we expect the risk of downstream users experiencing actual incompatibility to be exceedingly limited (see our analysis of public code using a crater-like experiment), and not enough justification for the large ecosystem churn of a 0.5 release. If you have any feedback on these changes, please let us know in #1268.
Additions
NaiveDate::leap_year
(#1261)Documentation
Timelike::num_seconds_from_midnight
is a simple mapping (#1255)Relation between chrono and time 0.1
Rust first had a
time
module added tostd
in its 0.7 release. It later moved tolibextra
, and then to alibtime
library shipped alongside the standard library. In 2014 work on chrono started in order to provide a full-featured date and time library in Rust. Some improvements from chrono made it into the standard library; notably,chrono::Duration
was included asstd::time::Duration
(rust#15934) in 2014.In preparation of Rust 1.0 at the end of 2014
libtime
was moved out of the Rust distro and into thetime
crate to eventually be redesigned (rust#18832, rust#18858), like thenum
andrand
crates. Of course chrono kept its dependency on thistime
crate.time
started re-exportingstd::time::Duration
during this period. Later, the standard library was changed to have a more limited unsignedDuration
type (rust#24920, RFC 1040), while thetime
crate kept the full functionality withtime::Duration
.time::Duration
had been a part of chrono's public API.By 2016
time
0.1 lived under therust-lang-deprecated
organisation and was not actively maintained (time#136). chrono absorbed the platform functionality andDuration
type of thetime
crate in chrono#478 (the work started in chrono#286). In order to preserve compatibility with downstream crates depending ontime
andchrono
sharing aDuration
type, chrono kept depending on time 0.1. chrono offered the option to opt out of thetime
dependency by disabling theoldtime
feature (swapping it out for an effectively similar chrono type). In 2019, @jhpratt took over maintenance on thetime
crate and released what amounts to a new crate astime
0.2.Security advisories
In November of 2020 CVE-2020-26235 and RUSTSEC-2020-0071 were opened against the
time
crate. @quininer had found that calls tolocaltime_r
may be unsound (chrono#499). Eventually, almost a year later, this was also made into a security advisory against chrono as RUSTSEC-2020-0159, which had platform code similar totime
.On Unix-like systems a process is given a timezone id or description via the
TZ
environment variable. We need this timezone data to calculate the current local time from a value that is in UTC, such as the time from the system clock.time
0.1 and chrono used the POSIX functionlocaltime_r
to do the conversion to local time, which reads theTZ
variable.Rust assumes the environment to be writable and uses locks to access it from multiple threads. Some other programming languages and libraries use similar locking strategies, but these are typically not shared across languages. More importantly, POSIX declares modifying the environment in a multi-threaded process as unsafe, and
getenv
in libc can't be changed to take a lock because it returns a pointer to the data (see rust#27970 for more discussion).Since version 4.20 chrono no longer uses
localtime_r
, instead using Rust code to query the timezone (from theTZ
variable or viaiana-time-zone
as a fallback) and work with data from the system timezone database directly. The code for this was forked from the tz-rs crate by @x-hgg-x. As such, chrono now respects the Rust lock when reading theTZ
environment variable. In general, code should avoid modifying the environment.Removing time 0.1
Because time 0.1 has been unmaintained for years, however, the security advisory mentioned above has not been addressed. While chrono maintainers were careful not to break backwards compatibility with the
time::Duration
type, there has been a long stream of issues from users inquiring about the time 0.1 dependency with the vulnerability. We investigated the potential breakage of removing the time 0.1 dependency in chrono#1095 using a crater-like experiment and determined that the potential for breaking (public) dependencies is very low. We reached out to those few crates that did still depend on compatibility with time 0.1.As such, for chrono 0.4.30 we have decided to swap out the time 0.1
Duration
implementation for a local one that will offer a strict superset of the existing API going forward. This will prevent most downstream users from being affected by the security vulnerability in time 0.1 while minimizing the ecosystem impact of semver-incompatible version churn.Thanks to all contributors on behalf of the chrono team, @djc and @pitdicker!
v0.4.29
Compare Source
This release fixes a panic introduced in chrono 0.4.27 in
FromStr<DateTime<Utc>>
(#1253).Chrono now has a Discord channel.
Fixes
parse_rfc3339_relaxed
(#1254)Deprecations
TimeZone::datetime_from_str
(#1251)Documentation
FromStr
forWeekday
andMonth
(#1226, thanks @wfraser)Internal improvements
i686
andwasm32-wasi
(#1237)This allows us to upgrade the criterion dependency to 5.1 without changing our MSRV.
Thanks to all contributors on behalf of the chrono team, @djc and @pitdicker!
v0.4.28
Compare Source
This release fixes a test failure on 32-bit targets introduced with 0.4.27, see https://github.com/chronotope/chrono/issues/1234.
v0.4.27
Compare Source
This release bumps the MSRV from 1.56 to 1.57. This allows us to take advantage of the panicking in const feature. In this release most methods on
NaiveDate
andNaiveTime
are made const,NaiveDateTime
and others will follow in a later release.The parser for the
%+
formatting specifier and theRFC3339
formatting item is switched from a strict to a relaxed parser (see https://github.com/chronotope/chrono/pull/1145). This matches the existing documentation, and the parser used byDateTime::from_str
. If you need to validate the input, consider usingDateTime::from_rfc3339
.Deprecations
DateTime::{from_local, from_utc}
(https://github.com/chronotope/chrono/pull/1175)Additions
DateTime::signed_duration_since
take argument withBorrow
(https://github.com/chronotope/chrono/pull/1119)PartialOrd
forMonth
(https://github.com/chronotope/chrono/pull/999, thanks @Munksgaard)Ord
andEq
for types which already derivePartialOrd
andPartialEq
(https://github.com/chronotope/chrono/pull/1128, thanks @totikom)FusedIterator
forNaiveDateDaysIterator
andNaiveDateWeeksIterator
(https://github.com/chronotope/chrono/pull/1134)NaiveDateDaysIterator
andNaiveDateWeeksIterator
public (https://github.com/chronotope/chrono/pull/1134)FromStr
forFixedOffset
(https://github.com/chronotope/chrono/pull/1157, thanks @mcronce)Tz::Offset: Display
requirement fromDateTime::to_rfc*
(https://github.com/chronotope/chrono/pull/1160)StrftimeItems
withunstable-locales
work without allocating (https://github.com/chronotope/chrono/pull/1152)NaiveDate::from_ymd_opt
const (https://github.com/chronotope/chrono/pull/1172, thanks @kamadorueda)Error
trait forParseWeekdayError
andParseMonthError
(https://github.com/chronotope/chrono/pull/539, thanks @mike-kfed)NaiveTime
const, update MSRV to 1.57 (https://github.com/chronotope/chrono/pull/1080)NaiveDate
const (https://github.com/chronotope/chrono/pull/1205)core::time::Duration
onDateTime
types (https://github.com/chronotope/chrono/pull/1229)Fixes
timestamp_nanos
panics on overflow in release builds (https://github.com/chronotope/chrono/pull/1123)offset_from_local_datetime
forwasm_bindgen
(https://github.com/chronotope/chrono/pull/1131)%s
to be a timestamp in UTC (https://github.com/chronotope/chrono/pull/1136)%#z
(https://github.com/chronotope/chrono/pull/1140, thanks @domodwyer)%c
and%r
(https://github.com/chronotope/chrono/pull/1165)unstable-locales
feature (https://github.com/chronotope/chrono/pull/1168)Offset
'sDebug
impl when serializingDateTime
(https://github.com/chronotope/chrono/pull/1035)NaiveTime::from_str
(https://github.com/chronotope/chrono/pull/1181)android-tzdata
if theclock
feature is not enabled (https://github.com/chronotope/chrono/pull/1220, thanks @AlexTMjugador)Documentation
NaiveTime
doc typo (https://github.com/chronotope/chrono/pull/1146, thanks @zachs18)Datelike::with_*
(https://github.com/chronotope/chrono/pull/1199)Utc::now
andLocal::now
(https://github.com/chronotope/chrono/pull/1192)Weekday::num_days_from_monday
(https://github.com/chronotope/chrono/pull/1193)Internal improvements
DateTime::to_rfc_*
optimizations (https://github.com/chronotope/chrono/pull/1200)format/formatting.rs
(https://github.com/chronotope/chrono/pull/1156)saturating_abs
(https://github.com/chronotope/chrono/pull/1124)Makefile
(https://github.com/chronotope/chrono/pull/1133)wasm-bindgen
feature (https://github.com/chronotope/chrono/pull/1131)try_verify_against_date_command
(https://github.com/chronotope/chrono/pull/1161)no_std
(https://github.com/chronotope/chrono/pull/1166)test_parse
(https://github.com/chronotope/chrono/pull/1170)#![deny(dead_code)]
(https://github.com/chronotope/chrono/pull/1187)test_date_extreme_offset
(https://github.com/chronotope/chrono/pull/1195)features-check
(https://github.com/chronotope/chrono/pull/1216)Thanks to all contributors on behalf of the chrono team, @djc and @pitdicker!
eyre-rs/eyre (color-eyre)
v0.6.3
Compare Source
dagger/dagger (dagger-sdk)
v0.13.7
Added
expect
arg forContainer.withExec
by @jedevc in https://github.com/dagger/dagger/pull/8466This enum arg allows specifying valid return statuses for which the command
can return without failing immediately.
Container.exitCode
field to get the exit code of the lastwithExec
by @jedevc in https://github.com/dagger/dagger/pull/8466Changed
The new policies attempt to co-operate with other applications using the disk
and will adjust its cache usage accordingly.
Previously, when a function chain in
dagger call
ended in an object, we'dprint all functions that return a simple value and don't have any arguments.
Now, only object fields will be included, not all functions.
Fixed
withExec
s using theExperimentalPrivilegedNesting
flag by @sipsma in https://github.com/dagger/dagger/pull/8776What to do next?
v0.11.9
Compare Source
Fixed
What to do next?
v0.9.8
Compare Source
🔥 Breaking Changes
Added
What to do next?
v0.3.3
Compare Source
v0.3.2
Compare Source
v0.3.1
Compare Source
v0.3.0
Compare Source
FortAwesome/Font-Awesome (font-awesome)
v6.7.1
Compare Source
Change log available at https://fontawesome.com/docs/changelog/
v6.7.0
Compare Source
Change log available at https://fontawesome.com/docs/changelog/
v6.6.0
Compare Source
Change log available at https://fontawesome.com/docs/changelog/
v6.5.2
Compare Source
Change log available at https://fontawesome.com/docs/changelog/
v6.5.1
Compare Source
Change log available at https://fontawesome.com/docs/changelog/
v6.5.0
Compare Source
Change log available at https://fontawesome.com/docs/changelog/
tailwindlabs/tailwindcss (tailwindcss)
v3.4.15
Compare Source
boxShadow
theme configuration allows arrays (#14856)selection:*
variant works in Chrome 131 (#15003)v3.4.14
Compare Source
Fixed
display: none
on elements that usehidden="until-found"
(#14625)v3.4.13
Compare Source
Fixed
v3.4.12
Compare Source
Fixed
@apply
with utilities that use@defaults
works with rules defined in the base layer when usingoptimizeUniversalDefaults
(#14427)v3.4.11
Compare Source
Fixed
anchor-size(…)
in arbitrary values (#14393)v3.4.10
Compare Source
Fixed
v3.4.9
Compare Source
Fixed
vendor
foldersv3.4.8
Compare Source
Fixed
v3.4.7
Compare Source
Fixed
data-*
andaria-*
modifiers are always quoted in the generated CSS (#14037)v3.4.6
Compare Source
Fixed
Changed
:is()
wrapping rules when using an important selector (#13900)v3.4.5
Compare Source
Fixed
var()
injection for anchor properties (#13826)blur(0px)
forbackdrop-blur-none
andblur-none
utilities (#13830).mts
and.cts
config file detection (#13940)px-1
unnecessarily when using utilities likepx-1.5
(#13959)-webkit-backdrop-filter
forbackdrop-*
utilities (#13997)v3.4.4
Compare Source
Fixed
<alpha-value>
placeholders in a single color definition (#13740)has-*
,group-has-*
, andpeer-has-*
variants (#13770){col,row}-{start,end}
utilities (#13781)v3.4.3
Compare Source
Fixed
v3.4.2
Compare Source
Fixed
0,0,1
for button and input Preflight rules (#12735)(
,)
,[
or]
in the file path (#12715):has
rules when usingexperimental.optimizeUniversalDefaults
(#12736)mix-blend-plus-darker
utility (#12923)import.meta.url
in config files (#13322)xx-large
and remove doublex-large
absolute size (#13324)@apply
a class that uses nesting (#13325)important
configuration (#13353)@apply
works correctly with pseudo elements (#13379)v3.4.1
Compare Source
Fixed
calc()
(#12704)class
dark mode strategy (#12717)Added
selector
andvariant
strategies for dark mode (#12717)Changed
rtl
andltr
variants on same element asdir
attribute (#12717)v3.4.0
Compare Source
Tailwind CSS v3.4 has arrived! Check out the announcement post for a guided tour through all of the highlights.
Added
svh
,lvh
, anddvh
values to defaultheight
/min-height
/max-height
theme (#11317)has-*
variants for:has(...)
pseudo-class (#11318)text-wrap
utilities includingtext-balance
andtext-pretty
(#11320, #12031)opacity
scale to include all steps of 5 (#11832)html
styles to include shadow DOM:host
pseudo-class (#11200)grid-rows-*
utilities from 1–6 to 1–12 (#12180)size-*
utilities (#12287)min-w-*
,min-h-*
, andmax-w-*
utilities (#12300)forced-color-adjust
utilities (#11931)forced-colors
variant (#11694, #12582)appearance-auto
utility (#12404)float
andclear
utilities (#12480)*
variant for targeting direct children (#12551)Changed
sans
font-family stack (#11748)rtl
,ltr
,forced-colors
, anddark
variants (#12584)v3.3.7
Compare Source
Fixed
v3.3.6
Compare Source
Fixed
@config
in CSS when watching via the CLI (#12327)resolveConfig
(#12272)font-feature-settings
formono
are included in Preflight (#12342)@layer
rule (#12508)v3.3.5
Compare Source
Fixed
-
incalc()
expression (#12283)v3.3.4
Compare Source
Fixed
calc()
-like functions (#11686)calc()
normalisation in nestedtheme()
calls (#11705)content
optional for presets in TypeScript types (#11730)too many open files
error (#12079):not(…)
when nested in an at-rule (#12105)Node16
module resolution (#12097)@apply
(#12112)tailwindcss/nesting
(#12269)jiti
,fast-glob
, andbrowserlist
dependencies (#11550)var
injection for properties that accept a<dashed-ident>
(#12236)v3.3.3
Compare Source
Fixed
theme()
insidecalc()
when there are no spaces around operators (#11157)repeating-conic-gradient
is detected as an image (#11180):is
by default (#11345)group
andpeer
variants (#11454)Added
aria-busy
utility (#10966)Changed
<dialog>
elements in preflight (#11069)v3.3.2
Compare Source
Fixed
to
position of gradient when using implicit transparent colors (#11002)@tailwindcss/oxide
doesn't leak in the stable engine (#10988)theme(spacing[5])
calls with bracket notation in arbitrary properties work (#11039)Changed
tokio-rs/tokio (tokio)
v1.41.1
: Tokio v1.41.1Compare Source
1.41.1 (Nov 7th, 2024)
Fixed
net
requirement fornet::UdpSocket
in docs (#6938)TcpStream
internal comment (#6944)v1.41.0
: Tokio v1.41.0Compare Source
1.41.0 (Oct 22th, 2024)
Added
global_queue_depth
(#6854, #6918)SocketAddr
(#6868)watch::Sender::sender_count
(#6836)mpsc::Receiver::blocking_recv_many
(#6867)Id
apis (#6793, #6891)Added (unstable)
LocalRuntime
(#6808)Changed
#[must_use]
toNotified
(#6828)watch
cooperative (#6846)broadcast::Receiver
cooperative (#6870)cfg_fs
forwasi
target (#6822)Fixed
Documented
OwnedFd
withAsyncFd
(#6821)AsyncFd
methods (#6890)join
andtry_join
(#6814, #6841)TcpSocket::set_nodelay
andTcpSocket::nodelay
(#6840)v1.40.0
: Tokio v1.40.0Compare Source
1.40.0 (August 30th, 2024)
Added
util::SimplexStream
(#6589)Command::process_group
(#6731){TrySendError,SendTimeoutError}::into_inner
(#6755)JoinSet::join_all
(#6784)Added (unstable)
Builder::{on_task_spawn, on_task_terminate}
(#6742)Changed
write_all_buf
when possible (#6724)UnwindSafe
(#6783)Sleep
andBatchSemaphore
instrumentation explicit roots (#6727)NonZeroU64
fortask::Id
(#6733)JoinError
(#6753)#[must_use]
toJoinHandle::abort_handle
(#6762)Documented
[build]
section doesn't go in Cargo.toml (#6728)select!
(#6774)v1.39.3
: Tokio v1.39.3Compare Source
1.39.3 (August 17th, 2024)
This release fixes a regression where the unix socket api stopped accepting the abstract socket namespace. (#6772)
v1.39.2
: Tokio v1.39.2Compare Source
1.39.2 (July 27th, 2024)
This release fixes a regression where the
select!
macro stopped accepting expressions that make use of temporary lifetime extension. (#6722)v1.39.1
: Tokio v1.39.1Compare Source
1.39.1 (July 23rd, 2024)
This release reverts "time: avoid traversing entries in the time wheel twice" because it contains a bug. (#6715)
v1.39.0
: Tokio v1.39.0Compare Source
1.39.0 (July 23rd, 2024)
Added
AsyncSeek
forEmpty
(#6663)num_alive_tasks
(#6619, #6667)Command::as_std_mut
(#6608)watch::Sender::same_channel
(#6637){Receiver,UnboundedReceiver}::{sender_strong_count,sender_weak_count}
(#6661)Default
forwatch::Sender
(#6626)Clone
forAbortHandle
(#6621)consume_budget
(#6622)Changed
ReadBuf::put_slice()
(#6629)copy_bidirectional
andcopy
(#6532)num_cpus
withavailable_parallelism
(#6709)block_on
(#6692)IntoFuture
withtimeout
(#6666)IntoFuture
withjoin!
andselect!
(#6710)Fixed
Interval
(#6612)Added (unstable)
unhandled_panic
behavior for#[tokio::main]
and#[tokio::test]
(#6593)spawned_tasks_count
(#6114)worker_park_unpark_count
(#6696)Documented
tokio::io::stdout
documentation (#6674)join.rs
andtry_join.rs
(#6641)unhandled_panic
(#6660)JoinSet::try_join_next
when all tasks are running (#6671)v1.38.1
: Tokio v1.38.1Compare Source
1.38.1 (July 16th, 2024)
This release fixes the bug identified as (#6682), which caused timers not
to fire when they should.
Fixed
wake_up
while holding all the locks of sharded time wheels (#6683)v1.38.0
: Tokio v1.38.0Compare Source
This release marks the beginning of stabilization for runtime metrics. It
stabilizes
RuntimeMetrics::worker_count
. Future releases will continue tostabilize more metrics.
Added
File::create_new
(#6573)copy_bidirectional_with_sizes
(#6500)AsyncBufRead
forJoin
(#6449)Clone
forNamedPipeInfo
(#6586)Notify::notify_last
(#6520)mpsc::Receiver::{capacity,max_capacity}
(#6511)split
method to the semaphore permit (#6472, #6478)tokio::task::join_set::Builder::spawn_blocking
(#6578)Changed
#[tokio::test]
append#[test]
at the end of the attribute list (#6497)blocking_threads
count (#6551)RuntimeMetrics::worker_count
(#6556)lifo_slot
inblock_in_place
(#6596)global_queue_interval
is zero (#6445)Semaphore
for task dumps (#6499)LocalKey::get
work with Clone types (#6433)true_when
field inTimerShared
(#6563)Fixed
Interval::poll_tick
(#6487)is_empty
on mpsc block boundaries (#6603)Documented
stdin
documentation (#6581)ReadHalf::unsplit()
documentation (#6498)select!
(#6468)NamedPipeServer
example (#6590)SemaphorePermit
,OwnedSemaphorePermit
(#6477)Barrier::wait
is not cancel safe (#6494)watch::Sender::{subscribe,closed}
(#6490)spawn_blocking
tasks (#6571)LocalSet::run_until
(#6599)v1.37.0
: Tokio v1.37.0Compare Source
1.37.0 (March 28th, 2024)
Added
set_max_buf_size
totokio::fs::File
(#6411)try_new
andtry_with_interest
toAsyncFd
(#6345)forget_permits
method to semaphore (#6331)is_closed
,is_empty
, andlen
to mpsc receivers (#6348)rwlock()
method to ownedRwLock
guards (#6418)Clone
forwatch::Sender
(#6388)TaskLocalFuture::take_value
(#6340)FromIterator
forJoinSet
(#6300)Changed
io::split
use a mutex instead of a spinlock (#6403)Fixed
Documented
AsyncBufReadExt::fill_buf
(#6431)AsyncReadExt
's primitive read functions (#6337)Runtime
to#[tokio::main]
(#6366)enter
example deterministic (#6351)mpsc::Sender::downgrade
with#[must_use]
(#6326)const_new
beforenew_with
(#6392)Changed (unstable)
Id
in taskdumps (#6328)unhandled_panic
is enabled when not supported (#6410)v1.36.0
: Tokio v1.36.0Compare Source
1.36.0 (February 2nd, 2024)
Added
tokio::io::Join
(#6220)AsyncWrite
forEmpty
(#6235)UnixSocket
(#6290)TcpSocket
(#6311){Receiver,UnboundedReceiver}::poll_recv_many
(#6236)Sender::{try_,}reserve_many
(#6205)watch::Receiver::mark_unchanged
(#6252)JoinSet::try_join_next
(#6280)Changed
copy
cooperative (#6265)repeat
andsink
cooperative (#6254)Documented
clear_ready
docs (#6304)*Fd
traits onTcpSocket
are unix-only (#6294)tokio::sync::Mutex
(#6279)v1.35.1
: Tokio v1.35.1Compare Source
1.35.1 (December 19, 2023)
This is a forward part of a change that was backported to 1.25.3.
Fixed
tokio::runtime::io::registration::async_io
(#6221)v1.35.0
: Tokio v1.35.0Compare Source
1.35.0 (December 8th, 2023)
Added
Changed
Sized
requirements fromAsyncReadExt.read_buf
(#6169)Runtime
unwind safe (#6189)Fixed
--cfg docsrs
work without net feature (#6166)unsync_load
on miri (#6179)Documented
AsyncWriteExt
examples (#6149)LocalSet::run_until
(#6147)v1.34.0
: Tokio v1.34.0Compare Source
Fixed
clear_readiness
after io driver shutdown (#6067)take
(#6080)broadcast::channel
link (#6100)Changed
::core
qualified imports instead of::std
insidetokio::test
macro (#5973)Added
fs::read_dir
to includeaix
(#6075)mpsc::Receiver::recv_many
(#6010)v1.33.0
: Tokio v1.33.0Compare Source
1.33.0 (October 9, 2023)
Fixed
Interest::add
with#[must_use]
(#6037)watch::Receiver::wait_for
(#6021)spawn_local
source location (#5984)Changed
watch
(#6018)Added
tokio::fs::File
(#5958)Interest::remove
method (#5906)DuplexStream
(#5985)?Sized
bound to{MutexGuard,OwnedMutexGuard}::map
(#5997)watch::Receiver::mark_unseen
(#5962, #6014, #6017)watch::Sender::new
(#5998)OnceCell::from_value
(#5903)Removed
stats
feature (#5952)Documented
Child::wait
is cancel safe (#5977)Semaphore
(#5939, #5956, #5978, #6031, #6032, #6050)broadcast
capacity is a lower bound (#6042)const_new
is not instrumented (#6002)mpsc::Sender::send
(#5947)watch
channel (#5954)Unstable
v1.32.1
: Tokio v1.32.1Compare Source
1.32.1 (December 19, 2023)
This is a forward part of a change that was backported to 1.25.3.
Fixed
tokio::runtime::io::registration::async_io
(#6221)v1.32.0
: Tokio v1.32.0Compare Source
Fixed
broadcast::Receiver
(#5925)Added
Command::raw_arg
(#5930)Unstable
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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 has been generated by Renovate Bot.
fix(deps): update rust crate dagger-sdk to 0.3.0to fix(deps): update all dependencies6d54a5c3e1
toc884f11415
c884f11415
to21e47287db
21e47287db
toadc2a614c7
adc2a614c7
toc95540f93f
c95540f93f
to5b2646e10d
5b2646e10d
toa3fc6607ed
a3fc6607ed
to6e522d3808
6e522d3808
to8285ea2ec5
8285ea2ec5
to1cdad766e7
1cdad766e7
todfe80a7ea8
dfe80a7ea8
to32dd3b3e9f
32dd3b3e9f
to15925afef2
15925afef2
to129fc40775
129fc40775
to3b1e05156e
3b1e05156e
to9fd6aaaacf
9fd6aaaacf
toe69e8d1f29
e69e8d1f29
to42087f8db6
42087f8db6
toda2d497ec6
da2d497ec6
to9e82620a2b
9e82620a2b
to12fe054123
12fe054123
to771cbe9f7a
771cbe9f7a
to1c17c69363
1c17c69363
tob46521dfef
b46521dfef
to8001d04702
8001d04702
toba642252bc
ba642252bc
to293c40f9c1
293c40f9c1
to979fd487d6
979fd487d6
to99b4961f1b
99b4961f1b
to4daa8a5f55
4daa8a5f55
to3451af42a8
3451af42a8
to9484dff031
9484dff031
to7d644b7acf
7d644b7acf
toc800460123
c800460123
to4c02d1ef35
4c02d1ef35
to4fe9f390ae
4fe9f390ae
to961ac01e5e
961ac01e5e
to7c1e31c20f
7c1e31c20f
to4a7419792d
4a7419792d
tof45bd1c612
fix(deps): update all dependenciesto chore(deps): update all dependenciesf45bd1c612
toc830bdabc9
c830bdabc9
to43d2fefee8
43d2fefee8
toff6168a872
ff6168a872
to6db1f9f51f
6db1f9f51f
tofd3aa5faee
fd3aa5faee
to4382274bdf
4382274bdf
to53090d95a4
53090d95a4
toad76781bdb
ad76781bdb
to85e12f925b
85e12f925b
to00fb6e499a
00fb6e499a
to7248e19077
7248e19077
to6cbfa2f982
6cbfa2f982
to9732f2e10c
9732f2e10c
to50979428ae
50979428ae
tocb4a249dd6
cb4a249dd6
to8ce903c4d4
8ce903c4d4
tocff6a4777a
cff6a4777a
to41c5f91668
41c5f91668
toac610ca54e
ac610ca54e
to1bea92e86a
1bea92e86a
toedd823a291
edd823a291
to6ec7349e80
6ec7349e80
to94579e8fe5
94579e8fe5
to1677fdb544
1677fdb544
to90b868ef82
90b868ef82
tof126ec8b0c
f126ec8b0c
to636a4da59d
636a4da59d
tod57df09d93
d57df09d93
to1b2adae38b
1b2adae38b
to0c15b3154c
0c15b3154c
tobd41fc128f
bd41fc128f
to82cdcd7d46
82cdcd7d46
tod46d0bb479
d46d0bb479
tof25b6a50d9
f25b6a50d9
tod6b37f3eb4
d6b37f3eb4
toda5f9a5de0
da5f9a5de0
to63db45d34b
63db45d34b
tofbcc69da3b
fbcc69da3b
to6419b02ac1
6419b02ac1
to56528929ee
56528929ee
toa95adaf2b3
a95adaf2b3
toaa1fceed36
aa1fceed36
to4bd3791a7e
4bd3791a7e
tof3dc43b109
f3dc43b109
to65e659b0ee
65e659b0ee
toc25e880011
c25e880011
to568260e6b3
568260e6b3
toe710d06454
e710d06454
toc6b197b183
c6b197b183
tob3de03eeb8
b3de03eeb8
tocd7424ff61
cd7424ff61
to4705b857e8
4705b857e8
to6c7293d91c
6c7293d91c
toceeb6bf1ad
ceeb6bf1ad
to24a8523e13
24a8523e13
tobf72ae3993
bf72ae3993
to9bc528ad05
9bc528ad05
tof2c773f1b3
f2c773f1b3
to676b33fdf8
676b33fdf8
tod766d309c0
d766d309c0
tof87d75b28d
f87d75b28d
toa68022622a
a68022622a
toa196977809
a196977809
to40485c1318
40485c1318
to8a75209446
8a75209446
toe22509eb64
e22509eb64
to4c530bc223
4c530bc223
to4c578050ff
4c578050ff
to44140999cb
44140999cb
to887c3dee6a
887c3dee6a
to9a4a7fcb47
9a4a7fcb47
tof2fdd60a12
f2fdd60a12
to40b8846847
40b8846847
to0fcda2c384
0fcda2c384
tof1c2d8a769
f1c2d8a769
to4c827d34ff
4c827d34ff
to18c3f1cd52
18c3f1cd52
to51c83618d7
51c83618d7
tobb3733e328
bb3733e328
to2fff2d10f4
2fff2d10f4
tof508c498d6
f508c498d6
to1c3a6e9f5b
1c3a6e9f5b
to330e290c8e
330e290c8e
to3276c456ff
3276c456ff
to76856ff8a6
76856ff8a6
tofca239530f
fca239530f
to93882c509d
93882c509d
to1451bb2371
1451bb2371
to3b4585a67a
3b4585a67a
toeea1bc2feb
eea1bc2feb
to10d7372159
10d7372159
tof4f9368715
f4f9368715
tob7787d057d
b7787d057d
to6dee068bf9
6dee068bf9
to3c36220c85
3c36220c85
tof6b24dd2cc
f6b24dd2cc
to05e17b3ae9
05e17b3ae9
to1ff38b742a
1ff38b742a
to9acbe3db06
9acbe3db06
to5613927ed0
5613927ed0
todc5233ba03
dc5233ba03
to44a8eef70b
44a8eef70b
tofaa2245eaa
faa2245eaa
to2c49de7f9f
2c49de7f9f
to400a74bf1a
400a74bf1a
to8bf0a7aba0
8bf0a7aba0
to49395dcd34
49395dcd34
to0de41263b2
0de41263b2
toe30992bfef
e30992bfef
tofb1e64e0bc
fb1e64e0bc
to3c0ba8db14
3c0ba8db14
to2a778f8cc7
2a778f8cc7
todcc15b0ed1
dcc15b0ed1
to9c5d5ca3fc
9c5d5ca3fc
toafe1e7e300
afe1e7e300
toe07ec66fa8
e07ec66fa8
toc816e23c24
c816e23c24
toe495320b8e
e495320b8e
toe266ae0ff6
e266ae0ff6
to10f44e2b88
10f44e2b88
toe27b8237dd
e27b8237dd
tocb95ad4bab
cb95ad4bab
to21fb6f86da
21fb6f86da
to9c12936eb7
9c12936eb7
toa98e0b7772
a98e0b7772
tod7694cb416
d7694cb416
tod46bb31e7b
d46bb31e7b
tof4f9052a44
f4f9052a44
to3c0a50980b
3c0a50980b
toc6b80c07cd
c6b80c07cd
to234060c112
234060c112
to17d745b738
17d745b738
tofb827c2dbd
fb827c2dbd
to12b34e47c4
12b34e47c4
to9397c5d175
9397c5d175
to2482d104e8
2482d104e8
to5aef279d27
5aef279d27
to108d357fa4
108d357fa4
tod414cdc8c1
d414cdc8c1
toc34461e5e8
c34461e5e8
to2c34eb83e3
2c34eb83e3
tofcfd5f6b9b
fcfd5f6b9b
toe3fc0bf1b6
e3fc0bf1b6
to76df120538
76df120538
to4383f30aea
4383f30aea
to0a463bb817
0a463bb817
todb98007625
db98007625
to533a6dd2f9
533a6dd2f9
tob351e6457c
b351e6457c
tob18f44a6d2
b18f44a6d2
to1712287547
1712287547
to9d7938ebd5
9d7938ebd5
to24f0e2a26b
24f0e2a26b
tob24385e4e7
b24385e4e7
tofe4ce2d5cc
fe4ce2d5cc
to2c725e4b62
2c725e4b62
to0e96dd9e5a
0e96dd9e5a
to0a3293f4d2
0a3293f4d2
toc361cfd6b4
c361cfd6b4
to54fc388252
54fc388252
to6ff4c72617
6ff4c72617
to782cfb232b
782cfb232b
to0e551a2b77
0e551a2b77
to2cef540b61
2cef540b61
to0a872d8ea6
0a872d8ea6
to5bcf846ee3
5bcf846ee3
tof7eda3b8b0
f7eda3b8b0
to976ddb4cea
976ddb4cea
to20db2c4fac
20db2c4fac
tobd67767a11
bd67767a11
to02dd63e728
02dd63e728
to70e3e5b076
70e3e5b076
to86e2b3d795
86e2b3d795
to4ed6636125
4ed6636125
to7bc2845939
7bc2845939
to87fca4e06f
87fca4e06f
to2e658923f5
2e658923f5
to43efe16aa5
43efe16aa5
tof98080415f
f98080415f
tod6343f1abc
d6343f1abc
tocbd944ddf0
cbd944ddf0
tob037472da4
b037472da4
to0a04ecf589
0a04ecf589
to9b1db967aa
9b1db967aa
to4e3bf86ad6
4e3bf86ad6
to2c23ae50da
2c23ae50da
to23bbf66e6d
23bbf66e6d
to95bafe8f47
95bafe8f47
to66959d78ef
66959d78ef
tocce3d91a2c
cce3d91a2c
toc9e2655294
c9e2655294
tobd9fc423dc
bd9fc423dc
to85cc9f60dd
85cc9f60dd
to41a2390f8e
41a2390f8e
to37f548348f
37f548348f
to17a6aabfd9
17a6aabfd9
tobb0c1fb984
bb0c1fb984
todee46ac40d
dee46ac40d
tofb97ffccce
fb97ffccce
to5fe4e3892a
5fe4e3892a
to14860c1397
14860c1397
tofede8fb609
fede8fb609
to25707dd9c5
25707dd9c5
to3d5c558ead
3d5c558ead
to717e9d2d34
717e9d2d34
to699d4c0f6a
699d4c0f6a
toa41492200d
a41492200d
tob79f09cfc3
b79f09cfc3
tob15642c42a
b15642c42a
to4df5d81137
4df5d81137
to66ba19f419
66ba19f419
to9879d8e837
9879d8e837
to3af4f009de
3af4f009de
to8f5dfe79d8
8f5dfe79d8
tof97d8e9182
f97d8e9182
to4f9e010cc5
4f9e010cc5
toaa2f769a53
aa2f769a53
to93c906769f
93c906769f
tof3669a4740
f3669a4740
to09d049be49
09d049be49
tobbe519ba9b
bbe519ba9b
to6e1ffaa59e
6e1ffaa59e
to6d25bb2fe4
6d25bb2fe4
toecc89f12f3
ecc89f12f3
to4d70aaf37d
4d70aaf37d
tofcd1aefbd5
fcd1aefbd5
to92ef2148f5
92ef2148f5
tofddfed310f
fddfed310f
to3332a85e94
3332a85e94
toeee06eecaa
eee06eecaa
to06f280de25
06f280de25
to7163ba9444
7163ba9444
tod347c4808c
d347c4808c
to4a10fb3b2f
4a10fb3b2f
to264511d340
264511d340
tof478989c65
f478989c65
to81b5290bac
81b5290bac
to9c836ba07d
9c836ba07d
tocca07afdff
cca07afdff
tob0ebfdc107
b0ebfdc107
to349ce28dc8
349ce28dc8
to50a7a142af
50a7a142af
to886c20fa7a
886c20fa7a
to288cc78e1b
288cc78e1b
to2974c27cbb
2974c27cbb
to3a68710d6f
3a68710d6f
to0c7355be28
0c7355be28
tof3dc761467
f3dc761467
tobbf653851e
bbf653851e
to02f7216654
02f7216654
to968c4aa72f
968c4aa72f
to927b2dac6d
927b2dac6d
to52a3b4db98
52a3b4db98
to14f816afdc
14f816afdc
to6a5ebbbd8b
6a5ebbbd8b
tof0dbd87736
f0dbd87736
to871486644e
871486644e
toedc81c5f9c
edc81c5f9c
toe49f7128e6
e49f7128e6
to4ada3679b5
4ada3679b5
toece70b80e2
ece70b80e2
to3a84fde2b5
3a84fde2b5
to53734ef812
53734ef812
toc5bdfb3202
c5bdfb3202
to9c3745623e
9c3745623e
to8e90d5bbb9
8e90d5bbb9
to29b52cc6b1
29b52cc6b1
tocdd5874262
cdd5874262
toe8a3989c93
e8a3989c93
tof31caba805
f31caba805
to483ea078f2
483ea078f2
to1fbd30df67
1fbd30df67
to04b2142caa
04b2142caa
to2a7da514ac
2a7da514ac
to1a5e5fbd05
1a5e5fbd05
toa82b5c3c38
a82b5c3c38
to30f03eb959
30f03eb959
to20579ac20d
20579ac20d
toa7f8a50459
a7f8a50459
to6254690d30
6254690d30
to41fba657b8
41fba657b8
tofcf4528ff5
fcf4528ff5
to81916beac8
81916beac8
to87baca1fcf
87baca1fcf
toc4c0b5998d
c4c0b5998d
to37b8f07d61
37b8f07d61
tob5f94f224f
b5f94f224f
toa2082601c9
a2082601c9
toeba220237f
eba220237f
to70eceb4b61
70eceb4b61
to0af0cd81e9
0af0cd81e9
toa43689c542
a43689c542
toaaa98a7ca4
aaa98a7ca4
tof3a4f837bc
f3a4f837bc
toe31b14207d
e31b14207d
tob47ee08988
b47ee08988
to4b2b9630fc
4b2b9630fc
tof865a93fa5
f865a93fa5
to1146916019
1146916019
to9a6cf2a568
9a6cf2a568
to555235df55
555235df55
to9f789e3e0a
9f789e3e0a
to26ae6e0367
26ae6e0367
to610035ad00
610035ad00
to041610034c
041610034c
toab26f2c570
ab26f2c570
to65a6175847
65a6175847
to0d7079cf65
0d7079cf65
tof314895c25
f314895c25
toc92925e382
c92925e382
to27322d07e7
27322d07e7
tocc2a36b76f
cc2a36b76f
to82f191f863
82f191f863
tof82ba16743
f82ba16743
to206e108267
206e108267
to62a1033a2f
62a1033a2f
to56a142edf0
56a142edf0
to5631383987
5631383987
to4ba6903772
4ba6903772
tof6b435107a
f6b435107a
to63f330fd81
63f330fd81
tocb30f87de5
cb30f87de5
to7132f54790
7132f54790
to84f8e672f2
84f8e672f2
to55d5c07f86
55d5c07f86
to7dcad784a8
7dcad784a8
tod7cf264d7f
d7cf264d7f
to7feb12d22e
7feb12d22e
to24dca5c474
24dca5c474
to0b87ab0f33
0b87ab0f33
to61b4559fbe
61b4559fbe
to6c04afd501
6c04afd501
to7b33295d21
7b33295d21
to72d50c9337
72d50c9337
to302cc5c4fe
302cc5c4fe
toc68a5de99e
c68a5de99e
to2e2a8dfc57
2e2a8dfc57
to0f78a7e94e
0f78a7e94e
to6e49bfdfad
6e49bfdfad
tob1a1e25c7b
b1a1e25c7b
to066c81a0c2
066c81a0c2
toa9d2c9095b
a9d2c9095b
to50cf918d01
50cf918d01
to070236e30c
070236e30c
to810e1808ae
810e1808ae
to8d1c938aee
8d1c938aee
toe2da3b92e7
e2da3b92e7
to52102a8df1
52102a8df1
tob1e3df185e
b1e3df185e
to315b0d2111
315b0d2111
to1de991b5e9
1de991b5e9
tof7243136b7
f7243136b7
tof75bd97881
f75bd97881
to063c3fb821
063c3fb821
toa5e4ec0e0a
a5e4ec0e0a
tof38e6cf3cd
f38e6cf3cd
toe1cd92addc
e1cd92addc
toc82171ffc6
c82171ffc6
to70de275f10
70de275f10
to1b138ef6d4
1b138ef6d4
to8569759c83
8569759c83
to17394491bf
17394491bf
to2856c8349f
2856c8349f
to90abe21912
90abe21912
tof39fec3cfe
f39fec3cfe
to7354d464f6
7354d464f6
to8b3de9ced6
8b3de9ced6
tob1fffa9271
b1fffa9271
todfe411df5d
dfe411df5d
to73ff9cbb6e
73ff9cbb6e
tod5ee837fab
d5ee837fab
toa0f78a74bd
a0f78a74bd
to1043c43e4a
1043c43e4a
toaec3138a35
aec3138a35
to381d7312e4
381d7312e4
to989c2a77a7
989c2a77a7
toacfbabf451
acfbabf451
tod99dba8695
d99dba8695
tobea3dd1888
bea3dd1888
to2a1bdf64f9
2a1bdf64f9
to5ad9b246bf
5ad9b246bf
to41fc78fb3e
41fc78fb3e
tob1ffab5b9f
b1ffab5b9f
to99f11a8c01
99f11a8c01
to7ee490e426
7ee490e426
toba3755eccc
ba3755eccc
to58123e6b75
58123e6b75
toe6ee96a90c
e6ee96a90c
to3511d4b368
3511d4b368
to09717390b6
09717390b6
tob47a3abbe8
b47a3abbe8
to2b40de750b
2b40de750b
to4bdc8a8c89
4bdc8a8c89
toe633f2e7ec
e633f2e7ec
toae5154056b
ae5154056b
toce5cdd5b6d
ce5cdd5b6d
toedc9557774
edc9557774
toa17ddbea58
a17ddbea58
to465a8234ef
465a8234ef
toadd223ec22
add223ec22
to5817c42d84
5817c42d84
tob43841cdbf
b43841cdbf
to4be4a644af
4be4a644af
to4619629c15
4619629c15
toace0dd2de8
ace0dd2de8
to4a844956a5
4a844956a5
to4762e2160c
4762e2160c
to1b3527a66a
1b3527a66a
tod2683d42c4
d2683d42c4
to7c01797b07
7c01797b07
toc8a36a4099
c8a36a4099
to28c201e074
28c201e074
to5ec40c327e
5ec40c327e
toc3f585bb3f
c3f585bb3f
toa91eed7d8f
a91eed7d8f
to4b491c4528
4b491c4528
to3188ec224b
3188ec224b
tof45f5b9d18
f45f5b9d18
to45fbabf5a9
45fbabf5a9
to7897a6211d
7897a6211d
to8de29a3f19
8de29a3f19
toe3369fc69a
e3369fc69a
to184b5cf9c4
184b5cf9c4
tob36f3471ad
b36f3471ad
to54cb6c9d1a
54cb6c9d1a
to4722bd0d09
4722bd0d09
toe5dbe32e0b
e5dbe32e0b
toa4b8e80a1e
a4b8e80a1e
to67f30277c9
67f30277c9
to63485b8d54
63485b8d54
to12d214437a
12d214437a
tob1f481aea9
b1f481aea9
tob9a67a992d
b9a67a992d
tof60e89d3ed
f60e89d3ed
to5fc5677e78
5fc5677e78
to322a2154f0
322a2154f0
to4c82a552d7
4c82a552d7
tod65144ebd2
d65144ebd2
tof731cd4f80
f731cd4f80
to34f7474fa6
34f7474fa6
to0c7794cc85
0c7794cc85
tob6aac8cb0b
b6aac8cb0b
tod6653bba9b
d6653bba9b
to9dbf44b9d8
9dbf44b9d8
toa3d7d197e9
a3d7d197e9
to67cf6eb139
67cf6eb139
to00d3f38791
00d3f38791
tofd47a99772
fd47a99772
to0e35531417
0e35531417
toe6fbfa55c7
e6fbfa55c7
tof0906018c2
f0906018c2
to884c3110c7
884c3110c7
to9c15311442
9c15311442
toda0d092322
da0d092322
to342431442e
342431442e
to64398b4d60
64398b4d60
to12092ac230
12092ac230
to0f99c9168c
0f99c9168c
to61ec17925b
61ec17925b
to6896f84afe
6896f84afe
to8a6e5f033c
8a6e5f033c
to28d09674bf
28d09674bf
to13d2784022
13d2784022
todbff6d5abd
dbff6d5abd
tof870320e26
f870320e26
toe09b5bdc99
e09b5bdc99
tod01b00b437
d01b00b437
to9c73bac21d
9c73bac21d
to5c39808ecc
5c39808ecc
to55834ad4a1
55834ad4a1
toa497589e75
a497589e75
to7451aad0aa
7451aad0aa
to9aef373efa
9aef373efa
tocfdc747718
cfdc747718
to14916f651e
14916f651e
tocddc0183b0
cddc0183b0
toed1e609c5a
ed1e609c5a
to788335812d
788335812d
to43da26abf4
43da26abf4
to346dc51a23
346dc51a23
todfe792fbd2
dfe792fbd2
to422dfa61da
422dfa61da
tob3c4ac21fe
b3c4ac21fe
to0d69c527b2
0d69c527b2
to6190266f1a
6190266f1a
to38a588853b
38a588853b
to62ca0d950b
62ca0d950b
tod0a07b53fa
d0a07b53fa
toca0907725f
ca0907725f
todab38fa602
dab38fa602
to6ad67a94a3
6ad67a94a3
tof361dbdc2b
f361dbdc2b
toa079f169a0
a079f169a0
to5868b75332
5868b75332
to40000816de
40000816de
todd1132e163
dd1132e163
to0a215de078
0a215de078
to492420fbc4
492420fbc4
to30e7c08e39
30e7c08e39
toa015895605
a015895605
tocecad6996b
cecad6996b
tod796adf370
d796adf370
to3be0c827e2
3be0c827e2
tobd29603c80
bd29603c80
to6f6b3efbd6
6f6b3efbd6
tob329d95efe
b329d95efe
to7be9e845ef
7be9e845ef
to453fd042a8
453fd042a8
toa03080ba65
a03080ba65
to89770b8ced
89770b8ced
tocba9652177
cba9652177
tocf18ab2ab5
cf18ab2ab5
to63a845f30e
63a845f30e
tod371e73b57
d371e73b57
to1ed77f565e
1ed77f565e
to04329b7eab
04329b7eab
to4e293511d0
4e293511d0
to239590e277
239590e277
toe6944b8e2a
e6944b8e2a
todbf9e09205
dbf9e09205
tof76ef24fe7
f76ef24fe7
to25acf524f2
25acf524f2
to704fd62936
704fd62936
to7cb79a1671
7cb79a1671
to08e187fe2d
08e187fe2d
to70b02996ba
70b02996ba
to352292a3fc
352292a3fc
to6f1c053161
6f1c053161
to54c0f2ddb1
54c0f2ddb1
tobac8ee2f25
bac8ee2f25
tob12512902f
b12512902f
toc30922e1e2
c30922e1e2
tod1957fadd2
d1957fadd2
to0bc25e0923
0bc25e0923
toee597e24b3
ee597e24b3
tod57098b000
d57098b000
toa9ba277086
a9ba277086
to943d9f2d97
943d9f2d97
todeb5647346
deb5647346
to909277009f
909277009f
to595f5434fb
595f5434fb
toa8a11cae40
a8a11cae40
to77ebcfe837
77ebcfe837
to103acb63e6
103acb63e6
toff7499e8b3
ff7499e8b3
to9f8bf98b11
9f8bf98b11
to447af9e0a0
447af9e0a0
to5749a10b85
5749a10b85
to45201f70e9
45201f70e9
to4c98f2f784
4c98f2f784
to8288801ef7
8288801ef7
toca46542aaa
ca46542aaa
tocee32207a4
cee32207a4
to90d1d536ff
90d1d536ff
toe8fb2f3586
e8fb2f3586
to6cb4cd19b8
6cb4cd19b8
to506592a677
506592a677
todd9cde389a
dd9cde389a
to5a80aeb6c6
5a80aeb6c6
to977665526c
977665526c
to759b2f9d0e
759b2f9d0e
toabf967efcd
abf967efcd
to56aaa279a9
56aaa279a9
to9e819b08c5
9e819b08c5
to87136c6c4f
87136c6c4f
tof88c8e4c5b
f88c8e4c5b
to34269506cc
34269506cc
to72b94424c6
72b94424c6
to4bb457ccaf
4bb457ccaf
tod5ae1b7ec2
d5ae1b7ec2
to1106a3d92e
1106a3d92e
to5ade807855
5ade807855
to3349290fce
3349290fce
tob82ea0cb72
b82ea0cb72
tof14eb66824
f14eb66824
toa45d154cff
a45d154cff
tof8a95539b4
f8a95539b4
to9ec509ff95
9ec509ff95
to778b8e011f
778b8e011f
toba775e594e
ba775e594e
to863b75a264
863b75a264
to8ade346b52
8ade346b52
tof2d7b4ae7e
f2d7b4ae7e
to6c072745d5
6c072745d5
toe7a94eb690
e7a94eb690
to3618941f0c
3618941f0c
tof189f7b338
f189f7b338
to63eba709ef
63eba709ef
to148008523e
148008523e
to980d992838
980d992838
to1ea210bacc
1ea210bacc
to32c187fa94
32c187fa94
to05c2f6ee5e
05c2f6ee5e
to17316e1a6f
17316e1a6f
to9bd826367a
9bd826367a
todd839e0ee8
dd839e0ee8
to48648b17c4
48648b17c4
to4e57a73453
4e57a73453
tod448661e94
d448661e94
toef06cb8966
ef06cb8966
to26efb7932e
26efb7932e
toa1b7f7d9cf
a1b7f7d9cf
todd0aba8e41
dd0aba8e41
tofee29851af
fee29851af
to94de04c5cd
94de04c5cd
to9d2300b452
9d2300b452
to54f0d36083
54f0d36083
toe217194285
e217194285
toc7f92993cc
c7f92993cc
tocf2801e75b
Checkout
From your project repository, check out a new branch and test the changes.