fix(deps): update rust crate reqwest to 0.12.0
-
Review changes -
-
Download -
Patches
-
Plain diff
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
reqwest | dependencies | minor |
0.11.27 -> 0.12.0
|
Release Notes
seanmonstar/reqwest (reqwest)
v0.12.14
What's Changed
- re-add fetch_mode_no_cors shim when not in wasm, but deprecated by @seanmonstar in https://github.com/seanmonstar/reqwest/pull/2598
Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.12.13...v0.12.14
v0.12.13
- Add
Form::into_reader()
for blockingmultipart
forms. - Add
Form::into_stream()
for asyncmultipart
forms. - Add support for SOCKS4a proxies.
- Fix decoding responses with multiple zstd frames.
- Fix
RequestBuilder::form()
from overwriting a previously setContent-Type
header, like the other builder methods. - Fix cloning of request timeout in
blocking::Request
. - Fix http3 synchronization of connection creation, reducing unneccesary extra connections.
- Fix Windows system proxy to use
ProxyOverride
as aNO_PROXY
value. - Fix blocking read to correctly reserve and zero read buffer.
- (wasm) Add support for request timeouts.
- (wasm) Fix
Error::is_timeout()
to return true when from a request timeout.
v0.12.12
- (wasm) Fix compilation by not compiler
tokio/time
on WASM.
v0.12.11
- Fix decompression returning an error when HTTP/2 ends with an empty data frame.
v0.12.10
- Add
ClientBuilder::connector_layer()
to allow customizing the connector stack. - Add
ClientBuilder::http2_max_header_list_size()
option. - Fix propagating body size hint (
content-length
) information when wrapping bodies. - Fix decompression of chunked bodies so the connections can be reused more often.
v0.12.9
- Add
tls::CertificateRevocationLists
support. - Add crate features to enable webpki roots without selecting a rustls provider.
- Fix
connection_verbose()
to output read logs. - Fix
multipart::Part::file()
to automatically include content-length. - Fix proxy to internally no longer cache system proxy settings.
v0.12.8
- Add support for SOCKS4 proxies.
- Add
multipart::Form::file()
method for adding files easily. - Add
Body::wrap()
to wrap anyhttp_body::Body
type. - Fix the pool configuration to use a timer to remove expired connections.
v0.12.7
- Revert adding
impl Service<http::Request<_>>
forClient
.
v0.12.6
- Add support for
danger_accept_invalid_hostnames
forrustls
. - Add
impl Service<http::Request<Body>>
forClient
and&'_ Client
. - Add support for
!Sync
bodies inBody::wrap_stream()
. - Enable happy eyeballs when
hickory-dns
is used. - Fix
Proxy
so thatHTTP(S)_PROXY
values take precedence overALL_PROXY
. - Fix
blocking::RequestBuilder::header()
from unsettingsensitive
on passed header values.
v0.12.5
- Add
blocking::ClientBuilder::dns_resolver()
method to change DNS resolver in blocking client. - Add
http3
feature back, still requiringreqwest_unstable
. - Add
rustls-tls-no-provider
Cargo feature to use rustls without a crypto provider. - Fix
Accept-Encoding
header combinations. - Fix http3 resolving IPv6 addresses.
- Internal: upgrade to rustls 0.23.
v0.12.4
- Add
zstd
support, enabled withzstd
Cargo feature. - Add
ClientBuilder::read_timeout(Duration)
, which applies the duration for each read operation. The timeout resets after a successful read.
v0.12.3
- Add
FromStr
fordns::Name
. - Add
ClientBuilder::built_in_webpki_certs(bool)
to enable them separately. - Add
ClientBuilder::built_in_native_certs(bool)
to enable them separately. - Fix sending
content-length: 0
for GET requests. - Fix response body
content_length()
to return value when timeout is configured. - Fix
ClientBuilder::resolve()
to use lowercase domain names.
v0.12.2
- Fix missing ALPN when connecting to socks5 proxy with rustls.
- Fix TLS version limits with rustls.
- Fix not detected ALPN h2 from server with native-tls.
v0.12.1
- Add
Form::into_reader()
for blockingmultipart
forms. - Add
Form::into_stream()
for asyncmultipart
forms. - Add support for SOCKS4a proxies.
- Fix decoding responses with multiple zstd frames.
- Fix
RequestBuilder::form()
from overwriting a previously setContent-Type
header, like the other builder methods. - Fix cloning of request timeout in
blocking::Request
. - Fix http3 synchronization of connection creation, reducing unneccesary extra connections.
- Fix Windows system proxy to use
ProxyOverride
as aNO_PROXY
value. - Fix blocking read to correctly reserve and zero read buffer.
- (wasm) Add support for request timeouts.
- (wasm) Fix
Error::is_timeout()
to return true when from a request timeout.
v0.12.0
- Upgrade to
hyper
,http
, andhttp-body
v1. - Add better support for converting to and from
http::Request
andhttp::Response
. - Add
http2
optional cargo feature, default on. - Add
charset
optional cargo feature, default on. - Add
macos-system-configuration
cargo feature, default on. - Change all optional dependencies to no longer be exposed as implicit features.
- Add
ClientBuilder::interface(str)
to specify the local interface to bind to. - Experimental: disables the
http3
feature temporarily.
v0.11.27
- Add
hickory-dns
feature, deprecatingtrust-dns
. - (wasm) Fix
Form::text()
to not set octet-stream for plain text fields.
v0.11.26
- Revert
system-configuration
upgrade, which broke MSRV on macOS.
v0.11.25
- Fix
Certificate::from_pem_bundle()
parsing. - Fix Apple linker errors from detecting system proxies.
v0.11.24
- Add
Certificate::from_pem_bundle()
to add a bundle. - Add
http3_prior_knowledge()
to blocking client builder. - Remove
Sync
bounds requirement forBody::wrap_stream()
. - Fix HTTP/2 to retry
REFUSED_STREAM
requests. - Fix instances of converting
Url
toUri
that could panic.
v0.11.23
- Add
Proxy::custom_http_auth(val)
for setting the rawProxy-Authorization
header when connecting to proxies. - Fix redirect to reject locations that are not
http://
orhttps://
. - Fix setting
nodelay
when TLS is enabled but URL is HTTP. - (wasm) Add
ClientBuilder::user_agent(val)
. - (wasm) add
multipart::Form::headers(headers)
.
v0.11.22
- Fix compilation on Windows when
trust-dns
is enabled.
v0.11.21
- Add automatically detecting macOS proxy settings.
- Add
ClientBuilder::tls_info(bool)
, which will puttls::TlsInfo
into the response extensions. - Fix trust-dns resolver from possible hangs.
- Fix connect timeout to be split among multiple IP addresses.
v0.11.20
- Fix
deflate
decompression back to using zlib, as outlined in the spec.
v0.11.19
- Add
ClientBuilder::http1_ignore_invalid_headers_in_responses()
option. - Add
ClientBuilder::http1_allow_spaces_after_header_name_in_responses()
option. - Add support for
ALL_PROXY
environment variable. - Add support for
use_preconfigured_tls
when combined with HTTP/3. - Fix
deflate
decompression from using the zlib decoder. - Fix
Response::{text, text_with_charset}()
to strip BOM characters. - Fix a panic when HTTP/3 is used if UDP isn't able to connect.
- Fix some dependencies for HTTP/3.
- Increase MSRV to 1.63.
v0.11.18
- Fix
RequestBuilder::json()
method from overriding a previously setcontent-type
header. An existing value will be left in place. - Upgrade internal dependencies for rustls and compression.
v0.11.17
- Upgrade internal dependencies of Experimental HTTP/3 to use quinn v0.9
- (wasm) Fix blob url support
v0.11.16
- Chore: set MSRV in
Cargo.toml
. - Docs: fix build on docs.rs
v0.11.15
- Add
RequestBuilder
methods to split and reconstruct from its parts. - Add experimental HTTP/3 support.
- Fix
connection_verbose
to logwrite_vectored
calls. - (wasm) Make requests actually cancel if the future is dropped.
v0.11.14
- Adds
Proxy::no_proxy(url)
that works like the NO_PROXY environment variable. - Adds
multipart::Part::headers(headers)
method to add custom headers. - (wasm) Add
Response::bytes_stream()
. - Perf: several internal optimizations reducing copies and memory allocations.
v0.11.13
- Add
ClientBuilder::dns_resolver()
option for custom DNS resolvers. - Add
ClientBuilder::tls_sni(bool)
option to enable or disable TLS Server Name Indication. - Add
Identity::from_pkcs8_pem()
constructor when usingnative-tls
. - Fix
redirect::Policy::limited(0)
from following any redirects.
v0.11.12
- Add
ClientBuilder::resolve_to_addrs()
which allows a slice of IP addresses to be specified for a single host. - Add
Response::upgrade()
to await whether the server agrees to an HTTP upgrade.
v0.11.11
- Add HTTP/2 keep-alive configuration methods on
ClientBuilder
. - Add
ClientBuilder::http1_allow_obsolete_multiline_headers_in_responses()
. - Add
impl Service<Request>
forClient
and&'_ Client
. - (wasm) Add
RequestBuilder::basic_auth()
. - Fix
RequestBuilder::header
to not overridesensitive
if user explicitly set on aHeaderValue
. - Fix rustls parsing of elliptic curve private keys.
- Fix Proxy URL parsing of some invalid targets.
v0.11.10
- Add
Error::url()
to access the URL of an error. - Add
Response::extensions()
to access thehttp::Extensions
of a response. - Fix
rustls-native-certs
to log an error instead of panicking when loading an invalid system certificate. - Fix passing Basic Authorization header to proxies.
v0.11.9
- Add
ClientBuilder::http09_responses(bool)
option to allow receiving HTTP/0.9 responses. - Fix HTTP/2 to retry requests interrupted by an HTTP/2 graceful shutdown.
- Fix proxy loading from environment variables to ignore empty values.
v0.11.8
- Update internal webpki-roots dependency.
v0.11.7
- Add
blocking::ClientBuilder::resolve()
option, matching the async builder. - Implement
From<tokio::fs::File>
forBody
. - Fix
blocking
request-scoped timeout applying to bodies as well. - (wasm) Fix request bodies using multipart vs formdata.
- Update internal
rustls
to 0.20.
v0.11.6
- (wasm) Fix request bodies more.
v0.11.5
- Add
ClientBuilder::http1_only()
method. - Add
tls::Version
type, andClientBuilder::min_tls_version()
andClientBuilder::max_tls_version()
methods. - Implement
TryFrom<Request>
forhttp::Request
. - Implement
Clone
forIdentity
. - Fix
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. - Fix redirection to respect
https_only
option. - (wasm) Add
Body::as_bytes()
method. - (wasm) Fix sometimes wrong conversation of bytes into a
JsValue
. - (wasm) Avoid dependency on serde-serialize feature.
v0.11.4
- Add
ClientBuilder::resolve()
option to override DNS resolution for specific domains. - Add
native-tls-alpn
Cargo feature to use ALPN with the native-tls backend. - Add
ClientBuilder::deflate()
option anddeflate
Cargo feature to support decoding response bodies using deflate. - Add
RequestBuilder::version()
to allow setting the HTTP version of a request. - Fix allowing "invalid" certificates with the
rustls-tls
backend, when the server uses TLS v1.2 or v1.3. - (wasm) Add
try_clone
toRequest
andRequestBuilder
v0.11.3
- Add
impl From<hyper::Body> for reqwest::Body
. - (wasm) Add credentials mode methods to
RequestBuilder
.
v0.11.2
- Add
CookieStore
trait to customize the type that stores and retrieves cookies for a session. - Add
cookie::Jar
as a defaultCookieStore
, easing creating some session cookies before creating theClient
. - Add
ClientBuilder::http2_adaptive_window()
option to configure an adaptive HTTP2 flow control behavior. - Add
ClientBuilder::http2_max_frame_size()
option to adjust the maximum HTTP2 frame size that can be received. - Implement
IntoUrl
forString
, making it more convenient to create requests withformat!
.
v0.11.1
- Add
ClientBuilder::tls_built_in_root_certs()
option to disable built-in root certificates. - Fix
rustls-tls
glue to more often support ALPN to upgrade to HTTP/2. - Fix proxy parsing to assume
http://
if no scheme is found. - Fix connection pool idle reaping by enabling hyper's
runtime
feature. - (wasm) Add
Request::new()
constructor.
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.
Edited by Panter User for API access
Merge request reports
Compare and
Show latest version
- version 318d1e7bc0f
- version 317103b1099
- version 316d74fedb4
- version 31534a9bb06
- version 31439a1972e
- version 31354619924
- version 31208d886db
- version 311b0bbc2ff
- version 310ca35f8c5
- version 3097b0baf16
- version 30893114b8d
- version 3071c33b956
- version 306d86325bf
- version 305afc15bae
- version 3047cadaf91
- version 303a26fec98
- version 302ba0ee4e3
- version 30147052b8c
- version 3002d2118b5
- version 2997d650c8c
- version 2983a7a5bce
- version 29722ba2266
- version 29658bdeadb
- version 295266fd12c
- version 294680d53aa
- version 293b865c6ad
- version 29231a23f77
- version 2917ad68666
- version 290af982209
- version 289eb835c6c
- version 28894ab8db3
- version 2876b697e72
- version 286c2bc7eb7
- version 285c478c836
- version 28498bda14a
- version 2830508531c
- version 282596afb65
- version 28182934b3e
- version 280b542858a
- version 279065b6a5b
- version 27875800588
- version 277dbc8b3a7
- version 276b052f8fb
- version 275012d5a3a
- version 2746c52fd18
- version 273023693b4
- version 2727e2d6a1a
- version 271150dbb48
- version 270b31bbaed
- version 269e50412df
- version 268d57a268d
- version 267a3f1d136
- version 2661be304be
- version 265b5239ba2
- version 264d6410d66
- version 263916eac7e
- version 262b51f4e4c
- version 2614c7015c3
- version 26032aee200
- version 2592103a620
- version 258f8b3e350
- version 257600fb613
- version 2567bef3843
- version 255708cc8ad
- version 2543bd3e2e5
- version 253fb5cf546
- version 252c431ec80
- version 25122705c88
- version 2503df79593
- version 249ae6bdffa
- version 248f254dec4
- version 247d50c75b0
- version 246b48b7a2e
- version 24514edb1cf
- version 24422f76d16
- version 2436bb1c616
- version 24242435527
- version 241c92c5b00
- version 2402dba4d4d
- version 239c505f3f4
- version 238d299d801
- version 2374a155b0d
- version 236e1657793
- version 23594de3cd1
- version 2343506da92
- version 2334e7ac05c
- version 232470a34b5
- version 231358f06d2
- version 230e4bfe5d2
- version 229909a6181
- version 228fad06a2f
- version 2274015fd13
- version 2266448d800
- version 2259485a134
- version 2245dcdf751
- version 223e9c25674
- version 22232edfef0
- version 22169422b4e
- version 2200faa12d4
- version 219d2524a56
- version 21807305bcc
- version 217cb165b4d
- version 2166b53fdc9
- version 21518c9ab45
- version 214fc0fbf54
- version 2137eff8927
- version 212c4a1e269
- version 2114872d5e2
- version 210af9f982e
- version 2098cf566aa
- version 208bfdeedc9
- version 20704a1a5e0
- version 20694280211
- version 205dc0362a9
- version 2048ac4e494
- version 2033046c967
- version 20280a69f28
- version 2016b5c490a
- version 200813b2e2e
- version 199ba817122
- version 198e25fabf1
- version 1976e641b14
- version 1963ed26e89
- version 1951a8ec8b8
- version 194462ebdaf
- version 193cf4411b1
- version 1923385c303
- version 191c29276bf
- version 190ed910c6f
- version 1893e14a4d2
- version 1883e127b1a
- version 1877caba9aa
- version 1865163af61
- version 1855277256b
- version 184617f7d24
- version 1832a5ecc6e
- version 18284b9e6b1
- version 181874c3db0
- version 180594cdd92
- version 1792db4d2f7
- version 178757aa473
- version 177fb01dfd1
- version 176867db0c6
- version 17595d1b5e0
- version 17454920cc4
- version 173dda46ab8
- version 172ee3ca540
- version 17150ca70ff
- version 17001f59df9
- version 16932e7ecd4
- version 168b6234d02
- version 167edb58618
- version 166521b72cf
- version 1655e00340d
- version 164ad47c0e6
- version 16388776f33
- version 162db5b7e1a
- version 161b0f0830b
- version 160081fe2d3
- version 15942c15614
- version 15848374cf1
- version 157a99fccbb
- version 156f4fa5414
- version 155983b5d46
- version 15486d454a4
- version 15326bfc867
- version 15299032824
- version 15143c5df90
- version 150c45901b3
- version 1499c005313
- version 148ba8850f3
- version 147d68ec5da
- version 14699b80d2e
- version 14511efa653
- version 144da4fdc93
- version 143b00691e6
- version 142701e5f71
- version 1412700817b
- version 140770df25a
- version 13908b86653
- version 1387151cd27
- version 137406b7d07
- version 136e8bdb770
- version 1354a8ffe48
- version 13495e88b68
- version 133a6844dca
- version 132997f3f60
- version 1314d712ac3
- version 1306f8af9d3
- version 1299a8e2f44
- version 12876ada799
- version 12794e2fe8e
- version 1263631eb3b
- version 125201e2a11
- version 124f73af28b
- version 123444ddbaf
- version 122684dd912
- version 121ca9c05ca
- version 12063e70fcd
- version 119e9c8f9bd
- version 118b48c86d1
- version 1178c2d617c
- version 116b4732f8f
- version 1152c63cba1
- version 114138a511a
- version 113d721f391
- version 112a59f46c6
- version 11182f5cf31
- version 1109b1547fe
- version 109e128a72a
- version 10808ebd164
- version 107e933cf48
- version 106a10dc043
- version 105176a81f2
- version 10470ed0491
- version 1032aca2eb2
- version 102d530dc5a
- version 10173fd437a
- version 100d273173f
- version 99bd9c54c2
- version 983206116d
- version 97dc82e513
- version 9645ee6fa1
- version 9552d5f8db
- version 94c04671c0
- version 935ab863af
- version 9203002382
- version 91fcf14529
- version 90cd8b8b76
- version 89a21d320f
- version 88b5ec9a4f
- version 87fcbb48cd
- version 8660fb10af
- version 8531bb6f8a
- version 84e0e50112
- version 833f4a0424
- version 82de531a4c
- version 8127e1c124
- version 8007dc519c
- version 799a65367d
- version 78c09427a6
- version 779a93eb90
- version 76f262bfa1
- version 75fd3cb28c
- version 74b4086943
- version 7325ab6959
- version 72dd90b152
- version 719686b021
- version 70411f0651
- version 6940e305d2
- version 68013f22da
- version 671bf1dccd
- version 66d78aa1e1
- version 65d62e50d6
- version 649e5f6e70
- version 631c4c67b3
- version 624bd8f201
- version 611588383a
- version 6028cb4737
- version 59ce350ce7
- version 5879e45c00
- version 5715abf5c6
- version 5601685c22
- version 554a7b251a
- version 54e82c72d2
- version 531dbb0d9e
- version 52c4c0cd0c
- version 5170fdd131
- version 5028128dca
- version 49ebebaf8b
- version 48b30da274
- version 4701ad0dad
- version 4692ceb225
- version 457b327485
- version 44937c5258
- version 43000ce6ed
- version 4265733f33
- version 41db6c8cff
- version 40d046b0d5
- version 397b163500
- version 38aa5554b2
- version 3738a4c77f
- version 364022a5e8
- version 357e262658
- version 34f8ebe20d
- version 3300bf3829
- version 3267f320d5
- version 311f28afeb
- version 30ceec320e
- version 299c04113a
- version 282eb84ea8
- version 27eb685518
- version 26a1e59a62
- version 255c48bc63
- version 24bc9a2543
- version 235b2a47bb
- version 22886ace2f
- version 21e6027c50
- version 203c71e085
- version 1904dcb545
- version 18aca28e1d
- version 17e6eccd74
- version 169e0c2647
- version 1579f25f55
- version 1493fccd43
- version 134ec184ad
- version 129c1947b6
- version 11790f6ff4
- version 106dc6f774
- version 99c5a4d2e
- version 8a8609241
- version 7482aadff
- version 61b0676ee
- version 55c3322c5
- version 4a4fd9cac
- version 3c164ea4b
- version 2e6e550b9
- version 160d24843
- master (HEAD)
- latest versionb1f7d8ff1 commit,
- version 318d1e7bc0f1 commit,
- version 317103b10991 commit,
- version 316d74fedb41 commit,
- version 31534a9bb061 commit,
- version 31439a1972e1 commit,
- version 313546199241 commit,
- version 31208d886db1 commit,
- version 311b0bbc2ff1 commit,
- version 310ca35f8c51 commit,
- version 3097b0baf161 commit,
- version 30893114b8d1 commit,
- version 3071c33b9561 commit,
- version 306d86325bf1 commit,
- version 305afc15bae1 commit,
- version 3047cadaf911 commit,
- version 303a26fec981 commit,
- version 302ba0ee4e31 commit,
- version 30147052b8c1 commit,
- version 3002d2118b51 commit,
- version 2997d650c8c1 commit,
- version 2983a7a5bce1 commit,
- version 29722ba22661 commit,
- version 29658bdeadb1 commit,
- version 295266fd12c1 commit,
- version 294680d53aa1 commit,
- version 293b865c6ad1 commit,
- version 29231a23f771 commit,
- version 2917ad686661 commit,
- version 290af9822091 commit,
- version 289eb835c6c1 commit,
- version 28894ab8db31 commit,
- version 2876b697e721 commit,
- version 286c2bc7eb71 commit,
- version 285c478c8361 commit,
- version 28498bda14a1 commit,
- version 2830508531c1 commit,
- version 282596afb651 commit,
- version 28182934b3e1 commit,
- version 280b542858a1 commit,
- version 279065b6a5b1 commit,
- version 278758005881 commit,
- version 277dbc8b3a71 commit,
- version 276b052f8fb1 commit,
- version 275012d5a3a1 commit,
- version 2746c52fd181 commit,
- version 273023693b41 commit,
- version 2727e2d6a1a1 commit,
- version 271150dbb481 commit,
- version 270b31bbaed1 commit,
- version 269e50412df1 commit,
- version 268d57a268d1 commit,
- version 267a3f1d1361 commit,
- version 2661be304be1 commit,
- version 265b5239ba21 commit,
- version 264d6410d661 commit,
- version 263916eac7e1 commit,
- version 262b51f4e4c1 commit,
- version 2614c7015c31 commit,
- version 26032aee2001 commit,
- version 2592103a6201 commit,
- version 258f8b3e3501 commit,
- version 257600fb6131 commit,
- version 2567bef38431 commit,
- version 255708cc8ad1 commit,
- version 2543bd3e2e51 commit,
- version 253fb5cf5461 commit,
- version 252c431ec801 commit,
- version 25122705c881 commit,
- version 2503df795931 commit,
- version 249ae6bdffa1 commit,
- version 248f254dec41 commit,
- version 247d50c75b01 commit,
- version 246b48b7a2e1 commit,
- version 24514edb1cf1 commit,
- version 24422f76d161 commit,
- version 2436bb1c6161 commit,
- version 242424355271 commit,
- version 241c92c5b001 commit,
- version 2402dba4d4d1 commit,
- version 239c505f3f41 commit,
- version 238d299d8011 commit,
- version 2374a155b0d1 commit,
- version 236e16577931 commit,
- version 23594de3cd11 commit,
- version 2343506da921 commit,
- version 2334e7ac05c1 commit,
- version 232470a34b51 commit,
- version 231358f06d21 commit,
- version 230e4bfe5d21 commit,
- version 229909a61811 commit,
- version 228fad06a2f1 commit,
- version 2274015fd131 commit,
- version 2266448d8001 commit,
- version 2259485a1341 commit,
- version 2245dcdf7511 commit,
- version 223e9c256741 commit,
- version 22232edfef01 commit,
- version 22169422b4e1 commit,
- version 2200faa12d41 commit,
- version 219d2524a561 commit,
- version 21807305bcc1 commit,
- version 217cb165b4d1 commit,
- version 2166b53fdc91 commit,
- version 21518c9ab451 commit,
- version 214fc0fbf541 commit,
- version 2137eff89271 commit,
- version 212c4a1e2691 commit,
- version 2114872d5e21 commit,
- version 210af9f982e1 commit,
- version 2098cf566aa1 commit,
- version 208bfdeedc91 commit,
- version 20704a1a5e01 commit,
- version 206942802111 commit,
- version 205dc0362a91 commit,
- version 2048ac4e4941 commit,
- version 2033046c9671 commit,
- version 20280a69f281 commit,
- version 2016b5c490a1 commit,
- version 200813b2e2e1 commit,
- version 199ba8171221 commit,
- version 198e25fabf11 commit,
- version 1976e641b141 commit,
- version 1963ed26e891 commit,
- version 1951a8ec8b81 commit,
- version 194462ebdaf1 commit,
- version 193cf4411b11 commit,
- version 1923385c3031 commit,
- version 191c29276bf1 commit,
- version 190ed910c6f1 commit,
- version 1893e14a4d21 commit,
- version 1883e127b1a1 commit,
- version 1877caba9aa1 commit,
- version 1865163af611 commit,
- version 1855277256b1 commit,
- version 184617f7d241 commit,
- version 1832a5ecc6e1 commit,
- version 18284b9e6b11 commit,
- version 181874c3db01 commit,
- version 180594cdd921 commit,
- version 1792db4d2f71 commit,
- version 178757aa4731 commit,
- version 177fb01dfd11 commit,
- version 176867db0c61 commit,
- version 17595d1b5e01 commit,
- version 17454920cc41 commit,
- version 173dda46ab81 commit,
- version 172ee3ca5401 commit,
- version 17150ca70ff1 commit,
- version 17001f59df91 commit,
- version 16932e7ecd41 commit,
- version 168b6234d021 commit,
- version 167edb586181 commit,
- version 166521b72cf1 commit,
- version 1655e00340d1 commit,
- version 164ad47c0e61 commit,
- version 16388776f331 commit,
- version 162db5b7e1a1 commit,
- version 161b0f0830b1 commit,
- version 160081fe2d31 commit,
- version 15942c156141 commit,
- version 15848374cf11 commit,
- version 157a99fccbb1 commit,
- version 156f4fa54141 commit,
- version 155983b5d461 commit,
- version 15486d454a41 commit,
- version 15326bfc8671 commit,
- version 152990328241 commit,
- version 15143c5df901 commit,
- version 150c45901b31 commit,
- version 1499c0053131 commit,
- version 148ba8850f31 commit,
- version 147d68ec5da1 commit,
- version 14699b80d2e1 commit,
- version 14511efa6531 commit,
- version 144da4fdc931 commit,
- version 143b00691e61 commit,
- version 142701e5f711 commit,
- version 1412700817b1 commit,
- version 140770df25a1 commit,
- version 13908b866531 commit,
- version 1387151cd271 commit,
- version 137406b7d071 commit,
- version 136e8bdb7701 commit,
- version 1354a8ffe481 commit,
- version 13495e88b681 commit,
- version 133a6844dca1 commit,
- version 132997f3f601 commit,
- version 1314d712ac31 commit,
- version 1306f8af9d31 commit,
- version 1299a8e2f441 commit,
- version 12876ada7991 commit,
- version 12794e2fe8e1 commit,
- version 1263631eb3b1 commit,
- version 125201e2a111 commit,
- version 124f73af28b1 commit,
- version 123444ddbaf1 commit,
- version 122684dd9121 commit,
- version 121ca9c05ca1 commit,
- version 12063e70fcd1 commit,
- version 119e9c8f9bd1 commit,
- version 118b48c86d11 commit,
- version 1178c2d617c1 commit,
- version 116b4732f8f1 commit,
- version 1152c63cba11 commit,
- version 114138a511a1 commit,
- version 113d721f3911 commit,
- version 112a59f46c61 commit,
- version 11182f5cf311 commit,
- version 1109b1547fe1 commit,
- version 109e128a72a1 commit,
- version 10808ebd1641 commit,
- version 107e933cf481 commit,
- version 106a10dc0431 commit,
- version 105176a81f21 commit,
- version 10470ed04911 commit,
- version 1032aca2eb21 commit,
- version 102d530dc5a1 commit,
- version 10173fd437a1 commit,
- version 100d273173f1 commit,
- version 99bd9c54c21 commit,
- version 983206116d1 commit,
- version 97dc82e5131 commit,
- version 9645ee6fa11 commit,
- version 9552d5f8db1 commit,
- version 94c04671c01 commit,
- version 935ab863af1 commit,
- version 92030023821 commit,
- version 91fcf145291 commit,
- version 90cd8b8b761 commit,
- version 89a21d320f1 commit,
- version 88b5ec9a4f1 commit,
- version 87fcbb48cd1 commit,
- version 8660fb10af1 commit,
- version 8531bb6f8a1 commit,
- version 84e0e501121 commit,
- version 833f4a04241 commit,
- version 82de531a4c1 commit,
- version 8127e1c1241 commit,
- version 8007dc519c1 commit,
- version 799a65367d1 commit,
- version 78c09427a61 commit,
- version 779a93eb901 commit,
- version 76f262bfa11 commit,
- version 75fd3cb28c1 commit,
- version 74b40869431 commit,
- version 7325ab69591 commit,
- version 72dd90b1521 commit,
- version 719686b0211 commit,
- version 70411f06511 commit,
- version 6940e305d21 commit,
- version 68013f22da1 commit,
- version 671bf1dccd1 commit,
- version 66d78aa1e11 commit,
- version 65d62e50d61 commit,
- version 649e5f6e701 commit,
- version 631c4c67b31 commit,
- version 624bd8f2011 commit,
- version 611588383a1 commit,
- version 6028cb47371 commit,
- version 59ce350ce71 commit,
- version 5879e45c001 commit,
- version 5715abf5c61 commit,
- version 5601685c221 commit,
- version 554a7b251a1 commit,
- version 54e82c72d21 commit,
- version 531dbb0d9e1 commit,
- version 52c4c0cd0c1 commit,
- version 5170fdd1311 commit,
- version 5028128dca1 commit,
- version 49ebebaf8b1 commit,
- version 48b30da2741 commit,
- version 4701ad0dad1 commit,
- version 4692ceb2251 commit,
- version 457b3274851 commit,
- version 44937c52581 commit,
- version 43000ce6ed1 commit,
- version 4265733f331 commit,
- version 41db6c8cff1 commit,
- version 40d046b0d51 commit,
- version 397b1635001 commit,
- version 38aa5554b21 commit,
- version 3738a4c77f1 commit,
- version 364022a5e81 commit,
- version 357e2626581 commit,
- version 34f8ebe20d1 commit,
- version 3300bf38291 commit,
- version 3267f320d51 commit,
- version 311f28afeb1 commit,
- version 30ceec320e1 commit,
- version 299c04113a1 commit,
- version 282eb84ea81 commit,
- version 27eb6855181 commit,
- version 26a1e59a621 commit,
- version 255c48bc631 commit,
- version 24bc9a25431 commit,
- version 235b2a47bb1 commit,
- version 22886ace2f1 commit,
- version 21e6027c501 commit,
- version 203c71e0851 commit,
- version 1904dcb5451 commit,
- version 18aca28e1d1 commit,
- version 17e6eccd741 commit,
- version 169e0c26471 commit,
- version 1579f25f551 commit,
- version 1493fccd431 commit,
- version 134ec184ad1 commit,
- version 129c1947b61 commit,
- version 11790f6ff41 commit,
- version 106dc6f7741 commit,
- version 99c5a4d2e1 commit,
- version 8a86092411 commit,
- version 7482aadff1 commit,
- version 61b0676ee1 commit,
- version 55c3322c51 commit,
- version 4a4fd9cac1 commit,
- version 3c164ea4b1 commit,
- version 2e6e550b91 commit,
- version 160d248431 commit,
Compare changes
- Side-by-side
- Inline
There are no changes yet
No changes between version 118 and version 118
Loading