fix(deps): update all dependencies #25
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:
2.2.0
->4.7.0
1.0.82
->1.0.98
4.0.16
->7.0.0
4.0.16
->7.0.0
0.1.79
->0.1.88
1.2.0
->1.6.0
1.4.0
->1.5.0
4.4.2
->5.0.0
1.10.4
->1.11.1
0.11.27
->0.12.22
1.0.115
->1.0.141
1.0.37
->2.0.0
1.37.0
->1.46.1
0.3.4
->0.6.0
4.9.3
->5.8.3
1.8.0
->1.17.0
3.2.4
->7.0.6
Release Notes
vitejs/vite-plugin-react (@vitejs/plugin-react)
v4.7.0
Compare Source
Add HMR support for compound components (#518)
HMR now works for compound components like this:
Return
Plugin[]
instead ofPluginOption[]
(#537)The return type has changed from
react(): PluginOption[]
to more specialized typereact(): Plugin[]
. This allows for type-safe manipulation of plugins, for example:v4.6.0
Compare Source
Add raw Rolldown support
This plugin only worked with Vite. But now it can also be used with raw Rolldown. The main purpose for using this plugin with Rolldown is to use react compiler.
v4.5.2
Compare Source
Suggest
@vitejs/plugin-react-oxc
if rolldown-vite is detected #491Emit a log which recommends
@vitejs/plugin-react-oxc
whenrolldown-vite
is detected to improve performance and use Oxc under the hood. The warning can be disabled by settingdisableOxcRecommendation: true
in the plugin options.Use
optimizeDeps.rollupOptions
instead ofoptimizeDeps.esbuildOptions
for rolldown-vite #489This suppresses the warning about
optimizeDeps.esbuildOptions
being deprecated in rolldown-vite.Add Vite 7-beta to peerDependencies range #497
React plugins are compatible with Vite 7, this removes the warning when testing the beta.
v4.5.1
Compare Source
Add explicit semicolon in preambleCode #485
This fixes an edge case when using HTML minifiers that strips line breaks aggressively.
v4.5.0
Compare Source
Add
filter
for rolldown-vite #470Added
filter
so that it is more performant when running this plugin with rolldown-powered version of Vite.Skip HMR for JSX files with hooks #480
This removes the HMR warning for hooks with JSX.
v4.4.1
Compare Source
Fix type issue when using
moduleResolution: "node"
in tsconfig #462v4.4.0
Compare Source
Make compatible with rolldown-vite
This plugin is now compatible with rolldown-powered version of Vite.
Note that currently the
__source
property value position might be incorrect. This will be fixed in the near future.v4.3.4
Compare Source
Add Vite 6 to peerDependencies range
Vite 6 is highly backward compatible, not much to add!
Force Babel to output spec compliant import attributes #386
The default was an old spec (
with type: "json"
). We now enforce spec compliant (with { type: "json" }
)v4.3.3
Compare Source
React Compiler runtimeModule option removed
React Compiler was updated to accept a
target
option andruntimeModule
was removed. vite-plugin-react will still detectruntimeModule
for backwards compatibility.When using a custom
runtimeModule
ortarget !== '19'
, the plugin will not try to pre-optimizereact/compiler-runtime
dependency.The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.
Here is the configuration to use the compiler with React 18 and correct source maps in development:
v4.3.2
Compare Source
Ignore directive sourcemap error #369
v4.3.1
Compare Source
Fix support for React Compiler with React 18
The previous version made this assumption that the compiler was only usable with React 19, but it's possible to use it with React 18 and a custom
runtimeModule
: https://gist.github.com/poteto/37c076bf112a07ba39d0e5f0645fec43When using a custom
runtimeModule
, the plugin will not try to pre-optimizereact/compiler-runtime
dependency.Reminder: Vite expect code outside of
node_modules
to be ESM, so you will need to update the gist withimport React from 'react'
.v4.3.0
Compare Source
Fix support for React compiler
Don't set
retainLines: true
when the React compiler is used. This creates whitespace issues and the compiler is modifying the JSX too much to get correct line numbers after that. If you want to use the React compiler and get back correct line numbers for tools like vite-plugin-react-click-to-component to work, you should update your config to something like:Support HMR for class components
This is a long overdue and should fix some issues people had with HMR when migrating from CRA.
v4.2.1
Compare Source
Remove generic parameter on
Plugin
to avoid type error with Rollup 4/Vite 5 andskipLibCheck: false
.I expect very few people to currently use this feature, but if you are extending the React plugin via
api
object, you can get back the typing of the hook by importingViteReactPluginApi
:v4.2.0
Compare Source
Update peer dependency range to target Vite 5
There were no breaking change that impacted this plugin, so any combination of React plugins and Vite core version will work.
Align jsx runtime for optimized dependencies
This will only affect people using internal libraries that contains untranspiled JSX. This change aligns the optimizer with the source code and avoid issues when the published source don't have
React
in the scope.Reminder: While being partially supported in Vite, publishing TS & JSX outside of internal libraries is highly discouraged.
v4.1.1
Compare Source
v4.1.0
Compare Source
@types/babel__cores
to dependencies (fix #211)@babel/core
#212index.d.cts
file so you don't get types errors when settingmoduleResolution
tonode16
ornodenext
in your tsconfig (we recommend usingbundler
which is more close to how Vite works)v4.0.4
Compare Source
v4.0.3
Compare Source
v4.0.2
Compare Source
v4.0.1
Compare Source
v4.0.0
Compare Source
This major version include a revamp of options:
include
/exclude
now allow to completely override the files processed by the plugin (#122). This is more in line with other Rollup/Vite plugins and simplify the setup of enabling Fast Refresh for.mdx
files. This can be done like this:These changes also allow to apply Babel plugins on files outside Vite root (expect in node_modules), which improve support for monorepo (fix #16).
With these changes, only the file extensions is used for filtering processed files and the query param fallback is removed.
fastRefresh
is removed (#122). This should be correctly activated by plugin without configuration.jsxPure
is removed. This is a niche use case that was just passing down the boolean to esbuild.jsxSideEffects. (#129)The support for React auto import whe using classic runtime is removed. This was prone to errors and added complexity for no good reason given the very wide support of automatic runtime nowadays. This migration path should be as simple as removing the runtime option from the config.
This release goes in hand with the upcoming Vite 4.3 release focusing on performances:
Other notable changes:
v3.1.0
Compare Source
v3.0.1
Compare Source
v3.0.0
Compare Source
dtolnay/anyhow (anyhow)
v1.0.98
Compare Source
self.into_boxed_dyn_error()
andself.reallocate_into_boxed_dyn_error_without_backtrace()
methods for anyhow::Error (#415)v1.0.97
Compare Source
v1.0.96
Compare Source
v1.0.95
Compare Source
Error::from_boxed
(#401, #402)v1.0.94
Compare Source
v1.0.93
Compare Source
thiserror
v2v1.0.92
Compare Source
&raw const
and&raw mut
syntax insideensure!
(#390)v1.0.91
Compare Source
v1.0.90
Compare Source
v1.0.89
Compare Source
UnwindSafe
andRefUnwindSafe
impl consistently available between versions of Rust newer and older than 1.72 (#386)v1.0.88
Compare Source
v1.0.87
Compare Source
Error::new
andError::chain
, in no-std mode on Rust 1.81+ (#383)v1.0.86
Compare Source
ensure!
with non-literal after minus sign (#373)v1.0.85
Compare Source
ensure!
macro's rules to unblock some rustc pretty-printer improvements (#368, #371)v1.0.84
Compare Source
ensure!
through aNot
impl for a type that is notbool
(#367)v1.0.83
Compare Source
async-graphql/async-graphql (async-graphql)
v7.0.17
1.86.0
v7.0.16
__typename
always returnednull
when introspection was disabled.1.83.0
v7.0.15
custom-error-conversion
feature #1631v7.0.14
v7.0.13
Compare Source
v7.0.12
1.83.0
SimpleObject
.boxed-trait
feature #1641v7.0.11
v7.0.10
SchemeBuilder.limit_directives
method to set the maximum number of directives on a single field.From<T>
for [Error] set source #1561v7.0.9
on_ping
callback toWebSocket
v7.0.8
rejection
inasync_graphql_axum
#1571time
to3.36
, as it fixes a compilation error in rust1.80
#1572Debug
fordynamic::FieldValue
& Improve error messages for its methods #1582#[doc = ...]
attributes when generating descriptions #1581Websocket::keepalive_timeout
method to sets a timeout for receiving an acknowledgement of the keep-alive ping.v7.0.7
Compare Source
ARGUMENT_DEFINITION
is not being output at the appropriate location in SDL #1559v7.0.6
Compare Source
Interface
andOneofObject
on the same struct #1534v7.0.5
Compare Source
display
attribute for Enum macro #1518v7.0.3
Compare Source
type_name
ofEmptySubscription
fix #1435 #1475Request::set_parsed_query
method #1483NextExecute::run_with_data
method to attach context data before executionv7.0.2
Compare Source
#[derive(OneofObject)]
rejecting enums where the type comes from a macro substitution #1473impl Future
instead ofasync-trait
in most traits. #1468base64
to0.21
#1466v7.0.1
1.86.0
v7.0.0
http1
v6.0.11
Compare Source
v0.21.x
#1422v6.0.10
Compare Source
0.20.0
#14060.5.0-rc.2
to0.5.0-rc.4
v6.0.9
Compare Source
@composeDirective
in Federation's_service
field and document#[TypeDirective]
#1400v6.0.7
Compare Source
v6.0.6
Compare Source
v6.0.5
Compare Source
ValueAccessor::as_value
andListAccessor::as_values_slice
methods #13531.70.0
v6.0.4
Compare Source
multipart/mixed
request. #1348GraphQL
handler.GraphQL
service.v6.0.3
Compare Source
XXXAccessor
return reference lifetimes that are smaller than expected.OutputType
implementation forstd::sync::Weak
#1334v6.0.1
Compare Source
v0.21.x
#1422v6.0.0
Compare Source
syn
from1.0
to2.0
darling
from0.14
to0.20
indexmap
from1.6.2
to2
guard
,process_with
,complexity
support expression or string as value #1295Dataloader::get_cached_values
method to the dataloader cache so that callers can access the contents of the cache without knowing the keys. #1326Breaking Changes
Since
syn 2.0
no longer supports keywords as meta path, rename the parameter used to specify interface field types fromtype
toty
.https://github.com/dtolnay/syn/issues/1458
https://github.com/TedDriggs/darling/issues/238
location
of the macroDirective
to PascalCasev5.0.10
CursorScalar
type and exposeEdge::cursor
member #1302v5.0.9
v5.0.8
1.65.0
v5.0.7
v5.0.6
1.64.0
v5.0.5
Compare Source
v5.0.4
Compare Source
DynamicRequestExt::root_value
to specify the root value for the requestCustomValidator::check
returns error type fromString
toInputValueError<T>
.v5.0.3
Compare Source
v5.0.2
Compare Source
v5.0.1
Compare Source
CursorScalar
type and exposeEdge::cursor
member #1302v5.0.0
Compare Source
1.60.0
0.5.1
to0.6.0
#1106dtolnay/async-trait (async-trait)
v0.1.88
Compare Source
v0.1.87
Compare Source
v0.1.86
Compare Source
v0.1.85
Compare Source
Self: 'async_trait
bound in impl when not needed by signature (#284)v0.1.84
Compare Source
impl Trait
in return type (#282)v0.1.83
Compare Source
v0.1.82
Compare Source
v0.1.81
Compare Source
syn
dependency (#272, thanks @klensy)v0.1.80
Compare Source
!
(#265, thanks @de-vri-es)hyperium/hyper (hyper)
v1.6.0
Compare Source
Bug Fixes
max_local_error_reset_streams
function to&mut self
(#3820) (e981a91e)Features
ext::on_informational()
callback extension (#3818) (8ce1fcfa, closes #2565)http1::Builder::ignore_invalid_headers(bool)
option (#3824) (3817a79b)Breaking Changes
http2::Builder::max_local_error_reset_streams()
now takes&mut self
and returns&mut Self
. In practice, this shouldn't break almost anyone. It was the wrong receiver and return types.(e981a91e)
v1.5.2 (2024-12-16)
Bug Fixes
Features
v1.5.1 (2024-11-19)
Bug Fixes
v1.5.2
Compare Source
Bug Fixes
Features
v1.5.1
Compare Source
Bug Fixes
v1.5.0
Compare Source
Bug Fixes
date_header
effective (#3718) (7de02373)Features
header_table_size()
andmax_concurrent_streams()
(4c84e8c1)ReadBufCursor
methodsremaining()
andput_slice()
(#3700) (5a13041e)v1.4.1 (2024-07-09)
Bug Fixes
v1.4.1
Compare Source
Bug Fixes
v1.4.0
Compare Source
Bug Fixes
Features
SendRequest::try_send_request()
method (#3691) (4ffaad53)Send +Sync
bounds requirement ofhttp2::Connection
executor (#3682) (56c3cd56)'static
lifetime bound on http1/2 client IO (#3667) (9580b357)Builder::auto_date_header(bool)
to allow disabling Date headers (721785ef)v1.3.1 (2024-04-16)
Bug Fixes
v1.3.1
Compare Source
Bug Fixes
v1.3.0
Compare Source
Bug Fixes
max_header_list_size(num)
defaults to 16kb (203d1b09)initial_max_send_streams
defaults to 100 (2d1bd708)Future
impl of HTTP/1UpgradeableConnection
(#3627) (b79be911, closes #3621)graceful_shutdown
panic on upgraded H1 connection (#3616) (6ecf8521)Features
max_header_list_size(num)
tohttp2::Builder
. (1c5b1b87)max_pending_accept_reset_streams
HTTP2 option (#3617) (330ddf1d)'static
from connection IO trait bounds (#3595) (0013bdda)rust-lang-nursery/lazy-static.rs (lazy_static)
v1.5.0
Compare Source
ramosbugs/oauth2-rs (oauth2)
v5.0.0
Compare Source
Refer to the Upgrade Guide for tips on how to upgrade from 4.x.
Changes since 5.0.0-rc.1
Bug Fixes
9a2b746
)Full Changelog: https://github.com/ramosbugs/oauth2-rs/compare/5.0.0-rc.1...5.0.0
Summary of changes since 4.4.2
Breaking Changes
TokenResponse
generic with associated type (30ced32
)impl Future
instead ofPin<Box<dyn Future>>
to fixSend
/Sync
bounds (6e583bd
)http
to 1.0 andreqwest
to 0.12 (408ecab
)85ea470
)oauth2::HttpClientError
and flatten exports (e.g.,oauth2::reqwest
instead ofoauth2::reqwest::reqwest
) (4391eed
)Error
type and usethiserror
'sFrom
impl by @MarijnS95 (#238)openidconnect
crate) (576f809
)Display
output ofRequestTokenError::ServerResponse
(96c6f9b
)Client
endpoints statically via typestates (1d1f4d1
)devicecode
andrevocation
modules private (9d8f11a
)reqwest-blocking
feature (da7d1c5
)4d55c26
)AsyncHttpClient
andSyncHttpClient
traits (23b952b
)New Features
SecretType::into_secret
(#272)timing-resistant-secret-traits
feature for PartialEq/Hash by @kate-shine (https://github.com/ramosbugs/oauth2-rs/pull/232)Eq
for types that already derivePartialEq
(b19ad89
)From
instead ofInto
for newtypes (d9402c4
)Display
trait for URL types (8bd0ff1
)Bug Fixes
9a2b746
)Other Changes
base64
to 0.21 (db0ea44
)chrono
to 0.4.31 (7b667fc
)openidconnect
crate in README (7b667fc
)spawn_blocking
to docs (1fc8188
)curl
asoauth2::curl
andureq
asoauth2::ureq
when the corresponding Cargo features are enabled (aff7471
)map_err()
conversions with aFrom
call via theTry
operator by @MarijnS95 (#239)csrf_state
by @ikehz (#245)prepare_request()
methods infallible (8ef74ac
)d675e81
)a8b5cf8
)92c491a
)Full Changelog: https://github.com/ramosbugs/oauth2-rs/compare/4.4.2...5.0.0
rust-lang/regex (regex)
v1.11.1
Compare Source
===================
This is a new patch release of
regex
that fixes compilation on nightlyRust when the unstable
pattern
crate feature is enabled. Users on nightlyRust without this feature enabled are unaffected.
Bug fixes:
Fix the
Pattern
trait implementation as a result of nightly API breakage.v1.11.0
Compare Source
===================
This is a new minor release of
regex
that brings in an update to theUnicode Character Database. Specifically, this updates the Unicode data
used by
regex
internally to the version 16 release.New features:
Add new
regex::SetMatches::matched_all
method.Update to Unicode Character Database (UCD) version 16.
v1.10.6
Compare Source
===================
This is a new patch release with a fix for the
unstable
crate feature thatenables
std::str::Pattern
trait integration.Bug fixes:
Fix the
Pattern
trait implementation as a result of nightly API breakage.v1.10.5
Compare Source
===================
This is a new patch release with some minor fixes.
Bug fixes:
Escape invalid UTF-8 when in the
Debug
impl ofregex::bytes::Match
.seanmonstar/reqwest (reqwest)
v0.12.22
Compare Source
v0.12.21
Compare Source
socks4a://
instead ofsocks4h://
.Error::is_timeout()
to check for hyper and IO timeouts too.Error
to again include URLs when possible.Default
forBody
.v0.12.20
Compare Source
ClientBuilder::tcp_user_timeout(Duration)
option to setTCP_USER_TIMEOUT
.Error::is_status()
.v0.12.19
Compare Source
cookies
feature is enabled (by the way, it's a noop feature in wasm).v0.12.18
Compare Source
socks
enabled without TLS.v0.12.17
Compare Source
v0.12.16
Compare Source
ClientBuilder::http3_congestion_bbr()
to enable BBR congestion control.ClientBuilder::http3_send_grease()
to configure whether to send use QUIC grease.ClientBuilder::http3_max_field_section_size()
to configure the maximum response headers.ClientBuilder::tcp_keepalive_interval()
to configure TCP probe interval.ClientBuilder::tcp_keepalive_retries()
to configure TCP probe count.Proxy::headers()
to add extra headers that should be sent to a proxy.redirect::Policy::limit()
which had an off-by-1 error, allowing 1 more redirect than specified.Response::bytes_stream()
.v0.12.15
Compare Source
ProxyOverride
andNO_PROXY
.v0.12.14
Compare Source
fetch_mode_no_cors()
, marking as deprecated when not on WASM.v0.12.13
Compare Source
Form::into_reader()
for blockingmultipart
forms.Form::into_stream()
for asyncmultipart
forms.RequestBuilder::form()
from overwriting a previously setContent-Type
header, like the other builder methods.blocking::Request
.ProxyOverride
as aNO_PROXY
value.Error::is_timeout()
to return true when from a request timeout.v0.12.12
Compare Source
tokio/time
on WASM.v0.12.11
Compare Source
v0.12.10
Compare Source
ClientBuilder::connector_layer()
to allow customizing the connector stack.ClientBuilder::http2_max_header_list_size()
option.content-length
) information when wrapping bodies.v0.12.9
Compare Source
tls::CertificateRevocationLists
support.connection_verbose()
to output read logs.multipart::Part::file()
to automatically include content-length.v0.12.8
Compare Source
multipart::Form::file()
method for adding files easily.Body::wrap()
to wrap anyhttp_body::Body
type.v0.12.7
Compare Source
impl Service<http::Request<_>>
forClient
.v0.12.6
Compare Source
danger_accept_invalid_hostnames
forrustls
.impl Service<http::Request<Body>>
forClient
and&'_ Client
.!Sync
bodies inBody::wrap_stream()
.hickory-dns
is used.Proxy
so thatHTTP(S)_PROXY
values take precedence overALL_PROXY
.blocking::RequestBuilder::header()
from unsettingsensitive
on passed header values.v0.12.5
Compare Source
blocking::ClientBuilder::dns_resolver()
method to change DNS resolver in blocking client.http3
feature back, still requiringreqwest_unstable
.rustls-tls-no-provider
Cargo feature to use rustls without a crypto provider.Accept-Encoding
header combinations.v0.12.4
Compare Source
zstd
support, enabled withzstd
Cargo feature.ClientBuilder::read_timeout(Duration)
, which applies the duration for each read operation. The timeout resets after a successful read.v0.12.3
Compare Source
FromStr
fordns::Name
.ClientBuilder::built_in_webpki_certs(bool)
to enable them separately.ClientBuilder::built_in_native_certs(bool)
to enable them separately.content-length: 0
for GET requests.content_length()
to return value when timeout is configured.ClientBuilder::resolve()
to use lowercase domain names.v0.12.2
Compare Source
v0.12.1
Compare Source
cookies
feature is enabled (by the way, it's a noop feature in wasm).v0.12.0
Compare Source
hyper
,http
, andhttp-body
v1.http::Request
andhttp::Response
.http2
optional cargo feature, default on.charset
optional cargo feature, default on.macos-system-configuration
cargo feature, default on.ClientBuilder::interface(str)
to specify the local interface to bind to.http3
feature temporarily.v0.11.27
hickory-dns
feature, deprecatingtrust-dns
.Form::text()
to not set octet-stream for plain text fields.v0.11.26
system-configuration
upgrade, which broke MSRV on macOS.v0.11.25
Certificate::from_pem_bundle()
parsing.v0.11.24
Certificate::from_pem_bundle()
to add a bundle.http3_prior_knowledge()
to blocking client builder.Sync
bounds requirement forBody::wrap_stream()
.REFUSED_STREAM
requests.Url
toUri
that could panic.v0.11.23
Proxy::custom_http_auth(val)
for setting the rawProxy-Authorization
header when connecting to proxies.http://
orhttps://
.nodelay
when TLS is enabled but URL is HTTP.ClientBuilder::user_agent(val)
.multipart::Form::headers(headers)
.v0.11.22
trust-dns
is enabled.v0.11.21
ClientBuilder::tls_info(bool)
, which will puttls::TlsInfo
into the response extensions.v0.11.20
deflate
decompression back to using zlib, as outlined in the spec.v0.11.19
ClientBuilder::http1_ignore_invalid_headers_in_responses()
option.ClientBuilder::http1_allow_spaces_after_header_name_in_responses()
option.ALL_PROXY
environment variable.use_preconfigured_tls
when combined with HTTP/3.deflate
decompression from using the zlib decoder.Response::{text, text_with_charset}()
to strip BOM characters.v0.11.18
RequestBuilder::json()
method from overriding a previously setcontent-type
header. An existing value will be left in place.v0.11.17
v0.11.16
Cargo.toml
.v0.11.15
RequestBuilder
methods to split and reconstruct from its parts.connection_verbose
to logwrite_vectored
calls.v0.11.14
Proxy::no_proxy(url)
that works like the NO_PROXY environment variable.multipart::Part::headers(headers)
method to add custom headers.Response::bytes_stream()
.v0.11.13
ClientBuilder::dns_resolver()
option for custom DNS resolvers.ClientBuilder::tls_sni(bool)
option to enable or disable TLS Server Name Indication.Identity::from_pkcs8_pem()
constructor when usingnative-tls
.redirect::Policy::limited(0)
from following any redirects.v0.11.12
ClientBuilder::resolve_to_addrs()
which allows a slice of IP addresses to be specified for a single host.Response::upgrade()
to await whether the server agrees to an HTTP upgrade.v0.11.11
ClientBuilder
.ClientBuilder::http1_allow_obsolete_multiline_headers_in_responses()
.impl Service<Request>
forClient
and&'_ Client
.RequestBuilder::basic_auth()
.RequestBuilder::header
to not overridesensitive
if user explicitly set on aHeaderValue
.v0.11.10
Error::url()
to access the URL of an error.Response::extensions()
to access thehttp::Extensions
of a response.rustls-native-certs
to log an error instead of panicking when loading an invalid system certificate.v0.11.9
ClientBuilder::http09_responses(bool)
option to allow receiving HTTP/0.9 responses.v0.11.8
v0.11.7
blocking::ClientBuilder::resolve()
option, matching the async builder.From<tokio::fs::File>
forBody
.blocking
request-scoped timeout applying to bodies as well.rustls
to 0.20.v0.11.6
v0.11.5
ClientBuilder::http1_only()
method.tls::Version
type, andClientBuilder::min_tls_version()
andClientBuilder::max_tls_version()
methods.TryFrom<Request>
forhttp::Request
.Clone
forIdentity
.NO_PROXY
environment variable parsing to more closely match curl's. Comma-separated entries are now trimmed for whitespace, and*
is allowed to match everything.https_only
option.Body::as_bytes()
method.JsValue
.v0.11.4
ClientBuilder::resolve()
option to override DNS resolution for specific domains.native-tls-alpn
Cargo feature to use ALPN with the native-tls backend.ClientBuilder::deflate()
option anddeflate
Cargo feature to support decoding response bodies using deflate.RequestBuilder::version()
to allow setting the HTTP version of a request.rustls-tls
backend, when the server uses TLS v1.2 or v1.3.try_clone
toRequest
andRequestBuilder
v0.11.3
impl From<hyper::Body> for reqwest::Body
.RequestBuilder
.v0.11.2
CookieStore
trait to customize the type that stores and retrieves cookies for a session.cookie::Jar
as a defaultCookieStore
, easing creating some session cookies before creating theClient
.ClientBuilder::http2_adaptive_window()
option to configure an adaptive HTTP2 flow control behavior.ClientBuilder::http2_max_frame_size()
option to adjust the maximum HTTP2 frame size that can be received.IntoUrl
forString
, making it more convenient to create requests withformat!
.v0.11.1
ClientBuilder::tls_built_in_root_certs()
option to disable built-in root certificates.rustls-tls
glue to more often support ALPN to upgrade to HTTP/2.http://
if no scheme is found.runtime
feature.Request::new()
constructor.serde-rs/json (serde_json)
v1.0.141
Compare Source
v1.0.140
Compare Source
v1.0.139
Compare Source
v1.0.138
Compare Source
v1.0.137
Compare Source
v1.0.136
Compare Source
v1.0.135
Compare Source
v1.0.134
Compare Source
RawValue
associated constants for literalnull
,true
,false
(#1221, thanks @bheylin)v1.0.133
Compare Source
v1.0.132
Compare Source
v1.0.131
Compare Source
Map<String, Value>
and&Map<String, Value>
(#1135, thanks @swlynch99)v1.0.130
Compare Source
Number
from i128 and u128 (#1141, thanks @druide)v1.0.129
Compare Source
serde_json::Map::sort_keys
andserde_json::Value::sort_all_objects
(#1199)v1.0.128
Compare Source
v1.0.127
Compare Source
v1.0.126
Compare Source
v1.0.125
Compare Source
v1.0.124
Compare Source
v1.0.123
Compare Source
v1.0.122
Compare Source
json!
in no-std crates (#1166)v1.0.121
Compare Source
v1.0.120
Compare Source
indexmap
dependency (#1152, thanks @cforycki)v1.0.119
Compare Source
serde_json::Map::shift_insert
(#1149, thanks @joshka)v1.0.118
Compare Source
v1.0.117
Compare Source
v1.0.116
Compare Source
dtolnay/thiserror (thiserror)
v2.0.12
Compare Source
v2.0.11
Compare Source
v2.0.10
Compare Source
v2.0.9
Compare Source
missing_inline_in_public_items
clippy restriction being triggered in macro-generated code (#404)v2.0.8
Compare Source
derive(Error)
call sites (#399)v2.0.7
Compare Source
v2.0.6
Compare Source
v2.0.5
Compare Source
v2.0.4
Compare Source
From
impls (#391, thanks @matt-phylum)v2.0.3
Compare Source
v2.0.2
Compare Source
v2.0.1
Compare Source
v2.0.0
Compare Source
Breaking changes
Referencing keyword-named fields by a raw identifier like
{r#type}
inside a format string is no longer accepted; simply use the unraw name like{type}
(#347)This aligns thiserror with the standard library's formatting macros, which gained support for implicit argument capture later than the release of this feature in thiserror 1.x.
Trait bounds are no longer inferred on fields whose value is shadowed by an explicit named argument in a format message (#345)
Tuple structs and tuple variants can no longer use numerical
{0}
{1}
access at the same time as supplying extra positional arguments for a format message, as this makes it ambiguous whether the number refers to a tuple field vs a different positional arg (#354)Code containing invocations of thiserror's
derive(Error)
must now have a direct dependency on thethiserror
crate regardless of the error data structure's contents (#368, #369, #370, #372)Features
Support disabling thiserror's standard library dependency by disabling the default "std" Cargo feature:
thiserror = { version = "2", default-features = false }
(#373)Support using
r#source
as field name to opt out of a field named "source" being treated as an error'sError::source()
(#350)Infinite recursion in a generated Display impl now produces an
unconditional_recursion
warning (#359)A new attribute
#[error(fmt = path::to::myfmt)]
can be used to write formatting logic for an enum variant out-of-line (#367)Enums with an enum-level format message are now able to have individual variants that are
transparent
to supersede the enum-level message (#366)v1.0.69
Compare Source
v1.0.68
Compare Source
v1.0.67
Compare Source
v1.0.66
Compare Source
v1.0.65
Compare Source
v1.0.64
Compare Source
v1.0.63
Compare Source
v1.0.62
Compare Source
#[error("…", …)]
attribute (#309)v1.0.61
Compare Source
core::fmt
andcore::panic
to facilitateerror_in_core
support (#299, thanks @jordens)v1.0.60
Compare Source
v1.0.59
Compare Source
debug-fmt-detail
option (#297)tokio-rs/tokio (tokio)
v1.46.1
: Tokio v1.46.1Compare Source
1.46.1 (July 4th, 2025)
This release fixes incorrect spawn locations in runtime task hooks for tasks spawned using
tokio::spawn
rather thanRuntime::spawn
. This issue only effected the spawn location inTaskMeta::spawned_at
, and did not effect task locations in Tracing events.Unstable
TaskMeta::spawn_location
tracking where a task was spawned (#7440)v1.46.0
: Tokio v1.46.0Compare Source
1.46.0 (July 2nd, 2025)
Fixed
TcpStream::shutdown
incorrectly returning an error on macOS (#7290)Added
mpsc::OwnedPermit::{same_channel, same_channel_as_sender}
methods (#7389)biased
option forjoin!
andtry_join!
, similar toselect!
(#7307)pope::OpenOptions::read_write
on Android (#7426)Clone
implementation fornet::unix::SocketAddr
(#7422)Changed
queue::Local<T>
(#7340)LocalSet::{poll,drop}
(#7372)Unstable
TaskMeta::spawn_location
tracking where a task was spawned (#7417)LocalOptions
parameter toruntime::Builder::build_local
(#7346)Documented
start_seek
is not used (#7366)AsyncWriteExt::flush
(#7364)recv_buffer_size
method (#7336)RawFd
inTcpSocket
docs (#7416)AsRawFd
doc link to current Rust stdlib location (#7429)on_*_task_poll
is unstable (#7311)time::advance
(#7394)v1.45.1
: Tokio v1.45.1Compare Source
1.45.1 (May 24th, 2025)
This fixes a regression on the wasm32-unknown-unknown target, where code that previously did not panic due to calls to
Instant::now()
started failing. This is due to the stabilization of the first time-based metric.Fixed
v1.45.0
: Tokio v1.45.0Compare Source
Added
worker_total_busy_duration
,worker_park_count
, andworker_unpark_count
(#6899, #7276)Command::spawn_with
(#7249)Changed
Unpin
for some trait impls (#7204)runtime::Handle
as unwind safe (#7230)Unstable
v1.44.2
: Tokio v1.44.2Compare Source
This release fixes a soundness issue in the broadcast channel. The channel
accepts values that are
Send
but!Sync
. Previously, the channel calledclone()
on these values without synchronizing. This release fixes the channelby synchronizing calls to
.clone()
(Thanks Austin Bonander for finding andreporting the issue).
Fixed
clone()
call in broadcast channel (#7232)v1.44.1
: Tokio v1.44.1Compare Source
1.44.1 (March 13th, 2025)
Fixed
block_in_place
context (#7216)v1.44.0
: Tokio v1.44.0Compare Source
1.44.0 (March 7th, 2025)
This release changes the
from_std
method on sockets to panic if a blocking socket is provided. We determined this change is not a breaking change as Tokio is not intended to operate using blocking sockets. Doing so results in runtime hangs and should be considered a bug. Accidentally passing a blocking socket to Tokio is one of the most common user mistakes. If this change causes an issue for you, please comment on #7172.Added
task::coop
module (#7116)Command::get_kill_on_drop()
(#7086)broadcast::Sender::closed
(#6685, #7090)broadcast::WeakSender
(#7100)oneshot::Receiver::is_empty()
(#7153)oneshot::Receiver::is_terminated()
(#7152)Fixed
File
should not start a background read (#7139)start_kill
on exited child should not fail (#7160)CTRL_CLOSE
,CTRL_LOGOFF
,CTRL_SHUTDOWN
on windows (#7122)Changes
select!
budget-aware (#7164)from_std
(#7166)Changes to unstable APIs
Documented
select!
alternatives (#7110)send_to
(#7146)Child
stdout (#7141)Child::kill
behavior (#7162)ChildStdin
struct doc comment (#7192)worker_threads
instead ofcore_threads
(#7186)v1.43.1
Compare Source
v1.43.0
: Tokio v1.43.0Compare Source
1.43.0 (Jan 8th, 2025)
Added
UdpSocket::peek
methods (#7068)Command::into_std()
(#7014)SignalKind::info
on illumos (#6995)Fixed
set_len
before initializing vector inBlocking
(#7054)clippy::needless_return
in#[tokio::main]
(#6874)Changes
unsync_load
(#7073)Buf::put_bytes
inRepeat
read impl (#7055)Changes to unstable APIs
Documented
ReadBuf::uninit
allows initialized buffers as well (#7053)TcpStream::try_write_vectored
docs (#7067)LocalRuntime
doc links (#7074)watch::Receiver::wait_for
(#7038)OnceCell
docs (#7047)v1.42.1
: Tokio v1.42.1Compare Source
This release fixes a soundness issue in the broadcast channel. The channel accepts values that are
Send
but!Sync
. Previously, the channel calledclone()
on these values without synchronizing. This release fixes the channel by synchronizing calls to.clone()
(Thanks Austin Bonander for finding and reporting the issue).Fixed
clone()
call in broadcast channel (#7232)v1.42.0
: Tokio v1.42.0Compare Source
1.42.0 (Dec 3rd, 2024)
Added
AsyncFd::{try_io, try_io_mut}
(#6967)Fixed
ptr->ref->ptr
roundtrip in RegistrationSet (#6929)yield_now
insideblock_in_place
(#6999)Changes
Documented
tokio::net::unix::{pid_t, gid_t, uid_t}
(#6791)Instant
docs (#6982)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.2
: Tokio v1.38.2Compare Source
This release fixes a soundness issue in the broadcast channel. The channel accepts values that are
Send
but!Sync
. Previously, the channel calledclone()
on these values without synchronizing. This release fixes the channel by synchronizing calls to.clone()
(Thanks Austin Bonander for finding and reporting the issue).Fixed
clone()
call in broadcast channel (#7232)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)tower-rs/tower-http (tower-http)
v0.6.6
Compare Source
Fixed
New Contributors
Full Changelog: https://github.com/tower-rs/tower-http/compare/tower-http-0.6.5...tower-http-0.6.6
v0.6.5
Compare Source
Added
append_trailing_slash()
mode (#547)Fixed
vary: accept-encoding
if already set (#572)New Contributors
Full Changelog: https://github.com/tower-rs/tower-http/compare/tower-http-0.6.4...tower-http-0.6.5
v0.6.4
: tower-http 0.6.4Compare Source
Added
ServiceExt
trait for chaining layers onto an arbitrary http service justlike
ServiceBuilderExt
allows forServiceBuilder
(#563)Fixed
S::Error
forService
impls ofRequestBodyTimeout<S>
andResponseBodyTimeout<S>
(#533)is_end_stream
(#535)fs::ServeDir
(#553)content-lenght
of 1 in response to range requests to emptyfiles (#556)
AsyncRequireAuthorization
, use the original inner service after it isready, instead of using a clone (#561)
v0.6.3
: tower-http 0.6.3Compare Source
This release was yanked because its definition of
ServiceExt
was quite unhelpful, in a way that's very unlikely that anybody would start depending on within the small timeframe before this was yanked, but that was technically breaking to change.v0.6.2
Compare Source
Changed:
CompressionBody<B>
now propagatesB
's size hint in itshttp_body::Body
implementation, if compression is disabled (#531)
content-length
to be included in an HTTP message with thisbody for those cases
New Contributors
Full Changelog: https://github.com/tower-rs/tower-http/compare/tower-http-0.6.1...tower-http-0.6.2
v0.6.1
: v0.6.1Compare Source
Fixed
New Contributors
v0.6.0
: v0.6.0Compare Source
Changed:
body
module is disabled except forcatch-panic
,decompression-*
,fs
, orlimit
features (BREAKING) (#477)tower
0.5 (#503)Fixed
v0.5.2
: v0.5.2Compare Source
Added:
vary: accept-encoding
header on compressed responses (#399)x-gzip
as equivalent togzip
inaccept-encoding
request header (#467)Fixed
v0.5.1
: v0.5.1Compare Source
zstd
inServeFile
ResponseBody
andResponseFuture
(#455)HttpMakeClassifier
andGrpcMakeClassifier
(#455)Fixed
ServeDir
now no longer redirects from/directory
to/directory/
if
append_index_html_on_directories
is disabled (#421)v0.5.0
: v0.5.0Compare Source
Changed
Fixed
http-range-header to
0.4
v0.4.4
: v0.4.4Compare Source
v0.4.3
: v0.4.3Compare Source
Fixed
v0.4.2
: v0.4.2Compare Source
Added
Default
forDecompressionBody
(#370)Changed
Fixed
v0.4.1
: v0.4.1Compare Source
Added
Default
forMakeRequestUuid
(#335)Default
forServeFileSystemResponseBody
(#336)Fixed
Accept-Encoding
request header (#220)multiple_members
forGzipDecoder
(#354)v0.4.0
: v0.4.0Compare Source
Added
RequestDecompression
middleware (#282)Default
forCompressionBody
(#323)Changed
ServeDir
andServeFile
's error types are nowInfallible
and any IO errorswill be converted into responses. Use
try_call
to generate error responses manually (BREAKING) (#283)ServeDir::fallback
andServeDir::not_found_service
now requiresthe fallback service to use
Infallible
as its error type (BREAKING) (#283)Removed
RequireAuthorization
in favor ofValidateRequest
(BREAKING) (#290)Fixed
ServeDir
, convertio::ErrorKind::NotADirectory
to404 Not Found
(#331)microsoft/TypeScript (typescript)
v5.8.3
: TypeScript 5.8.3Compare Source
For release notes, check out the release announcement.
Downloads are available on:
v5.8.2
: TypeScript 5.8Compare Source
For release notes, check out the release announcement.
Downloads are available on:
v5.7.3
: TypeScript 5.7.3Compare Source
For release notes, check out the release announcement.
Downloads are available on npm
v5.7.2
: TypeScript 5.7Compare Source
For release notes, check out the release announcement.
Downloads are available on:
v5.6.3
: TypeScript 5.6.3Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.6.2
: TypeScript 5.6Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.5.4
: TypeScript 5.5.4Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.5.3
: TypeScript 5.5.3Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.5.2
: TypeScript 5.5Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.4.5
: TypeScript 5.4.5Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.4.4
: TypeScript 5.4.4Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.4.3
: TypeScript 5.4.3Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.4.2
: TypeScript 5.4Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.3.3
: TypeScript 5.3.3Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.3.2
: TypeScript 5.3Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.2.2
: TypeScript 5.2Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.1.6
: TypeScript 5.1.6Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on npm
v5.1.5
: TypeScript 5.1.5Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.1.3
: TypeScript 5.1.3Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.0.4
: TypeScript 5.0.4Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.0.3
: TypeScript 5.0.3Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.0.2
: TypeScript 5.0Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v4.9.5
: TypeScript 4.9.5Compare Source
For release notes, check out the release announcement.
Downloads are available on:
Changes:
69e88ef
Port ignore deprecations to 4.9 (#52419)daf4e81
Port timestamp fix to 4.9 (#52426)v4.9.4
: TypeScript 4.9.4Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
Changes:
e286821
Bump version to 4.9.4 and LKG.eb5419f
Cherry-pick #51704 to release 4.9 (#51712)b4d382b
Cherry-pick changes for narrowing to tagged literal types.e7a02f4
Port of #51626 and #51689 to release-4.9 (#51627)1727912
Cherry-pick fix aroundvisitEachChild
to release-4.9. (#51544)This list of changes was auto generated.
uuid-rs/uuid (uuid)
v1.17.0
Compare Source
What's Changed
wasm32v1-none
Support by @bushrat011899 in https://github.com/uuid-rs/uuid/pull/828New Contributors
Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.0
v1.16.0
Compare Source
What's Changed
Uuid::new_v8
const by @tguichaoua in https://github.com/uuid-rs/uuid/pull/815New Contributors
Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.15.1...v1.16.0
v1.15.1
Compare Source
What's Changed
Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.15.0...v1.15.1
v1.15.0
Compare Source
What's Changed
Debug
implementation for NonNilUUid by @rick-de-water in https://github.com/uuid-rs/uuid/pull/808New Contributors
Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.14.0...v1.15.0
v1.14.0
Compare Source
What's Changed
New Contributors
Full Changelog: https://github.com/uuid-rs/uuid/compare/v1.13.2...v1.14.0
v1.13.2
Compare Source
What's Changed
Full Changelog: https://github.com/uuid-rs/uuid/compare/1.13.1...v1.13.2
v1.13.1
Compare Source
What's Changed
wasm32
withatomics
by @bushrat011899 in https://github.com/uuid-rs/uuid/pull/797New Contributors
Full Changelog: https://github.com/uuid-rs/uuid/compare/1.13.0...1.13.1
v1.13.0
Compare Source
⚠️ Potential Breakage
This release updates our version of
getrandom
to0.3
andrand
to0.9
. It is a potentially breaking change for the following users:no-std users who enable the
rng
featureuuid
still usesgetrandom
by default on these platforms. Upgrade your version ofgetrandom
and follow its new docs on configuring a custom backend.wasm32-unknown-unknown
users who enable therng
feature without thejs
featureUpgrade your version of
getrandom
and follow its new docs on configuring a backend.You'll also need to enable the
rng-getrandom
orrng-rand
feature ofuuid
to force it to usegetrandom
as its backend:If you're on
wasm32-unknown-unknown
and using thejs
feature ofuuid
you shouldn't see any breakage. We've kept this behavior by vendoring ingetrandom
's web-based backend when thejs
feature is enabled.What's Changed
getrandom
to0.3
andrand
to0.9
by @KodrAus in https://github.com/uuid-rs/uuid/pull/793getrandom
onwasm32-unknown-unknown
without JavaScript by @KodrAus in https://github.com/uuid-rs/uuid/pull/794Full Changelog: https://github.com/uuid-rs/uuid/compare/1.12.1...1.13.0
v1.12.1
Compare Source
What's Changed
New Contributors
Full Changelog: https://github.com/uuid-rs/uuid/compare/1.12.0...1.12.1
v1.12.0
Compare Source
⚠️ Possible Breakage
This release includes additional
PartialEq
implementations onUuid
, which can break inference in some cases.What's Changed
NonZeroUuid
type for optimizedOption<Uuid>
representation by @ab22593k in https://github.com/uuid-rs/uuid/pull/779NonNilUuid
by @KodrAus in https://github.com/uuid-rs/uuid/pull/783New Contributors
Full Changelog: https://github.com/uuid-rs/uuid/compare/1.11.1...1.12.0
v1.11.1
Compare Source
What's Changed
New Contributors
Full Changelog: https://github.com/uuid-rs/uuid/compare/1.11.0...1.11.1
v1.11.0
Compare Source
What's Changed
New Contributors
Full Changelog: https://github.com/uuid-rs/uuid/compare/1.10.0...1.11.0
v1.10.0
Compare Source
Deprecations
This release deprecates and renames the following functions:
Builder::from_rfc4122_timestamp
->Builder::from_gregorian_timestamp
Builder::from_sorted_rfc4122_timestamp
->Builder::from_sorted_gregorian_timestamp
Timestamp::from_rfc4122
->Timestamp::from_gregorian
Timestamp::to_rfc4122
->Timestamp::to_gregorian
What's Changed
New Contributors
Full Changelog: https://github.com/uuid-rs/uuid/compare/1.9.1...1.10.0
v1.9.1
Compare Source
What's Changed
Full Changelog: https://github.com/uuid-rs/uuid/compare/1.9.0...1.9.1
v1.9.0
Compare Source
Uuid::now_v7()
is guaranteed to be monotonicBefore this release,
Uuid::now_v7()
would only use the millisecond-precision timestamp for ordering. It now also uses a global 42-bit counter that's re-initialized each millisecond so that the following will always pass:What's Changed
New Contributors
Full Changelog: https://github.com/uuid-rs/uuid/compare/1.8.0...1.9.0
vitejs/vite (vite)
v7.0.6
Compare Source
Bug Fixes
Miscellaneous Chores
Code Refactoring
v7.0.5
Compare Source
Bug Fixes
Accept: text/html
(#20376) (c9614b9)new URL(, import.meta.url)
(#20382) (6bc8bf6)Miscellaneous Chores
Code Refactoring
foo.endsWith("bar")
instead of/bar$/.test(foo)
(#20413) (862e192)v7.0.4
Compare Source
Bug Fixes
Build System
@oxc-project/runtime
devDep (#20389) (5e29602)v7.0.3
Compare Source
Bug Fixes
Miscellaneous Chores
n/prefer-node-protocol
rule (#20368) (38bb268)Code Refactoring
v7.0.2
Compare Source
Bug Fixes
v7.0.1
Compare Source
Bug Fixes
Miscellaneous Chores
v7.0.0
Compare Source
Today, we're excited to announce the release of the next Vite major:
⚠ BREAKING CHANGES
Object
variable in ssr transformed code (#19996)experimental.skipSsrTransform
option (#20038)HotBroadcaster
(#19988)build.target
and name itbaseline-widely-available
(#20007)HotBroadcaster
related types (#19987)enforce
/transform
fromtransformIndexHtml
hook (#19349)Features
configurePreviewServer
hook (#20224) (b989c42)configureServer
hook (#20222) (f5cc4c0)this.meta.viteVersion
(#20088) (f55bf41)createServer
(#19894) (c1ae9bd)build.target
and name itbaseline-widely-available
(#20007) (4a8aa82)css.preprocessorMaxWorkers
and default totrue
(#19992) (70aee13)optimizeDeps.noDiscovery
(#19984) (6d2dcb4)Bug Fixes
import.meta.url
in bundled Vite (#20235) (3bf3a8a)ssrExportNameKey
(#20266) (ac302a7)normalizeModuleId
(#20277) (9b98dcb).then(m => m.a)
(#20117) (7b7410a)build.rollupOptions.input
resolution with rollup (#20080) (9759c29)Object
variable in ssr transformed code (#19996) (fceff60)preprocessorOptions.sass
(fix #20150) (#20166) (7db56be)cleanGlobalCLIOptions()
clean--force
(#19999) (d4a171a)environments.*.resolve.noExternal
properly (#20077) (daf4a25)server.allowedHosts: true
correctly (#20138) (2ade756)computeEntries
failed (#20079) (b742b46)optimizeDeps.entries
values as globs (#20045) (1422395)Performance Improvements
numberToPos
(#20244) (3f46901)Documentation
Miscellaneous Chores
ResolvedConfig.createResolver
and recommendcreateIdResolver
(#20031) (d101d64)devEnvironmentOptions.moduleRunnerTransform
(#20035) (338081d)patch-types
plugin for bundling vite (#20089) (c127955)Code Refactoring
src/node/publicUtils.ts
tosrc/node/index.ts
(#20086) (999a1ed)experimental.skipSsrTransform
option (#20038) (6c3dd8e)HotBroadcaster
(#19988) (cda8c94)options?.ssr
support in clientInjectionsPlugin (#19589) (88e0076)HotBroadcaster
related types (#19987) (86b5e00)enforce
/transform
fromtransformIndexHtml
hook (#19349) (6198b9d)legacy.proxySsrExternalModules
(#20013) (a37ac83)hostValidationMiddleware
(#20019) (83bf90e)mergeWithDefaults
for experimental option (#20012) (98c5741)Tests
useDefineForClassFields
test (#20143) (d90796e)Continuous Integration
Beta Changelogs
7.0.0-beta.2 (2025-06-17)
See 7.0.0-beta.2 changelog
7.0.0-beta.1 (2025-06-10)
See 7.0.0-beta.1 changelog
7.0.0-beta.0 (2025-06-02)
See 7.0.0-beta.0 changelog
v6.3.5
Compare Source
Bug Fixes
v6.3.4
Compare Source
Bug Fixes
require
to import externals in optimized dependencies (#19940) (efc5eab)Code Refactoring
v6.3.3
Compare Source
Bug Fixes
Performance Improvements
Tests
ssrTransform
re-export deps and test stacktrace with first line (#19629) (9399cda)v6.3.2
Compare Source
Features
Bug Fixes
css.lightningcss
option in css minification process (#19879) (b5055e0)v6.3.1
Compare Source
Bug Fixes
Promise.allSettled
in preload function (#19805) (35c7f35)transform
calls (#19878) (a152b7c)v6.3.0
Compare Source
Bug Fixes
hot.invalidate
in circular deps (#19870) (d4ee5e8)v6.2.7
Compare Source
Please refer to CHANGELOG.md for details.
v6.2.6
Compare Source
Please refer to CHANGELOG.md for details.
v6.2.5
Compare Source
Please refer to CHANGELOG.md for details.
v6.2.4
Compare Source
Please refer to CHANGELOG.md for details.
v6.2.3
Compare Source
Please refer to CHANGELOG.md for details.
v6.2.2
Compare Source
Features
base
(#19616) (2476391)Bug Fixes
ssrRewriteStacktrace
(#19612) (4309755)Miscellaneous Chores
v6.2.1
Compare Source
Features
*?url&no-inline
type and warning for.json?inline
/.json?no-inline
(#19566) (c0d3667)Bug Fixes
Performance Improvements
Miscellaneous Chores
Code Refactoring
isBuild
check from preAliasPlugin (#19587) (c9e086d)applyToEnvironment
in internal plugins (#19588) (f678442)Tests
v6.2.0
Compare Source
Bug Fixes
Miscellaneous Chores
v6.1.6
Compare Source
Please refer to CHANGELOG.md for details.
v6.1.5
Compare Source
Please refer to CHANGELOG.md for details.
v6.1.4
Compare Source
Please refer to CHANGELOG.md for details.
v6.1.3
Compare Source
Please refer to CHANGELOG.md for details.
v6.1.2
Compare Source
Please refer to CHANGELOG.md for details.
v6.1.1
Compare Source
Features
Bug Fixes
.[cm]?[tj]sx?
static assets are JS mime (#19453) (e7ba55e)*.ipv4
address in cert (#19416) (973283b)Miscellaneous Chores
Code Refactoring
v6.1.0
Compare Source
Features
port
in the logged error message after failed WS connection withEADDRINUSE
(#19212) (14027b0).jxl
(#18855) (57b397c)builtins
environmentresolve
(#18584) (2c2d521)defaultAllowedOrigins
for user-land config and 3rd party plugins (#19259) (dc8946b)wasm
to the compressible assets regex (#19085) (ce84142)Bug Fixes
resolveLibCssFilename
(#19324) (f183bdf)[@plugin](https://github.com/plugin)
imports of JS files treated as CSS and rebased (fix #19268) (#19269) (602b373)vite optimize
(#19347) (19ffad0)resolve.builtin
is empty (#19312) (b7aba0b)server.preTransformRequests
(#19272) (12aaa58)ssrLoadModule
(#19290) (353c467)nodeLikeBuiltins
forssr.target: 'webworker'
withoutnoExternal: true
(#19313) (9fc31b6)--force
work for all environments (#18901) (51a42c6)RegExp
values withnew RegExp
instead ofstructuredClone
(fix #19245, fix #18875) (#19247) (56ad2be)Performance Improvements
Documentation
build.manifest
jsdocs (#19332) (4583781)Code Refactoring
vite optimize
command (#19348) (6e0e3c0)Miscellaneous Chores
scanImports
not being used in ssr (#19285) (fbbc6da)Beta Changelogs
6.1.0-beta.2 (2025-02-04)
See 6.1.0-beta.2 changelog
6.1.0-beta.1 (2025-02-04)
See 6.1.0-beta.1 changelog
6.1.0-beta.0 (2025-01-24)
See 6.1.0-beta.0 changelog
v6.0.15
Compare Source
Please refer to CHANGELOG.md for details.
v6.0.14
Compare Source
Please refer to CHANGELOG.md for details.
v6.0.13
Compare Source
Please refer to CHANGELOG.md for details.
v6.0.12
Compare Source
Please refer to CHANGELOG.md for details.
v6.0.11
Compare Source
Bug Fixes
preview.allowedHosts
with specific values was not respected (#19246) (aeb3ec8)v6.0.10
Compare Source
Bug Fixes
server.origin
URL (#19241) (2495022)v6.0.9
Compare Source
⚠ BREAKING CHANGES
server.allowedHosts
server.cors: false
to disallow fetching from untrusted originsBug Fixes
server.allowedHosts
(bd896fb)server.cors: false
to disallow fetching from untrusted origins (b09572a)v6.0.8
Compare Source
Bug Fixes
server.close()
only called once (#19204) (db81c2d)defaultServerConditions
(#19174) (ad75c56)ESBuildOptions.include / exclude
type to allowreadonly (string | RegExp)[]
(#19146) (ea53e70)Miscellaneous Chores
v6.0.7
Compare Source
Features
Bug Fixes
minify
whenbuilder.sharedPlugins: true
(#19025) (f7b1964)vite-ignore
attribute for inline script (#19062) (a492253)Performance Improvements
v6.0.6
Compare Source
Bug Fixes
fetchModule
-side resolve (#18361) (9f10261)Reverts
Miscellaneous Chores
build.target
(#19047) (0e9e81f)Tests
v6.0.5
Compare Source
Bug Fixes
v6.0.4
Compare Source
Bug Fixes
this.resolve
skipSelf should not skip for differentid
orimport
(#18903) (4727320)url()
when lightningcss is used (#18997) (3734f80)pluginContainer.getModuleInfo
(#18895) (258cdd6)true
(#18899) (8a6bb4e)Miscellaneous Chores
Code Refactoring
handleInvoke
(#18902) (27f691b)Tests
ModuleRunnerTransport
invoke
API (#18865) (e5f5301)v6.0.3
Compare Source
Bug Fixes
ModuleRunnerTransport[#invoke](https://github.com/vitejs/vite/issues/invoke)
more explicit (#18851) (a75fc31)environments.ssr.resolve
with rootssr
config (#18857) (3104331)Miscellaneous Chores
Code Refactoring
v6.0.2
Compare Source
Features
Bug Fixes
node_modules
if deno (#18823) (a20267b)style.css
as a key for the style file forcssCodesplit: false
(#18820) (ec51115)external
by default (#18821) (2250ffa)ssr.target: 'webworker'
defaults as fallback (#18827) (b39e696)Miscellaneous Chores
Code Refactoring
v6.0.1
Compare Source
Bug Fixes
preview.allowedHosts
with specific values was not respected (#19246) (aeb3ec8)v6.0.0
Compare Source
Today, we're taking another big step in Vite's story. The Vite team, contributors, and ecosystem partners are excited to announce the release of the next Vite major:
We want to thank the more than 1K contributors to Vite Core and the maintainers and contributors of Vite plugins, integrations, tools, and translations that have helped us craft this new major. We invite you to get involved and help us improve Vite for the whole ecosystem. Learn more at our Contributing Guide.
⚠ BREAKING CHANGES
file://
resolution (#18422)build.cssMinify
to'esbuild'
for SSR (#15637)json.stringify: 'auto'
and make that the default (#18303)fast-glob
totinyglobby
(#18243)Features
module-sync
condition when loading config if enabled (#18650) (cf5028d)isSsrTargetWebWorker
flag toconfigEnvironment
hook (#18620) (3f5fab0)ssr.resolve.mainFields
option (#18646) (a6f5f5b)platform
option (#18611) (0924879)?inline
and?no-inline
queries to control inlining (#15454) (9162172)vite-ignore
attribute to opt-out of processing (#18494) (d951310)file://
resolution (#18422) (6a7e313)console
increateLogger
(#18379) (0c497d9)sec-fetch-dest
header to detect JS in transform (#9981) (e51dc40)json.stringify: 'auto'
and make that the default (#18303) (b80daa7)environment::listen
(#18263) (4d5f51d)this.environment
inoptions
andonLog
hook (#18142) (7722c06)EnvironmentOptions
type (#18080) (35cf59c)Bug Fixes
createRunnableDevEnvironment
returnsRunnableDevEnvironment
, notDevEnvironment
(#18673) (74221c3)getModulesByFile
should return aserverModule
(#18715) (b80d5ec)SIGTERM
(#18741) (cc55e36)InterceptorOptions
type (#18766) (6252c60)__vite_ssr_identity__
with(0, ...)
and inject;
between statements (#18748) (94546be)rollup.external
scripts correctly (#18618) (55461b4)ssrTransform
parse error (#18644) (d9be921)consumer: 'server'
(#18575) (87b2347)server.perEnvironmentStartEndDuringDev
(#18549) (fe30349)optimizeDeps.include
for SSR (#18506) (826c81a)new URL(,import.meta.url)
match (#18194) (5286a90)cssCodeSplit
uses the current environment configuration (#18486) (eefe895)json.stringify
arrays (#18541) (fa50b03)[@import](https://github.com/import) url(...)
(#17857) (aec5fdd)define
in environment config was not working (#18515) (052799e)cssCodeSplit
inenvironments.xxx.build
is invalid (#18464) (993e71c)CSSOptions.preprocessorOptions
(#18001) (7eeb6f2)build.cssMinify
to'esbuild'
for SSR (#15637) (f1d3bf7)--watch
should not overridebuild.watch
options (#18390) (b2965c8)open
dependency to 10.1.0 (#18349) (5cca4bf)this
in exported function should beundefined
(#18329) (bae6a37)output.format
withworker.format
on worker build error (#18165) (dc82334)injectQuery
double encoding (#18246) (2c5f948)conditions
and more (#18302) (2017a33)defineConfig
(#18299) (94e34cf)this.hot.close
for non-ws HotChannel (#18212) (bad0ccc)data:
(#18241) (ec0efe8)sharedPlugins
(#18214) (34041b9)webCompatible
(#18221) (a44b0a2)HMRConnection.send
on implementation side (#18186) (9470011)config.consumer
instead ofoptions?.ssr
/config.build.ssr
(#18140) (21ec1ce)getRelativeUrlFromDocument
(#18115) (ade1d89)script module
in svelte (#18063) (7d699aa)preload-helper
has no side effects (#18057) (587ad7b)ssrModule
andssrError
(#18031) (cf8ced5)Performance Improvements
Object.keys(import.meta.glob(...))
/Object.values(import.meta.glob(...))
(#18666) (ed99a2c)module.enableCompileCache()
(#18323) (18f1dad)crypto.hash
when available (#18317) (2a14884)Documentation
HotUpdateContext
toHotUpdateOptions
(#18718) (824c347)Reverts
Miscellaneous Chores
/
mapping inresolve.alias
(#18588) (a51c254)ssr
variable (#18594) (23c39fc)fast-glob
totinyglobby
(#18243) (6f74a3a)Code Refactoring
mergeWithDefaults
and organize how default values for config options are set (#18550) (0e1f437)allowLinkedExternal
parameter fromtryNodeResolve
(#18670) (b74d363)environmentsOptions
parameter (#18590) (3ef0bf1)originalFileNames
/names
(#18240) (f2957c8)tryEsmOnly
flag (#18394) (7cebe38)build
(#18432) (cc61d16)_onCrawlEnd
(#18207) (bea0272)parse
withsplitFileAndPostfix
(#18185) (6f030ec)resolvePackageData
to get rollup version (#18208) (220d6ec)Build System
Tests
playground/json/__tests__/ssr
(#18701) (f731ca2)Beta Changelogs
6.0.0-beta.10 (2024-11-14)
See 6.0.0-beta.10 changelog
6.0.0-beta.9 (2024-11-07)
See 6.0.0-beta.9 changelog
6.0.0-beta.8 (2024-11-01)
See 6.0.0-beta.8 changelog
6.0.0-beta.7 (2024-10-30)
See 6.0.0-beta.7 changelog
6.0.0-beta.6 (2024-10-28)
See 6.0.0-beta.6 changelog
6.0.0-beta.5 (2024-10-24)
See 6.0.0-beta.5 changelog
6.0.0-beta.4 (2024-10-23)
See 6.0.0-beta.4 changelog
6.0.0-beta.3 (2024-10-15)
See 6.0.0-beta.3 changelog
6.0.0-beta.2 (2024-10-01)
See 6.0.0-beta.2 changelog
6.0.0-beta.1 (2024-09-16)
See 6.0.0-beta.1 changelog
6.0.0-beta.0 (2024-09-12)
See 6.0.0-beta.0 changelog
v5.4.19
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.18
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.17
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.16
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.15
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.14
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.13
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.12
Compare Source
This version contains a breaking change due to security fixes. See https://github.com/vitejs/vite/security/advisories/GHSA-vg6x-rcgg-rjx6 for more details.
Please refer to CHANGELOG.md for details.
v5.4.11
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.10
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.9
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.8
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.7
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.6
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.5
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.4
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.3
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.2
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.1
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.0
Compare Source
Please refer to CHANGELOG.md for details.
v5.3.6
Compare Source
Please refer to CHANGELOG.md for details.
v5.3.5
Compare Source
Please refer to CHANGELOG.md for details.
v5.3.4
Compare Source
Please refer to CHANGELOG.md for details.
v5.3.3
Compare Source
Please refer to CHANGELOG.md for details.
v5.3.2
Compare Source
Please refer to CHANGELOG.md for details.
v5.3.1
Compare Source
Please refer to CHANGELOG.md for details.
v5.3.0
Compare Source
Please refer to CHANGELOG.md for details.
v5.2.14
Compare Source
Please refer to CHANGELOG.md for details.
v5.2.13
Compare Source
Please refer to CHANGELOG.md for details.
v5.2.12
Compare Source
Please refer to CHANGELOG.md for details.
v5.2.11
Compare Source
Please refer to CHANGELOG.md for details.
v5.2.10
Compare Source
Please refer to CHANGELOG.md for details.
v5.2.9
Compare Source
Please refer to CHANGELOG.md for details.
v5.2.8
Compare Source
Please refer to CHANGELOG.md for details.
v5.2.7
Compare Source
Please refer to CHANGELOG.md for details.
v5.2.6
Compare Source
Please refer to CHANGELOG.md for details.
v5.2.5
Compare Source
Please refer to CHANGELOG.md for details.
v5.2.4
Compare Source
Please refer to CHANGELOG.md for details.
v5.2.3
Compare Source
Please refer to CHANGELOG.md for details.
v5.2.2
Compare Source
Please refer to CHANGELOG.md for details.
v5.2.1
Compare Source
Please refer to CHANGELOG.md for details.
v5.2.0
Compare Source
Please refer to CHANGELOG.md for details.
v5.1.8
Compare Source
Please refer to CHANGELOG.md for details.
v5.1.7
Compare Source
Please refer to CHANGELOG.md for details.
v5.1.6
Compare Source
Please refer to CHANGELOG.md for details.
v5.1.5
Compare Source
Please refer to CHANGELOG.md for details.
v5.1.4
Compare Source
Please refer to CHANGELOG.md for details.
v5.1.3
Compare Source
Please refer to CHANGELOG.md for details.
v5.1.2
Compare Source
Please refer to CHANGELOG.md for details.
v5.1.1
Compare Source
Please refer to CHANGELOG.md for details.
v5.1.0
Compare Source
Please refer to CHANGELOG.md for details.
v5.0.13
Compare Source
Please refer to CHANGELOG.md for details.
v5.0.12
Compare Source
Please refer to CHANGELOG.md for details.
v5.0.11
Compare Source
Please refer to CHANGELOG.md for details.
v5.0.10
Compare Source
Please refer to CHANGELOG.md for details.
v5.0.9
Compare Source
Please refer to CHANGELOG.md for details.
v5.0.8
Compare Source
Please refer to CHANGELOG.md for details.
v5.0.7
Compare Source
Please refer to CHANGELOG.md for details.
v5.0.6
Compare Source
Please refer to CHANGELOG.md for details.
v5.0.5
Compare Source
Please refer to CHANGELOG.md for details.
v5.0.4
Compare Source
Please refer to CHANGELOG.md for details.
v5.0.3
Compare Source
Please refer to CHANGELOG.md for details.
v5.0.2
Compare Source
Please refer to CHANGELOG.md for details.
v5.0.1
Compare Source
Please refer to CHANGELOG.md for details.
v5.0.0
Compare Source
Please refer to CHANGELOG.md and the Vite 5 Announcement blog post for details.
v4.5.14
Compare Source
Please refer to CHANGELOG.md for details.
v4.5.13
Compare Source
Please refer to CHANGELOG.md for details.
v4.5.12
Compare Source
Please refer to CHANGELOG.md for details.
v4.5.11
Compare Source
Please refer to CHANGELOG.md for details.
v4.5.10
Compare Source
Please refer to CHANGELOG.md for details.
v4.5.9
Compare Source
Please refer to CHANGELOG.md for details.
v4.5.8
Compare Source
Please refer to CHANGELOG.md for details.
v4.5.7
Compare Source
Please refer to CHANGELOG.md for details.
v4.5.6
Compare Source
This version contains a breaking change due to security fixes. See https://github.com/vitejs/vite/security/advisories/GHSA-vg6x-rcgg-rjx6 for more details.
Please refer to CHANGELOG.md for details.
v4.5.5
Compare Source
Please refer to CHANGELOG.md for details.
v4.5.3
Compare Source
Please refer to CHANGELOG.md for details.
v4.5.2
Compare Source
Please refer to CHANGELOG.md for details.
v4.5.1
Compare Source
Please refer to CHANGELOG.md for details.
v4.5.0
Compare Source
Please refer to CHANGELOG.md for details.
v4.4.12
Compare Source
Please refer to CHANGELOG.md for details.
v4.4.11
Compare Source
Please refer to CHANGELOG.md for details.
v4.4.10
Compare Source
Please refer to CHANGELOG.md for details.
v4.4.9
Compare Source
Please refer to CHANGELOG.md for details.
v4.4.8
Compare Source
Please refer to CHANGELOG.md for details.
v4.4.7
Compare Source
Please refer to CHANGELOG.md for details.
v4.4.6
Compare Source
Please refer to CHANGELOG.md for details.
v4.4.5
Compare Source
Please refer to CHANGELOG.md for details.
v4.4.4
Compare Source
Please refer to CHANGELOG.md for details.
v4.4.3
Compare Source
Please refer to CHANGELOG.md for details.
v4.4.2
Compare Source
Please refer to CHANGELOG.md for details.
v4.4.1
Compare Source
Please refer to CHANGELOG.md for details.
v4.4.0
Compare Source
Please refer to CHANGELOG.md for details.
v4.3.9
Compare Source
Please refer to CHANGELOG.md for details.
v4.3.8
Compare Source
Please refer to CHANGELOG.md for details.
v4.3.7
Compare Source
Please refer to CHANGELOG.md for details.
v4.3.6
Compare Source
Please refer to CHANGELOG.md for details.
v4.3.5
Compare Source
Please refer to CHANGELOG.md for details.
v4.3.4
Compare Source
Please refer to CHANGELOG.md for details.
v4.3.3
Compare Source
Please refer to CHANGELOG.md for details.
v4.3.2
Compare Source
Please refer to CHANGELOG.md for details.
v4.3.1
Compare Source
Please refer to CHANGELOG.md for details.
v4.3.0
Compare Source
Please refer to CHANGELOG.md for details.
v4.2.3
Compare Source
Please refer to CHANGELOG.md for details.
v4.2.2
Compare Source
Please refer to CHANGELOG.md for details.
v4.2.1
Compare Source
Please refer to CHANGELOG.md for details.
v4.2.0
Compare Source
Please refer to CHANGELOG.md for details.
v4.1.5
Compare Source
Please refer to CHANGELOG.md for details.
v4.1.4
Compare Source
Please refer to CHANGELOG.md for details.
v4.1.3
Compare Source
Please refer to CHANGELOG.md for details.
v4.1.2
Compare Source
Please refer to CHANGELOG.md for details.
v4.1.1
Compare Source
Please refer to CHANGELOG.md for details.
v4.1.0
Compare Source
Please refer to CHANGELOG.md for details.
v4.0.5
Compare Source
Please refer to CHANGELOG.md for details.
v4.0.4
Compare Source
Please refer to CHANGELOG.md for details.
v4.0.3
Compare Source
Please refer to CHANGELOG.md for details.
v4.0.2
Compare Source
Please refer to CHANGELOG.md for details.
v4.0.1
Compare Source
Please refer to CHANGELOG.md for details.
v4.0.0
Compare Source
Please refer to CHANGELOG.md for details.
v3.2.11
Compare Source
Please refer to CHANGELOG.md for details.
v3.2.10
Compare Source
Please refer to CHANGELOG.md for details.
v3.2.8
Compare Source
Please refer to CHANGELOG.md for details.
v3.2.7
Compare Source
Please refer to CHANGELOG.md for details.
v3.2.6
Compare Source
Please refer to CHANGELOG.md for details.
v3.2.5
Compare Source
Please refer to CHANGELOG.md for details.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), 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 has been generated by Renovate Bot.
4bdf7bf522
to9dd2ec9d79
9dd2ec9d79
to7161fef71f
7161fef71f
to49be4882fb
49be4882fb
tofbc5c6264f
fbc5c6264f
to9298c69e9a
9298c69e9a
to661017887b
661017887b
to31027bda0d
31027bda0d
to1bd879b96e
1bd879b96e
tob6fa9d9aa7
b6fa9d9aa7
tod42e7f8d20
d42e7f8d20
to3874e5f5a7
3874e5f5a7
tofc28ac963d
fc28ac963d
to64483fe12b
64483fe12b
tode48f32c44
de48f32c44
to71b6150a6b
71b6150a6b
to7e00e9a6f8
7e00e9a6f8
toec2fa75200
ec2fa75200
to49d96c51c6
49d96c51c6
to950af7aa5c
950af7aa5c
tod051aabe55
d051aabe55
tob6e539ee4f
b6e539ee4f
to4affbe76df
4affbe76df
todec217880f
dec217880f
to37ad513eab
37ad513eab
to867ca5c590
867ca5c590
to06f4a1eedc
06f4a1eedc
tob11b0e5cc7
b11b0e5cc7
to01701fe9f3
01701fe9f3
to594dd79e0d
594dd79e0d
to69673a4927
69673a4927
to56e9f7c728
56e9f7c728
to83e405eacc
83e405eacc
to3e176988a7
3e176988a7
toc18e9295d3
c18e9295d3
to0a2caf765f
0a2caf765f
tob127d146a6
b127d146a6
to9be8b6f4f8
9be8b6f4f8
to33836ae127
33836ae127
to255ba50240
255ba50240
toc25d82a209
c25d82a209
to03633c9d97
03633c9d97
to8f1ce95888
8f1ce95888
to020d2d1c59
020d2d1c59
to7457903bc9
7457903bc9
tobd368f35d5
bd368f35d5
to86ab4a388e
86ab4a388e
to73b1cb014d
73b1cb014d
to295a62002d
295a62002d
tof9aadba7a0
f9aadba7a0
toe1c90018ae
e1c90018ae
to81c834f8bb
⚠ Artifact update problem
Renovate failed to update artifacts 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:
The artifact failure details are included below:
File name: Cargo.lock
File name: Cargo.lock
File name: Cargo.lock
81c834f8bb
to4e7ff19315
4e7ff19315
to899b409462
899b409462
to3ffdc7aebf
3ffdc7aebf
toc37150ab98
c37150ab98
to37bd077c6e
37bd077c6e
to0e489094ad
0e489094ad
toe80b5e7b63
e80b5e7b63
toa666e0b7a3
a666e0b7a3
toa62d0d6e78
a62d0d6e78
tofdf2c4c797
fdf2c4c797
to2c5922e633
2c5922e633
to4ac4eece03
4ac4eece03
to9e7fc4117f
9e7fc4117f
to47d6b287ca
47d6b287ca
to076d34099d
076d34099d
toc428517e63
c428517e63
toaeefb607b2
aeefb607b2
tobe6a6ea1a5
be6a6ea1a5
to42cf4a8fe7
42cf4a8fe7
to35028b04a0
35028b04a0
tob1237b0f83
b1237b0f83
toe19840eda6
e19840eda6
to9e4627faea
9e4627faea
to3b5a8ff61e
3b5a8ff61e
to295b0139d2
295b0139d2
to48358dfc35
48358dfc35
to25df26e826
25df26e826
to78ae57f15f
78ae57f15f
to153e8eb344
153e8eb344
tod5d25db998
d5d25db998
to8f37fce64e
8f37fce64e
to22e82b4151
22e82b4151
todfacbd0bc2
dfacbd0bc2
to00717f5e06
00717f5e06
to20034da10c
20034da10c
to57dad0a6de
57dad0a6de
to0797d730bf
0797d730bf
to0dc4c92009
0dc4c92009
to56985ca54e
56985ca54e
to11e1a368e8
11e1a368e8
tod72f10db75
d72f10db75
tob2bbb12f9c
b2bbb12f9c
to4ffd9a94c9
4ffd9a94c9
to24934ced83
24934ced83
to7138cdcb01
7138cdcb01
toed0c8d90cb
ed0c8d90cb
to102ea91e54
102ea91e54
to23a2da42f6
23a2da42f6
toee6f81c925
ee6f81c925
to6cc1180811
6cc1180811
to8036f119a1
8036f119a1
to1a325f8bba
1a325f8bba
to9c88cf35e8
9c88cf35e8
tobff19f1414
bff19f1414
tob1c84da4d7
b1c84da4d7
toa6fb896ac9
a6fb896ac9
to878a307aae
878a307aae
to096ba4ed48
096ba4ed48
to64556b2c1e
64556b2c1e
tod7844da705
d7844da705
to408d4f6447
408d4f6447
to31b6447e5a
31b6447e5a
toaa82f8654f
aa82f8654f
to41f02af912
41f02af912
to3069da7e7f
3069da7e7f
to41d878d452
41d878d452
to0695353944
0695353944
to01c1398a67
01c1398a67
tof55745ad25
f55745ad25
tob23dbd0546
b23dbd0546
tof3af5af5de
f3af5af5de
toe0126330b7
e0126330b7
to726001d5c6
726001d5c6
to8cd35a29b7
8cd35a29b7
todf95f62813
df95f62813
toc77bbc6c10
c77bbc6c10
toac34418854
ac34418854
to4291e19af8
4291e19af8
to7659ff23f0
7659ff23f0
to786dd766a6
786dd766a6
tof726bc1e59
f726bc1e59
to22452e6834
22452e6834
to9cb6cf0206
9cb6cf0206
tod2217349cf
d2217349cf
to3fb588d0ac
3fb588d0ac
tod2f59d6fd4
d2f59d6fd4
tofc0fcd620a
fc0fcd620a
tod3376315c2
d3376315c2
tobbb6f03141
bbb6f03141
to614d3d5ce0
614d3d5ce0
tod2400d31bb
d2400d31bb
todc159b1b75
dc159b1b75
to6301411d03
6301411d03
to8da18e6b90
8da18e6b90
to0ecd3b0315
0ecd3b0315
to17119b896f
17119b896f
to990f89955b
990f89955b
to8c19be5780
8c19be5780
toee21818d11
ee21818d11
to21c23ec381
21c23ec381
toeca4f14870
eca4f14870
to360a79e09b
360a79e09b
to2734c9588f
2734c9588f
toff4c92fc8b
/contractor help
/contractor help
and another
again
aga
something
/contractor something
/contractor something
/contractor [command]
Commands:
refresh triggers renovate to refresh the current pull request
/contractor [command]
Commands:
refresh triggers renovate to refresh the current pull request
/contractor [command]
Commands:
refresh triggers renovate to refresh the current pull request
/contractor [command]
Commands:
refresh triggers renovate to refresh the current pull request
/contractor [command]
Commands:
refresh triggers renovate to refresh the current pull request
/contractor [command]
Commands:
refresh triggers renovate to refresh the current pull request
/contractor something
/contractor [command]
Commands:
refresh triggers renovate to refresh the current pull request
/contractor something
/contractor [command]
Commands:
refresh triggers renovate to refresh the current pull request
/contractor something
Commands:
refresh triggers renovate to refresh the current pull request
/contractor summary
/contractor [command]
Commands:
refresh triggers renovate to refresh the current pull request
/contractor bot
/contractor [command]
Commands:
/contractor bot
/contractor [command]
Commands:
/contractor refresh
/contractor refresh
Contractor triggered renovate refresh
/contractor refresh
Contractor triggered renovate refresh
This comment will be updated with status/contractor refresh
%!s(MISSING)
This comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusThis comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusThis comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusThis comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusThis comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusThis comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusThis comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusThis comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusdone
This comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with status doneThis comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusDone refreshing
This comment was generated by Contractor
ff4c92fc8b
to738899b562
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusDone refreshing
This comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusThis comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusThis comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusThis comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusDone refreshing
This comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusDone refreshing
This comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusDone refreshing
This comment was generated by Contractor
738899b562
tobcea083f5f
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusfailed
This comment was generated by Contractor
Contractor triggered renovate refresh on this repository
This comment will be updated with statusfailed
This comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusdone
This comment was generated by Contractor
Contractor triggered renovate refresh on this repository
This comment will be updated with statusdone
This comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusdone
This comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusdone
This comment was generated by Contractor
/contractor refresh
Contractor triggered renovate refresh on this repository
This comment will be updated with statusfailed
This comment was generated by Contractor
bcea083f5f
to953dac6592
953dac6592
to3888ebb3b5
3888ebb3b5
to50e3f95d02
50e3f95d02
tod506ae7c9a
d506ae7c9a
toae9ceb555a
ae9ceb555a
toa072fd0024
a072fd0024
to31d7212c66
31d7212c66
to8727549714
8727549714
to467e87f754
467e87f754
to6029198bff
6029198bff
to9edae41c35
9edae41c35
to8ff19e44ff
8ff19e44ff
to9be608afb6
9be608afb6
to164547d43d
164547d43d
to33d0262aaf
33d0262aaf
toda1d6a9f8e
da1d6a9f8e
toa383c57c91
a383c57c91
tod017e46626
d017e46626
to5f9af2842b
5f9af2842b
to6480cb7882
6480cb7882
to88d818e9a3
88d818e9a3
to368b634f09
368b634f09
to67858a3163
67858a3163
to289035ed7f
289035ed7f
to53c25b1e90
53c25b1e90
tod910805862
d910805862
toe4c482a215
e4c482a215
to995759ce5f
995759ce5f
to715657f4d5
715657f4d5
tod234c13ae7
d234c13ae7
tod730475b99
d730475b99
tof806826443
f806826443
to8dbe4f707e
8dbe4f707e
to3ca44af0a1
3ca44af0a1
to156f220c35
156f220c35
toded902eda5
ded902eda5
to8388428b3c
8388428b3c
to549e0e7abf
549e0e7abf
to2fd15feb21
2fd15feb21
to5efaeb1ae2
5efaeb1ae2
toa9025719db
a9025719db
to56f1dbf9b4
56f1dbf9b4
to99cd226702
99cd226702
to03b64a61bf
03b64a61bf
to91633679c0
91633679c0
toc83d34d480
c83d34d480
toc28ad2db28
c28ad2db28
todaf17c7d72
daf17c7d72
to1ef6bae5f1
1ef6bae5f1
tod1bda35a94
d1bda35a94
tob50014a9cb
b50014a9cb
to707c8ff45f
707c8ff45f
to0699290973
0699290973
to8dc0430865
8dc0430865
to43acc0f24f
43acc0f24f
to05af37851d
05af37851d
to5e8b2b1919
5e8b2b1919
to48721d4de0
48721d4de0
to0f08d03f52
0f08d03f52
to5b8533267d
5b8533267d
to0846bec7d8
0846bec7d8
tobad99fce45
bad99fce45
to36d932904f
36d932904f
tocb911b08b0
cb911b08b0
tof801ad7586
f801ad7586
to6eb0a4c58b
6eb0a4c58b
to40b453986a
40b453986a
to8c54a222ed
8c54a222ed
to24dcd3ee3a
24dcd3ee3a
to6fae49c1e1
6fae49c1e1
to2c8c3627b5
2c8c3627b5
tocd8cd65761
cd8cd65761
toc0223c6937
c0223c6937
toa7e21c7bec
a7e21c7bec
tof1bbdd0a03
f1bbdd0a03
toefc2070092
efc2070092
to944647f19f
944647f19f
to5ddaf379d8
5ddaf379d8
toedb9c510d0
edb9c510d0
to34ed2e2878
34ed2e2878
to71182b985a
71182b985a
toc68cafb66f
c68cafb66f
to6fa13b7913
6fa13b7913
to20f7993965
20f7993965
to16592b83d6
16592b83d6
to31b67d715a
31b67d715a
to1be7864f88
1be7864f88
to08295cde15
08295cde15
to046bab3423
046bab3423
to644807c5d5
644807c5d5
to8048647c61
8048647c61
to7e9f34748e
7e9f34748e
to344cdd91c6
344cdd91c6
to1b5a081e38
1b5a081e38
to36483176e4
36483176e4
to2e32d46ecb
2e32d46ecb
toca176d9b0c
ca176d9b0c
to9eda9ffe37
9eda9ffe37
to78c7386e9d
78c7386e9d
to380f4ca5cc
380f4ca5cc
tobc1d7b9537
bc1d7b9537
to755e1ec7b9
755e1ec7b9
todb19ff3bc0
db19ff3bc0
tob18776c817
b18776c817
todd676ce819
dd676ce819
toe738fdd0b4
e738fdd0b4
tof80b9a3907
f80b9a3907
to5e6e51c0f0
5e6e51c0f0
tofcff99beec
fcff99beec
to253614d12b
253614d12b
to882be9cdb5
882be9cdb5
to53a2a0026f
53a2a0026f
tob315df8edd
b315df8edd
to62c3dfded6
62c3dfded6
to0704c8a48b
0704c8a48b
to4d5b583aac
4d5b583aac
to349f79cf23
349f79cf23
to783abe5144
783abe5144
toc654ec303b
c654ec303b
toce5186373a
ce5186373a
tob0b01c42c1
b0b01c42c1
to33db0ed2ba
33db0ed2ba
to0c7312ec06
0c7312ec06
to42e8e869d1
42e8e869d1
to315a557bca
315a557bca
to2b946dd664
2b946dd664
to068c7ccc47
068c7ccc47
todf02ed8638
df02ed8638
to5e99d7afc8
5e99d7afc8
to0a4a958b91
0a4a958b91
to919d0e176c
919d0e176c
to7c118b81a5
7c118b81a5
to9f0831e9b2
9f0831e9b2
to9000f2ba05
9000f2ba05
to5d4db91a67
5d4db91a67
to23856b8f48
23856b8f48
tocf16b48fea
cf16b48fea
to2bc4e4eafb
2bc4e4eafb
toa24e4f3a20
a24e4f3a20
to98c31e530c
98c31e530c
to95b7073a15
95b7073a15
to6a17de2f3b
6a17de2f3b
toe454eca1b9
e454eca1b9
to88cf4dd443
88cf4dd443
to82f7062cd6
82f7062cd6
to4a7986e604
4a7986e604
to45572616ff
45572616ff
to042b29d1b4
Update all dependenciesto chore(deps): update all dependencies042b29d1b4
to38f41cd292
38f41cd292
tob0c3b0a52d
b0c3b0a52d
to038c8da243
038c8da243
to8359279184
8359279184
to4c3319179c
4c3319179c
to54a3f73462
54a3f73462
tofc7bfb4f33
fc7bfb4f33
to11727845e3
11727845e3
tode99678741
de99678741
toc0c1a7b076
c0c1a7b076
toe3670c5f9f
e3670c5f9f
toe05b299dfa
e05b299dfa
toe5dd659cd9
e5dd659cd9
tod3a82bf49b
d3a82bf49b
to65372406c5
65372406c5
tod986573b3e
d986573b3e
tofa649ef306
fa649ef306
to1408c7ba31
1408c7ba31
to6e5a11c544
6e5a11c544
to30b785d343
30b785d343
tobae1f06c54
bae1f06c54
tocb50b36859
cb50b36859
tof8f665efad
f8f665efad
to2ad29d7be7
2ad29d7be7
to83c83318ea
83c83318ea
to5ed378a19a
5ed378a19a
to3671e6e53e
3671e6e53e
to0bbdd933fa
0bbdd933fa
to20b465a8d3
20b465a8d3
tob8ffc3f951
b8ffc3f951
tof215cbb79c
⚠️ 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:
The artifact failure details are included below:
File name: Cargo.lock
f215cbb79c
tod87c7d6423
d87c7d6423
tobb7fd3e293
bb7fd3e293
to97f091774f
97f091774f
to4b8a7690ef
4b8a7690ef
to7a272d694a
7a272d694a
to16b204cee8
16b204cee8
tofbaa9c95ef
fbaa9c95ef
to9398922d06
9398922d06
tod7d0792c4b
d7d0792c4b
to8c5d741120
8c5d741120
to27877f6d1b
27877f6d1b
tof7a14c6aa2
f7a14c6aa2
todb6bc5bf4f
db6bc5bf4f
to2c54795c7e
2c54795c7e
to3fe0c4af9a
3fe0c4af9a
toa0eaad2008
a0eaad2008
to3086c55638
3086c55638
to65fa6d08d2
65fa6d08d2
toa0c1d612bc
a0c1d612bc
to0880861886
0880861886
toe7fb921fac
e7fb921fac
toe79a8b74af
e79a8b74af
tobdff815902
bdff815902
tob60fbc27ba
b60fbc27ba
to1013ff6541
1013ff6541
to1fbc84ddae
1fbc84ddae
toa1dfb61eb5
a1dfb61eb5
tob52a550287
b52a550287
todeb93cad07
deb93cad07
tof74f8127a1
f74f8127a1
to4fa8824e53
4fa8824e53
tofb1f38db10
fb1f38db10
to5c1f960109
5c1f960109
to966f3a3877
966f3a3877
to114925cfc5
114925cfc5
toc299cc7b28
c299cc7b28
to2fcc06631f
2fcc06631f
tofc11b97bf2
fc11b97bf2
to1e935a70f2
1e935a70f2
to31d077eaf1
31d077eaf1
to7f5f6a2fa2
7f5f6a2fa2
tofbc7814779
fbc7814779
to43a23f41df
43a23f41df
toc95c2c6dab
c95c2c6dab
to8d1aa74a09
8d1aa74a09
todbc1f7e535
dbc1f7e535
toe2b794334b
e2b794334b
toae1766f01f
ae1766f01f
tobd6175ab89
bd6175ab89
to27b247a775
27b247a775
tofa3efc1128
fa3efc1128
to564a7e8f7f
564a7e8f7f
to06de1f55c6
06de1f55c6
to04522cb2aa
04522cb2aa
tobdcd33e6ea
bdcd33e6ea
to3daaebdadc
3daaebdadc
to6e4fd67423
6e4fd67423
to730263f89a
730263f89a
to0de80ec37d
0de80ec37d
to38ef75aa07
38ef75aa07
toe5b4bc60ac
e5b4bc60ac
to09904d0346
09904d0346
to8ab73cfeb7
8ab73cfeb7
to461f60d270
461f60d270
to1a56371ac0
1a56371ac0
to3bf7ab8f47
3bf7ab8f47
toe8205cd2f1
e8205cd2f1
to5cd8f12d23
5cd8f12d23
tobec7156325
bec7156325
toec37ad4bcc
ec37ad4bcc
to6dca29da49
6dca29da49
toe4e32456ec
e4e32456ec
toc7c3243ec2
c7c3243ec2
to3cfe3876ba
3cfe3876ba
to67ac7b866d
67ac7b866d
tofe3eac7da3
fe3eac7da3
to418b7ef429
418b7ef429
to071156f2d4
071156f2d4
to7167d2562b
7167d2562b
to2a731307ca
2a731307ca
tof5445457c3
f5445457c3
tob40527716b
b40527716b
to3f2bf6da5b
3f2bf6da5b
to456ea28e0b
456ea28e0b
to744e575306
744e575306
to4723673fc2
4723673fc2
tod3772b77ea
d3772b77ea
to0e847b6fba
0e847b6fba
tod8aa972ee3
d8aa972ee3
tocae8a88cc6
cae8a88cc6
to4e0b9f940e
4e0b9f940e
tobc1042f1a9
bc1042f1a9
to69bb76f971
69bb76f971
to495e753a5c
495e753a5c
to4624eac714
4624eac714
tod8ac1b05c2
d8ac1b05c2
to36f32079d2
36f32079d2
to8bcbd3fce0
8bcbd3fce0
to884c283de2
884c283de2
to933ee97e81
933ee97e81
tod572ebd71e
d572ebd71e
tofa8f03b8a8
fa8f03b8a8
to88575860bd
88575860bd
to36b42bb33b
36b42bb33b
toc5b75707a6
c5b75707a6
to84da7881ab
84da7881ab
tof4f87024e0
f4f87024e0
tocdf5567b1d
cdf5567b1d
to4afcda2f51
4afcda2f51
to21a5392eca
21a5392eca
to11f4239f46
11f4239f46
toaca7ef0231
aca7ef0231
to056fe75493
056fe75493
to8f8e17d8f6
8f8e17d8f6
toc068e79f49
c068e79f49
to287b8ed30a
287b8ed30a
to861dd50d1b
861dd50d1b
to2d8181fe62
2d8181fe62
to11d802e7b8
11d802e7b8
to0ed3f40259
0ed3f40259
to909a830b6e
909a830b6e
to7f2fb2845b
7f2fb2845b
to203473ecd2
203473ecd2
to816a8a0b2b
816a8a0b2b
toa9578d8f63
a9578d8f63
to48cbcc3235
48cbcc3235
tob66988c926
b66988c926
tod31ded6b50
d31ded6b50
to3d24c3b17e
3d24c3b17e
to20a0e5a00b
20a0e5a00b
to92ec02684a
92ec02684a
tocd5d5905bc
cd5d5905bc
tobf0ea1a03b
bf0ea1a03b
to8141fb90a9
8141fb90a9
toea8df51c2c
ea8df51c2c
to9eef9b6cfd
9eef9b6cfd
to345a45040c
345a45040c
to4426884abf
4426884abf
to63920bb361
63920bb361
to8480e24648
8480e24648
toad47c5bee9
ad47c5bee9
to7bab78aedf
7bab78aedf
to365823160e
365823160e
to04dca35fe2
04dca35fe2
to84c645e76f
84c645e76f
tobb6709912d
bb6709912d
tod666cfdb30
d666cfdb30
to58710d0ae1
58710d0ae1
to9bc3b0f561
9bc3b0f561
to0495ebcc0f
0495ebcc0f
to6e4a355dea
6e4a355dea
to26d677f2d5
26d677f2d5
to0a492ef2d8
0a492ef2d8
toe9889673e8
e9889673e8
to70ea39d4fc
70ea39d4fc
to5b69fcd69e
5b69fcd69e
to57ffd4f3c8
57ffd4f3c8
to922a91744b
922a91744b
to48ea3b56a9
48ea3b56a9
toa31d78a1ce
a31d78a1ce
tof95149082c
f95149082c
to68ad227dfa
68ad227dfa
to3221c319eb
3221c319eb
tob0fdddc878
b0fdddc878
to6363dac01c
6363dac01c
to3c46e2e846
3c46e2e846
to811d630e80
811d630e80
to921e50d6ff
921e50d6ff
to96600db418
96600db418
to555cd99259
555cd99259
toc74a4f0b8b
c74a4f0b8b
to0312377402
0312377402
to3024a6e5f7
3024a6e5f7
to893e228ae1
893e228ae1
to58c70cf97a
58c70cf97a
to1efee120dd
1efee120dd
to1eaec35de5
1eaec35de5
to8d66f85f75
8d66f85f75
to073893bae3
073893bae3
to981942a733
981942a733
to1a06614dda
1a06614dda
toe1ab86b96e
e1ab86b96e
to475b324011
475b324011
to035a7cc79e
035a7cc79e
toddd5fd08e9
ddd5fd08e9
tofc416854f7
fc416854f7
to7468d29824
7468d29824
tocd9528cb73
cd9528cb73
to7f2eeeede6
7f2eeeede6
to43f1ac053d
43f1ac053d
to1a91d02cca
1a91d02cca
to5df82897af
5df82897af
todba0197c9d
dba0197c9d
toe8393fb1c2
e8393fb1c2
to5dd3bcef44
5dd3bcef44
tod1e3839e53
d1e3839e53
to7afca7e130
7afca7e130
to35abb89851
35abb89851
to9430628833
9430628833
toaa87c54446
aa87c54446
toa3a16478b8
a3a16478b8
toba048a81c2
ba048a81c2
to8f72f743d7
8f72f743d7
to67e71cd9e1
67e71cd9e1
to2378fd1f87
2378fd1f87
to2e33545a4a
2e33545a4a
toaa0809273d
aa0809273d
toa6e0e6aeb2
a6e0e6aeb2
to5d9a13f4cd
5d9a13f4cd
to1a3751e5f3
1a3751e5f3
to1574c37649
1574c37649
toe5283525e9
e5283525e9
to35d178280d
35d178280d
toc9f1f0ac24
c9f1f0ac24
toe01942a2ad
e01942a2ad
tob364550e56
b364550e56
tof791f2496d
f791f2496d
to0923f08584
0923f08584
to6b437196f7
6b437196f7
to1185895a6e
1185895a6e
to9119569737
9119569737
to61196f6c36
61196f6c36
tof1e0dbf5a6
f1e0dbf5a6
tod010bcf6ff
d010bcf6ff
to5dd23c2d3a
5dd23c2d3a
to429b1d7cf3
429b1d7cf3
toc17d1ac921
c17d1ac921
toe9f9ed3f0c
e9f9ed3f0c
tob7a4060fbf
b7a4060fbf
toe816bed14b
e816bed14b
to239bcff638
239bcff638
tocbede39b46
cbede39b46
toa64935d1f3
a64935d1f3
to18dbcf183a
18dbcf183a
toe5db7f8052
e5db7f8052
to7ee73e002e
7ee73e002e
to7f6417315f
7f6417315f
to8369019878
8369019878
toa92d62728c
a92d62728c
toa6208e882e
a6208e882e
to8db9c68310
8db9c68310
to3bb474d78c
3bb474d78c
to67ab79b3fa
67ab79b3fa
toc8ee113364
c8ee113364
to5341dc8f8d
5341dc8f8d
toba8debc730
ba8debc730
to7c7d043ecd
7c7d043ecd
to6c5b1a6ec5
6c5b1a6ec5
to2529e73be9
2529e73be9
to6ce2bcd43c
6ce2bcd43c
tocfd7de3d21
cfd7de3d21
to4a599f9ff4
4a599f9ff4
tob110f42a93
b110f42a93
to33bfe03118
33bfe03118
tocb165a43e9
cb165a43e9
toac5fec813a
ac5fec813a
tocf20fb0e8a
cf20fb0e8a
toa1d4051374
a1d4051374
tob32bd37fa4
b32bd37fa4
to9f92a946dc
9f92a946dc
to54857b9bd6
54857b9bd6
to8ce3e19996
8ce3e19996
to3112fb6f8f
3112fb6f8f
to214c875c70
214c875c70
to02c94e45b0
02c94e45b0
to5eca012dc5
5eca012dc5
tofb0056a8ae
fb0056a8ae
to6446f9847d
6446f9847d
tocd6ff5931e
cd6ff5931e
toc1d9d1d859
c1d9d1d859
to85913ce50e
85913ce50e
to5674ff7fed
5674ff7fed
to4e08303978
4e08303978
to4344d0845f
4344d0845f
to71384ffa70
71384ffa70
tob9dd6ab1b1
b9dd6ab1b1
tob4a79f7a06
b4a79f7a06
tobba4c92fee
bba4c92fee
to355e747195
355e747195
toeab4e277a1
eab4e277a1
to1398696e1f
1398696e1f
tof548d330bc
f548d330bc
to0f4ece3ba3
0f4ece3ba3
to3401a7c88b
3401a7c88b
toe17cef549a
e17cef549a
tod9c3f29f66
d9c3f29f66
tod2f748639b
d2f748639b
to3a85d2724f
3a85d2724f
to2469ab8e7a
2469ab8e7a
tof208dfa5ed
f208dfa5ed
to607518216c
607518216c
to87794dda7d
87794dda7d
to8f1ca7530a
8f1ca7530a
toa1db45ce73
a1db45ce73
to9f6ff4c155
9f6ff4c155
to0102d993f8
0102d993f8
to7250c41330
7250c41330
to8e4d87a2a5
8e4d87a2a5
to82a10fb560
82a10fb560
to8070c020d8
8070c020d8
to020f02fc3b
020f02fc3b
to18303bf284
18303bf284
to7ccc824f94
7ccc824f94
to63b58e8ed7
63b58e8ed7
to2d9ca760c4
2d9ca760c4
to9db84eefb8
9db84eefb8
to9b10601dc5
9b10601dc5
to9fa04b9851
9fa04b9851
to4467def961
4467def961
to65dff70691
65dff70691
to5cde023d99
5cde023d99
to3c0df70b0a
3c0df70b0a
toe7125b5651
e7125b5651
to1c0ac3da6b
1c0ac3da6b
tod70620e0fe
d70620e0fe
toc22869a744
c22869a744
to219e2a4343
219e2a4343
to7a4a9fe7f0
7a4a9fe7f0
to378b92427a
378b92427a
to28fdc9b998
28fdc9b998
to120c6b3999
120c6b3999
toe0bde1760d
e0bde1760d
to58a2273a68
58a2273a68
to4797f87293
4797f87293
tobcf341cbb1
bcf341cbb1
tod19ea27952
d19ea27952
to8dc39811ec
8dc39811ec
toc7fcc2876e
c7fcc2876e
tob09c3e6bab
b09c3e6bab
to0241554f0f
0241554f0f
to032084ed5d
032084ed5d
to13d67aa020
13d67aa020
to4ea5033dbe
4ea5033dbe
to267664c2c1
267664c2c1
to39fd7a4de4
39fd7a4de4
to3631c11273
3631c11273
to200605703c
200605703c
to5fa41232ff
5fa41232ff
to1947379643
1947379643
to33d119de53
33d119de53
toe31205fb62
e31205fb62
toeff07f498c
eff07f498c
toc0aafec722
c0aafec722
toab61cd8746
ab61cd8746
to01d558c8c5
01d558c8c5
to1a0082948c
1a0082948c
to63e4a37082
63e4a37082
to9e7e17fe72
9e7e17fe72
to2062fa5853
2062fa5853
to9f71566d57
9f71566d57
to6658b2979b
6658b2979b
to4012c0177f
4012c0177f
to436a0d14f5
436a0d14f5
toe60b841f91
e60b841f91
to65a33c90df
65a33c90df
toce77f0a133
ce77f0a133
to3753c6172d
3753c6172d
todab54e6ec7
dab54e6ec7
to11fc6e3ed3
11fc6e3ed3
to5b2aaa6ac3
5b2aaa6ac3
toe3828e5810
e3828e5810
to9439c4baa4
9439c4baa4
toeded5fdf99
eded5fdf99
tof6396ce37d
f6396ce37d
to92edf37768
92edf37768
to2e80065a45
2e80065a45
tod26aac7894
d26aac7894
to3d88811ffd
3d88811ffd
toeebe7f8e19
eebe7f8e19
to802a8de56c
802a8de56c
toc0d78fe806
c0d78fe806
tocd17e3e070
cd17e3e070
to237acf85f0
237acf85f0
tobaee272efd
baee272efd
tobc28a1f363
bc28a1f363
to33af8bad0b
33af8bad0b
to9d76ebb476
9d76ebb476
toa313e9e877
a313e9e877
to1ad70bd885
1ad70bd885
to4843764b90
4843764b90
to06ce97d16d
06ce97d16d
toc6a3fe08d4
c6a3fe08d4
to45de574a0e
45de574a0e
to4e00f03b93
4e00f03b93
tob8b45cb7e1
b8b45cb7e1
tof08cc785bf
f08cc785bf
tob5ccef3c8e
b5ccef3c8e
toc32cae78d9
c32cae78d9
to9113946d31
9113946d31
to74dd46ebe8
74dd46ebe8
tof3f75fb424
f3f75fb424
to57e80397df
57e80397df
to875b2b8374
875b2b8374
to37629267ea
37629267ea
toe421823055
e421823055
to57f89d7906
57f89d7906
todf95384969
df95384969
to2be6e7c89f
2be6e7c89f
to44d1a2c04f
44d1a2c04f
to69a961b458
69a961b458
to4ccda3de71
4ccda3de71
to5ddfc9212d
5ddfc9212d
toffad0dc9be
ffad0dc9be
toba59f8576a
ba59f8576a
to9289b82de0
9289b82de0
to5182bc0b04
5182bc0b04
to64e48a3c74
64e48a3c74
toe9fc7e55d7
e9fc7e55d7
tod8bde8e137
d8bde8e137
to9614e9a725
9614e9a725
tod02f230fe4
d02f230fe4
to5203b9022d
5203b9022d
toc4bd52585a
c4bd52585a
to74a5cbc1a7
74a5cbc1a7
to548b000d36
548b000d36
to8338a50aec
8338a50aec
toead906872b
ead906872b
to6938e90441
6938e90441
tob1cb5b0fc5
b1cb5b0fc5
toca32e314f6
ca32e314f6
tobd0596cf43
bd0596cf43
toe1f4555c85
e1f4555c85
toe6e4a513d0
e6e4a513d0
to39cb154f23
39cb154f23
toa207b641ac
a207b641ac
to2376ecf050
2376ecf050
to14b80514b8
14b80514b8
to2836a4b1a4
2836a4b1a4
toe269297ffa
e269297ffa
toe498a1da1f
e498a1da1f
to245ac34c7b
245ac34c7b
tocf5b271cf2
cf5b271cf2
to8734723e13
8734723e13
to2db865659a
2db865659a
to5767aab3c4
5767aab3c4
to112a42efa0
112a42efa0
to8d28226323
8d28226323
to1e3891b3fc
1e3891b3fc
to4d842c4a9d
4d842c4a9d
to4bd8f0be5f
4bd8f0be5f
toac82551a60
ac82551a60
tof0ead5037c
f0ead5037c
to0f3f5c3a15
0f3f5c3a15
to231fd9f626
231fd9f626
to02a228893a
02a228893a
tod5eb8c1375
d5eb8c1375
to94112c1ae4
94112c1ae4
to5fb8f6968c
5fb8f6968c
to5c34f1a0a5
5c34f1a0a5
toc72d40311d
c72d40311d
to95999bb778
95999bb778
toc2b91275f3
c2b91275f3
to7238f2d2e1
7238f2d2e1
toe5dc909f66
e5dc909f66
toa384940d3a
a384940d3a
to581f492ea2
581f492ea2
to6f4a5e49a3
6f4a5e49a3
to4eaefd4b94
4eaefd4b94
toa7e2c114d2
a7e2c114d2
to7e64e1fb24
7e64e1fb24
to7c6430ed43
7c6430ed43
to5a0bedbdb2
5a0bedbdb2
to81d9576b75
81d9576b75
to15ead79650
15ead79650
to0816fb34cb
0816fb34cb
to9b0e57583d
9b0e57583d
to084bda6443
084bda6443
to758e35ed95
758e35ed95
tocb10fa8a5d
cb10fa8a5d
toe2e687cae0
e2e687cae0
to207d042241
207d042241
toaaa335cd22
aaa335cd22
tofbba111819
fbba111819
to05142e6201
05142e6201
to9bde78c648
9bde78c648
to675cdc2fe4
675cdc2fe4
to4ab0aa3fa1
4ab0aa3fa1
tob877c4300d
b877c4300d
to9c3a5fcd96
9c3a5fcd96
toacae6f6572
acae6f6572
toc96aadbc66
c96aadbc66
to837bd86657
837bd86657
toe83bd48ca0
e83bd48ca0
to31480e2977
31480e2977
to2e78d8b0d2
2e78d8b0d2
to6f82bb0607
6f82bb0607
toe81bd08af2
e81bd08af2
toe7e57be3cb
e7e57be3cb
to49bd9b7136
49bd9b7136
to86c7bad2a6
86c7bad2a6
to8ee0c808cd
8ee0c808cd
to62434f328e
62434f328e
toe98913b4c9
e98913b4c9
to2529eb4399
2529eb4399
to03b001908b
03b001908b
to8a18a82602
8a18a82602
to9a94fb3686
9a94fb3686
tobcfb91e5d3
bcfb91e5d3
to48fdff050e
48fdff050e
to8ab6bb821d
8ab6bb821d
tobd99c027e0
bd99c027e0
to4e23bf5ed5
4e23bf5ed5
to83132d2c47
83132d2c47
to0744724e3c
0744724e3c
toe2f093ef3d
e2f093ef3d
to7c094a2ced
7c094a2ced
to68620a9e36
68620a9e36
tob9f07a4467
b9f07a4467
to6610429c82
6610429c82
to07b08dfd7d
07b08dfd7d
tob380b46b75
b380b46b75
tob16456a397
b16456a397
toef692b1004
ef692b1004
toee61059236
ee61059236
tofd02d0ae9f
fd02d0ae9f
to45829e103e
45829e103e
to2502847c3d
2502847c3d
to58d5b9345f
58d5b9345f
to56a46cb2e9
56a46cb2e9
to7365310654
7365310654
to4637515ce1
4637515ce1
to7f24817cc1
7f24817cc1
to069564a227
069564a227
to239b344d4a
239b344d4a
to039336fe26
039336fe26
to53d86e5752
53d86e5752
tob419d42603
b419d42603
tod9deb42e71
d9deb42e71
to9fe9c7984c
9fe9c7984c
toe8d0884fae
e8d0884fae
tofbdad118cd
fbdad118cd
tofec186b55c
fec186b55c
to55c4c3812f
55c4c3812f
to5b5f524752
5b5f524752
to9ce2868405
9ce2868405
toe01a339864
e01a339864
to4476164a6e
4476164a6e
toee7e5d0620
ee7e5d0620
to30717bb60a
30717bb60a
toc62c557b87
c62c557b87
to1bbbd441d8
1bbbd441d8
todbb069b4d8
dbb069b4d8
to98c52e72a3
98c52e72a3
tocc47195437
cc47195437
to073d2c72bc
073d2c72bc
to6c4294113d
6c4294113d
to2681e29f9c
2681e29f9c
to5b971a28b1
5b971a28b1
to5dde4b705d
5dde4b705d
toc17c77b843
c17c77b843
tofaa9aae1e5
faa9aae1e5
tob312254ea1
b312254ea1
to232b393f50
232b393f50
to8f7f9f920a
8f7f9f920a
to258b59b041
258b59b041
to390a51a20a
390a51a20a
toda93d835d8
da93d835d8
tod9f36e9935
d9f36e9935
to703efa3129
703efa3129
to42bb04b2a5
42bb04b2a5
tob1d9e2bf59
b1d9e2bf59
to8804244ad2
8804244ad2
to0c5dced233
0c5dced233
to957400ed64
957400ed64
to32810ed96c
32810ed96c
to0e77aaed30
0e77aaed30
to2c083672cc
2c083672cc
tob1f4f1bd3d
b1f4f1bd3d
tof488be98b4
f488be98b4
tod7128e4088
d7128e4088
to6406c01349
6406c01349
to3534797ab6
3534797ab6
to8a73bf42d7
8a73bf42d7
to00a26c5e22
00a26c5e22
tob4e4388542
b4e4388542
to866b2c4bf3
866b2c4bf3
to5fbbde7e65
5fbbde7e65
to78e0cd2dd2
78e0cd2dd2
tob6ad35dcb6
b6ad35dcb6
to1752f95e74
1752f95e74
to00ecbd1b6b
00ecbd1b6b
to6b1fa49909
6b1fa49909
to0f75a33222
0f75a33222
to9272c6539c
9272c6539c
to9f972e4861
9f972e4861
to4702338a67
4702338a67
to4c1f3bd488
4c1f3bd488
to620c772fb1
620c772fb1
to7b871e8797
7b871e8797
tof623134e86
f623134e86
to4f10936fc9
4f10936fc9
to6d284fb001
6d284fb001
to1968d1a99d
1968d1a99d
to90ea814266
90ea814266
to44ace2b9cf
44ace2b9cf
tof27f782f66
f27f782f66
to324fd354ef
324fd354ef
to9e989fbb20
9e989fbb20
to0bd95de2d5
0bd95de2d5
tocce5e996a2
cce5e996a2
toec5f268f76
ec5f268f76
tod08a25d515
d08a25d515
toe688fb11cb
e688fb11cb
tofdcc6f716c
fdcc6f716c
toc831d03b56
c831d03b56
to7bcafe932c
7bcafe932c
toa1296b5991
a1296b5991
to99fa2a0920
99fa2a0920
tod7833ce92f
d7833ce92f
tob023718608
b023718608
to8bec80e87f
8bec80e87f
to6c3bd044f0
6c3bd044f0
to41783d25d9
41783d25d9
to30bbbf5676
30bbbf5676
to22a69bc4c9
22a69bc4c9
tof2e3dccd01
f2e3dccd01
tocfd8377d47
cfd8377d47
to2519851d12
2519851d12
tobe64b68c37
be64b68c37
to8ccad5349a
8ccad5349a
tob00a671c8f
b00a671c8f
to71cd7528d9
71cd7528d9
to21c4d14995
21c4d14995
to519705a247
519705a247
to51a253d121
51a253d121
to315cda26fa
315cda26fa
to040adcf41a
040adcf41a
to0e727ce2d9
0e727ce2d9
to8e0051cee5
8e0051cee5
to4a5c0190f2
4a5c0190f2
to1c72ea9723
1c72ea9723
tob04017c4d4
b04017c4d4
to67239f1a1f
67239f1a1f
tob57a86970e
b57a86970e
to2e15d5779f
2e15d5779f
to64a5585e0d
64a5585e0d
to2417b5a22e
2417b5a22e
to03fc0d163f
03fc0d163f
to9c475d3308
9c475d3308
to90f9d3de54
90f9d3de54
toaa2fdcbcce
aa2fdcbcce
to4fa51a9ef7
4fa51a9ef7
to941d5347ce
941d5347ce
tod1c2c591d3
d1c2c591d3
toea6a6c275e
ea6a6c275e
tobfdef60b7b
bfdef60b7b
to9b7cc41794
9b7cc41794
tof5e26f0bd8
f5e26f0bd8
to0efb7f5891
0efb7f5891
to121df3571a
121df3571a
to282093f49a
282093f49a
toff1bff2787
ff1bff2787
tofc767a058a
fc767a058a
to97e5a20959
97e5a20959
to564083cd62
564083cd62
to14e668691b
14e668691b
to427e635329
427e635329
to30897f6208
30897f6208
to01dbe80a44
01dbe80a44
toecaf739529
ecaf739529
tod3a011be48
d3a011be48
to30c38fea95
30c38fea95
to5c185928a1
5c185928a1
to143b403081
143b403081
to331320991a
331320991a
toc061cca2f7
c061cca2f7
to190c3f5985
190c3f5985
to38fcca5e05
38fcca5e05
to5556abadcd
5556abadcd
to8155ca7e26
8155ca7e26
tof323d71a5b
f323d71a5b
tob12feb9063
b12feb9063
tob009f705eb
b009f705eb
to255a5bbe80
255a5bbe80
to00cdcfd5de
00cdcfd5de
toc5ec0aae91
c5ec0aae91
to88f1eb2121
88f1eb2121
to25e9b24bd5
25e9b24bd5
to7588c40d84
7588c40d84
tof6fe579689
f6fe579689
to9ed5d43f35
9ed5d43f35
to4d1c2232ae
4d1c2232ae
to0a1fd37d8b
0a1fd37d8b
toa4294c5af6
a4294c5af6
to0ad905c83a
0ad905c83a
todeda499a28
deda499a28
toa9c9b2308c
a9c9b2308c
to826959152a
826959152a
to933b210e93
933b210e93
to2ddb8fa79e
2ddb8fa79e
to4e55beb894
4e55beb894
tob787c8a5d1
b787c8a5d1
to4fa4fe28ba
4fa4fe28ba
to258bc92ca8
258bc92ca8
to205a4166b4
205a4166b4
to7c4c4fb38c
7c4c4fb38c
to24f5fd14bd
24f5fd14bd
to054f3ac727
054f3ac727
toe48d4bac5d
e48d4bac5d
to7ed7e3818e
7ed7e3818e
to7619791c7a
7619791c7a
toa16a12bd95
a16a12bd95
tof63b8193ad
f63b8193ad
tofa0c9fbe5a
fa0c9fbe5a
to824520fd64
824520fd64
to70c3ad8dc1
70c3ad8dc1
to88ff124ce7
88ff124ce7
tof30f160b89
f30f160b89
toe5138cd470
e5138cd470
to91c7808331
91c7808331
to83b1228b49
83b1228b49
toe215ecb369
e215ecb369
to6275a0b3b1
6275a0b3b1
to7226c662c3
7226c662c3
toef3aebf2dd
ef3aebf2dd
to5fc0642f28
5fc0642f28
to6977de07d9
6977de07d9
to806974c197
806974c197
to09fca8c736
09fca8c736
to837ce50b9d
837ce50b9d
to1795fb1169
1795fb1169
to81b1a34108
81b1a34108
tobbe7fcfef6
bbe7fcfef6
to0c5530ded0
0c5530ded0
to7367caccf4
7367caccf4
to4d97dd919f
4d97dd919f
to5a148d0882
5a148d0882
to25c8ab7b6c
25c8ab7b6c
to1df849cdec
1df849cdec
to3d64e4a13c
3d64e4a13c
to040b6ad200
040b6ad200
to19d01e1a5c
19d01e1a5c
tobdbd2e9fde
bdbd2e9fde
to72c3e6a332
72c3e6a332
to42a42e385e
42a42e385e
to711c4a5951
711c4a5951
to56991d22c0
56991d22c0
to533eeb5918
533eeb5918
to89a37a0ca9
89a37a0ca9
tof80ca39ce1
f80ca39ce1
to7bbbd56d52
7bbbd56d52
tobd03aafef0
bd03aafef0
to10a65ca8f2
10a65ca8f2
toddfa282ed7
ddfa282ed7
to4672d19bb6
4672d19bb6
to124a671eda
124a671eda
toc7d68ce900
c7d68ce900
to7e24398c06
7e24398c06
tofe071da3ce
fe071da3ce
to1527d0bfad
1527d0bfad
to4fae8f1dd1
4fae8f1dd1
tod4ed17a037
d4ed17a037
toec7ed185ac
ec7ed185ac
tob7dd6fdec4
b7dd6fdec4
to6463ef0c65
6463ef0c65
toe4a8a54dee
e4a8a54dee
tod1cad1c611
d1cad1c611
tob1345dce0e
b1345dce0e
to3f850a2dbf
3f850a2dbf
to50ac62052e
50ac62052e
to72df57dc82
72df57dc82
toc2141e5dcc
c2141e5dcc
tob571b18dbf
b571b18dbf
toe8602a7eaf
e8602a7eaf
to81161df40b
81161df40b
to6460fe2086
6460fe2086
tof4adf11e08
f4adf11e08
to1aaff0da3d
1aaff0da3d
to17d9b58577
17d9b58577
to0f717c1fd6
0f717c1fd6
to41198dc78c
41198dc78c
tof76ac6ab85
f76ac6ab85
tof6907e36fa
f6907e36fa
tobc0efe44d7
bc0efe44d7
toe21a439ffd
e21a439ffd
to7d2225b25c
7d2225b25c
to2ea7717493
2ea7717493
to6a282379f9
6a282379f9
to7572a00420
7572a00420
tod3fd4f44cc
d3fd4f44cc
toe73e4773c8
e73e4773c8
to907002402e
907002402e
toa4726c7c9e
a4726c7c9e
tod397886438
d397886438
toe615e07e43
e615e07e43
to45637a5d1e
45637a5d1e
to8d8f2c4fdf
8d8f2c4fdf
to83634a8525
83634a8525
to296e1f954f
296e1f954f
tod33358c221
d33358c221
toc352ae892f
c352ae892f
tob0b24d6c69
b0b24d6c69
toc12f830ce7
c12f830ce7
to68fa7a205f
68fa7a205f
to669b95a4c5
669b95a4c5
to99b211460d
99b211460d
to26fdbca63f
26fdbca63f
tod3b4aaea3e
chore(deps): update all dependenciesto fix(deps): update all dependenciesd3b4aaea3e
to4b1a8f83c7
4b1a8f83c7
toc3bc51ecbc
c3bc51ecbc
to442b64f8f9
442b64f8f9
to8e5c2498f3
8e5c2498f3
to0493db0e9b
0493db0e9b
to7bbab20c2a
7bbab20c2a
tofa9d6f5c3e
fa9d6f5c3e
tod49d8d94a8
d49d8d94a8
to5e72829bb6
5e72829bb6
to701855835b
701855835b
to509da10d92
509da10d92
toda674fce60
da674fce60
tocbcf7c6c50
cbcf7c6c50
to52650a23c6
52650a23c6
toaa1670f119
aa1670f119
to49027f9fc7
49027f9fc7
tobad8c30d1a
bad8c30d1a
to10888af2ca
10888af2ca
to223cedd35b
223cedd35b
to5fab2562a1
5fab2562a1
tofcb646e854
fcb646e854
to13196cc152
13196cc152
toe0b128ce2d
e0b128ce2d
to90db1f7ec1
90db1f7ec1
to71bbafdfe9
71bbafdfe9
to61258ebd87
61258ebd87
toec279de22c
ec279de22c
to02a43fcd53
02a43fcd53
to88617778c1
88617778c1
to325598fd49
325598fd49
toadcc546632
adcc546632
tod520e3025a
d520e3025a
to89673f727c
89673f727c
toffb443ce2d
ffb443ce2d
to6dd6499627
6dd6499627
to17093b0622
17093b0622
to1bb606b45d
1bb606b45d
to2959118a11
2959118a11
to5324cc01f2
5324cc01f2
to66dd73cb09
66dd73cb09
tob342185f1c
b342185f1c
to4c9468b60d
4c9468b60d
toe718e8234a
e718e8234a
to405aad6bc5
405aad6bc5
to00db267c62
00db267c62
tofcf731dbf4
fcf731dbf4
tod9f4246d53
d9f4246d53
to75d971f015
75d971f015
toce7d2c6db3
ce7d2c6db3
tof462b7cf2e
f462b7cf2e
to49d0c0eb70
49d0c0eb70
to313ae6fc94
313ae6fc94
toa993675833
a993675833
to900b8ef6fe
900b8ef6fe
to5b00c2840a
5b00c2840a
todc861f88da
dc861f88da
tob9b3116b86
b9b3116b86
to15a478796f
15a478796f
to0456438c27
0456438c27
to049a3ddb6b
049a3ddb6b
toc4222c6c3b
c4222c6c3b
to21b1f3bbcc
21b1f3bbcc
to086976fd07
086976fd07
to571b3d0330
571b3d0330
to509af32cb0
509af32cb0
to7f4ff5ff4c
7f4ff5ff4c
to363cad32e0
363cad32e0
to0015e462bb
0015e462bb
toffeb3abcf5
ffeb3abcf5
to30f2373981
30f2373981
to4d012feebe
4d012feebe
toe7a3c28ef0
e7a3c28ef0
tod36f23db9c
d36f23db9c
to4ce6750421
4ce6750421
toc3c62bb632
c3c62bb632
to47a4b0fea5
47a4b0fea5
to86f6fd4c99
86f6fd4c99
toa48cc91c16
a48cc91c16
to6fd93ea0a5
6fd93ea0a5
to10d03e5e74
10d03e5e74
to05518097c1
05518097c1
toe75298a946
e75298a946
tocc2b9f6a4c
cc2b9f6a4c
to56fff42bfe
56fff42bfe
to1fe9b00bf8
1fe9b00bf8
toa594c0c816
a594c0c816
tobf6168cd7f
bf6168cd7f
to0bf79135d5
0bf79135d5
tofd2a71bd44
fd2a71bd44
toe371ebb7ba
e371ebb7ba
to6bc2fb2cbb
6bc2fb2cbb
to7d54e6109d
7d54e6109d
to0335b6db0c
0335b6db0c
toa32c00bf34
a32c00bf34
toc42d2ea3ad
c42d2ea3ad
toed3ab63379
ed3ab63379
to78a1d65e74
78a1d65e74
to4fd95c858d
4fd95c858d
to34f89021e6
34f89021e6
to0db0ac0bf2
0db0ac0bf2
tobba6bfa1aa
bba6bfa1aa
to1a45ebf193
1a45ebf193
toa329f25a6e
a329f25a6e
tof9cb791838
f9cb791838
to3735c4008a
3735c4008a
tof8f34e8055
f8f34e8055
to46bdaeb36f
46bdaeb36f
to2ecc2f9546
2ecc2f9546
to4d007545dd
4d007545dd
tofcf1b87faf
fcf1b87faf
to5dbcb6ba12
5dbcb6ba12
to51f35f1e6c
51f35f1e6c
to3c0427e7c6
3c0427e7c6
to0c19d1b82d
0c19d1b82d
to12145a470c
12145a470c
toa5c397dcf0
a5c397dcf0
toa6a95b396b
a6a95b396b
to6a747e7cb5
6a747e7cb5
toed0ab74012
ed0ab74012
toa839b98b83
a839b98b83
to8cdae5b326
8cdae5b326
to34ffb0f910
34ffb0f910
tobed78cb72c
bed78cb72c
tocfdaed8868
cfdaed8868
toa8d36dfeab
a8d36dfeab
to8505c0f5fd
8505c0f5fd
to98b7813a24
98b7813a24
to3da8fbaf1c
3da8fbaf1c
to198b1c22c4
198b1c22c4
to08e4b8745d
08e4b8745d
to0ef3250e39
0ef3250e39
to9da4367ad0
9da4367ad0
to2ce3c8f1f0
2ce3c8f1f0
to7c74c28f6d
7c74c28f6d
to285d1a3926
285d1a3926
to482887e754
482887e754
tod9d8a6d515
d9d8a6d515
tobb5739ddba
bb5739ddba
to49eb3790a0
49eb3790a0
to6a7f9637a7
6a7f9637a7
to55305e5e08
55305e5e08
to5d4f835c11
5d4f835c11
toaf920e6003
af920e6003
toe3ee947e61
e3ee947e61
toaaf856205d
aaf856205d
to956cdd42a8
956cdd42a8
to7964b86410
7964b86410
to58ab4be45b
58ab4be45b
to0a7c474504
0a7c474504
toed08bd237c
ed08bd237c
toeb4c42469a
eb4c42469a
toc4630569bd
c4630569bd
to51e8e0f8d2
51e8e0f8d2
to96bd59594f
96bd59594f
tod4b09287a4
d4b09287a4
to6d2bba7dd0
6d2bba7dd0
to8c18687da7
8c18687da7
toc2204bedd2
c2204bedd2
to2771fd6977
2771fd6977
to737a83a33e
737a83a33e
toee7a32abb0
ee7a32abb0
to87594ca7dd
87594ca7dd
to8db7f38b63
8db7f38b63
to26a4e9cc49
26a4e9cc49
to71a5a7d370
71a5a7d370
to8bbfdd1935
8bbfdd1935
todba524fe6c
dba524fe6c
to970633bacf
970633bacf
toe9c3038974
e9c3038974
to259f1d9f12
259f1d9f12
to04997ce70f
04997ce70f
to8ec3988ab6
8ec3988ab6
to9831499e30
9831499e30
toc4f40983cf
c4f40983cf
to4f1ef6207b
4f1ef6207b
to81ff732520
81ff732520
to77ffcf19e3
77ffcf19e3
to79ec03f990
79ec03f990
tod5bf87ffbe
d5bf87ffbe
to4b61462aa0
4b61462aa0
toaab9919e73
aab9919e73
to607ddd7c7d
607ddd7c7d
toda8513cee2
da8513cee2
to769452dedf
769452dedf
to1a99f4d554
1a99f4d554
to1b2b26b5c9
1b2b26b5c9
to8ae5ed0eef
8ae5ed0eef
to42eb56888f
42eb56888f
to70850d5a22
70850d5a22
to790aed69ec
790aed69ec
to3acb388802
3acb388802
to62888e4693
62888e4693
toe5409aed2c
e5409aed2c
to337f5e2674
337f5e2674
to09e6ce9279
09e6ce9279
to61f0b093ae
61f0b093ae
tod5da6d4491
d5da6d4491
toe0696350f6
e0696350f6
toe4fcfd727f
e4fcfd727f
tob631077bd1
b631077bd1
to22468f33f4
22468f33f4
tod8e8de58fb
d8e8de58fb
to7d13fe1eff
7d13fe1eff
to2c9691f02c
2c9691f02c
to3cb74fdf70
3cb74fdf70
toe7469e0c69
e7469e0c69
toc2b4bd3394
c2b4bd3394
tof1dbad6d9e
f1dbad6d9e
to2415a9556b
2415a9556b
to636478c969
636478c969
to0d3c1e088d
0d3c1e088d
tod457f7bc7a
d457f7bc7a
toe7f01b22c5
e7f01b22c5
to72e789614f
72e789614f
to872b70cd22
872b70cd22
toede7d38da7
ede7d38da7
to5aebe3caee
5aebe3caee
to7169851a74
7169851a74
to62fe5f1807
62fe5f1807
to1534042673
1534042673
to7755a4f4f0
7755a4f4f0
toa539e99c01
a539e99c01
to7fe828752f
7fe828752f
toe5e2c24c7b
e5e2c24c7b
to41b7117b27
41b7117b27
to89ac9ca69f
89ac9ca69f
to3bf956dbc1
3bf956dbc1
to4132a61078
4132a61078
to874dc7b417
874dc7b417
toc3021ee9b7
c3021ee9b7
to05fc609159
05fc609159
to4b0118268b
4b0118268b
to11851a0874
11851a0874
to8e19fd5d97
8e19fd5d97
to91901817fe
91901817fe
to958100a82c
958100a82c
to23cb4390e0
23cb4390e0
to299d5e61d1
299d5e61d1
tof5383feb48
f5383feb48
to7abfbdfe89
7abfbdfe89
tob4e9cb8627
b4e9cb8627
to139e7b333c
139e7b333c
to2632ff706c
2632ff706c
to4497fb87de
4497fb87de
to58c4c925eb
58c4c925eb
to4c01bb5ee8
4c01bb5ee8
to4886d80d6f
4886d80d6f
to23ccee2c65
23ccee2c65
todd187ad3ad
dd187ad3ad
to2a96bb1b30
2a96bb1b30
to32622577d6
32622577d6
toe192b2a536
e192b2a536
to0497841571
0497841571
tof86d44c6f5
f86d44c6f5
to72f249df36
72f249df36
toe2a5af26c2
e2a5af26c2
tofaadb7c08a
faadb7c08a
to17c240351a
17c240351a
to96df23de1f
96df23de1f
to0fbcd33079
0fbcd33079
tob347d25fa8
b347d25fa8
to9c59f922c2
9c59f922c2
to5525e265d4
5525e265d4
to62884ca534
62884ca534
to99d4ec9ad3
99d4ec9ad3
to934582126d
934582126d
to6450bd0811
6450bd0811
to97827bd74d
97827bd74d
toe60cb1d1be
e60cb1d1be
toad03a5a8c5
ad03a5a8c5
to9f0b6c137a
9f0b6c137a
tob6f85000d1
b6f85000d1
to5a89c3df47
5a89c3df47
toed71088476
ed71088476
to2274e17633
2274e17633
to8ec76478f6
8ec76478f6
toab16940014
ab16940014
to651b75a76a
651b75a76a
toa61e0f9db6
a61e0f9db6
to4bd265a453
4bd265a453
to8b403d3dd8
8b403d3dd8
to5d2524a5bb
5d2524a5bb
to979d52d570
979d52d570
to9e8f81c22b
9e8f81c22b
toa0bfeddeba
a0bfeddeba
to0b2819e8d8
0b2819e8d8
to3955b54717
3955b54717
to239244fd43
239244fd43
tod1bab571d5
d1bab571d5
to4406683dfe
4406683dfe
toe350de5cc0
e350de5cc0
tod376d694dc
d376d694dc
tob53dfc36bd
b53dfc36bd
to972793adc3
972793adc3
tob5034fe81a
b5034fe81a
to95700f862e
95700f862e
tocbeaac060b
cbeaac060b
to11c829615d
11c829615d
to0623093037
0623093037
tobe2230beb9
be2230beb9
toe40ad35220
e40ad35220
to8d2366a840
8d2366a840
to458462f8aa
458462f8aa
toecd3b5c023
ecd3b5c023
to6f5a12fd79
6f5a12fd79
toc05e9965fb
c05e9965fb
to63de97f73f
63de97f73f
tob74a5832c1
b74a5832c1
to4bb0a9be9f
4bb0a9be9f
to050bd77dab
050bd77dab
todfbcedb844
dfbcedb844
toef70579572
ef70579572
to4a8d0de7d2
4a8d0de7d2
tof920421656
View command line instructions
Checkout
From your project repository, check out a new branch and test the changes.