chore(deps) Update Tauri Bundler - autoclosed#2
Closed
renovate[bot] wants to merge 1 commit into
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.0->1.0.820.19->0.28.00.3->0.3.14.3->4.5.00.4->0.5.00.4->0.4.30.3->0.3.10.24.2->0.25.11.2->1.4.00.4.17->0.4.211->1.10.41.0->1.0.1991.0->1.0.1160.10->0.10.80.10.0->0.11.10.4.38->0.4.403.3.0->3.10.11.0->1.0.590.3->0.3.360.5.9->0.8.121->1.8.02->2.5.00.10->0.52.00.6->0.6.6Release Notes
dtolnay/anyhow (anyhow)
v1.0.82Compare Source
v1.0.81Compare Source
v1.0.80Compare Source
v1.0.79Compare Source
v1.0.78Compare Source
v1.0.77Compare Source
anyhow::Error::backtraceavailable on stable Rust compilers 1.65+ (#293, thanks @LukasKalbertodt)v1.0.76Compare Source
unsafe_op_in_unsafe_fnlint (#329)v1.0.75Compare Source
v1.0.74Compare Source
v1.0.73Compare Source
v1.0.72Compare Source
v1.0.71Compare Source
v1.0.70Compare Source
v1.0.69Compare Source
v1.0.68Compare Source
-Zrustdoc-scrape-exampleson docs.rs for nowv1.0.67Compare Source
context()is used on anOption(#280)v1.0.66Compare Source
contextcall (#279)v1.0.65Compare Source
impl Provider for anyhow::Errorv1.0.64Compare Source
#[source] anyhow::Errorwith thiserror crate (#231)v1.0.63Compare Source
v1.0.62Compare Source
cargoinvocations with IDE builds (#261)v1.0.61Compare Source
v1.0.60Compare Source
--targetto rustc invocation when deciding about backtrace support (#249, thanks @RalfJung)v1.0.59Compare Source
no-stdcategoryv1.0.58Compare Source
v1.0.57Compare Source
log4rs-specific workaround frombail!macro implementationv1.0.56Compare Source
must_usewarning when an Error created byanyhow!is not used, perhaps because the programmer meant to writebail!instead (#229)v1.0.55Compare Source
v1.0.54Compare Source
ensure!when the expression involves a negative literal const generic as the first generic argument of a method call (#224)v1.0.53Compare Source
v1.0.52Compare Source
v1.0.51Compare Source
Okfnv1.0.50Compare Source
ensure!macro (#199, #200, #202, #203, #204, #205, #206)v1.0.49Compare Source
anyhow::Ok(v)equivalent toOk::<_, anyhow::Error>(v)(#192)v1.0.48Compare Source
Debugrendering of lhs and rhs inensure!messages (#193, #194, #195, #196, #197, #198)Example:
v1.0.47Compare Source
v1.0.46Compare Source
Support for implicit format args to match println and other std macros (https://rust-lang.github.io/rfcs/2795-format-args-implicit-identifiers.html)
Detect missing fmt arguments at compile time:
anyhow!("{} not found")(#55)Reduce occurrence of "future cannot be shared between threads safely" in async code using anyhow macros (#186)
v1.0.45Compare Source
anyhow!,ensure!, orbail!with format args and is built with#![no_std]or#v1.0.44Compare Source
v1.0.43Compare Source
v1.0.42Compare Source
v1.0.41Compare Source
v1.0.40Compare Source
v1.0.39Compare Source
Add an opt-in implementation of
Error::backtraceon stable compilers based on thebacktracecrate (#143)v1.0.38Compare Source
v1.0.37Compare Source
v1.0.36Compare Source
void*for round tripping through a C FFI (#132)v1.0.35Compare Source
Support 1-argument use of
ensure!(#126)v1.0.34Compare Source
bail!macro in preparation for https://github.com/rust-lang/rust/pull/78685 (#120)v1.0.33Compare Source
anyhow!,bail!,ensure!macros (#114)v1.0.32Compare Source
impl From<anyhow::Error> for Box<dyn Error + Send + 'static>(#103)v1.0.31Compare Source
{:?}representation (#92)v1.0.30Compare Source
cargo rustc -vv(#91, thanks @eoger)v1.0.29Compare Source
v1.0.28Compare Source
v1.0.27Compare Source
Improve documentation of backtrace environment variable combinations (#69)
v1.0.26Compare Source
v1.0.25Compare Source
Add no-std support (#53)
In no_std mode, the same API is almost all available and works the same way. To depend on Anyhow in no_std mode, disable our default enabled "std" feature in Cargo.toml. A global allocator is required.
Since the
?-based error conversions would normally rely on thestd::error::Errortrait which is only available through std, no_std mode will require an explicit.map_err(Error::msg)when working with a non-Anyhow error type inside a function that returns Anyhow's error type.v1.0.24Compare Source
v1.0.23Compare Source
impl AsRef<dyn std::error::Error>andimpl AsRef<dyn std::error::Error + Send + Sync>for anyhow::ErrorChain::newconstructorv1.0.22Compare Source
bail!orensure!is invoked with anyhow::Error as the error argument (#46)v1.0.21Compare Source
Provide DoubleEndedIterator and ExactSizeIterator implementations for anyhow::Chain to assist in custom rendering of cause chains (#45)
v1.0.20Compare Source
Introduce some {:#} and {:#?} alt formatting representations (#42)
When you print an error object using "{}" or to_string(), only the outermost underlying error or context is printed, not any of the lower level causes. This is exactly as if you had called the Display impl of the error from which you constructed your anyhow::Error.
Failed to read instrs from ./path/to/instrs.jsonTo print causes as well using anyhow's default formatting of causes, use the alternate selector "{:#}".
Failed to read instrs from ./path/to/instrs.json: No such file or directory (os error 2)The Debug format "{:?}" includes your backtrace if one was captured. Note that this is the representation you get by default if you return an error from
fn maininstead of printing it explicitly yourself.To see a conventional struct-style Debug representation, use "{:#?}".
If none of the built-in representations are appropriate and you would prefer to render the error and its cause chain yourself, it can be done something like this:
v1.0.19Compare Source
anyhow!also under the aliasformat_err!(#37)v1.0.18Compare Source
Support downcasting errors with context to the context's type
Cor to the underlying error typeE(#34)That is, in codebases that rely on downcasting, Anyhow's context now supports both of the following use cases:
Attaching context whose type is insignificant onto errors whose type is used in downcasts.
In other error libraries whose context is not designed this way, it can be risky to introduce context to existing code because new context might break existing working downcasts. In Anyhow, any downcast that worked before adding context will continue to work after you add a context, so you should freely add human-readable context to errors wherever it would be helpful.
Attaching context whose type is used in downcasts onto errors whose type is insignificant.
Some codebases prefer to use machine-readable context to categorize lower level errors in a way that will be actionable to higher levels of the application.
v1.0.17Compare Source
Contextimport (#30)v1.0.16Compare Source
impl From<anyhow::Error> for Box<dyn std::error::Error + 'static>(#25)v1.0.15Compare Source
v1.0.14Compare Source
v1.0.13Compare Source
v1.0.12Compare Source
.context(...)on a Result (#18)v1.0.11Compare Source
v1.0.10Compare Source
derive(Error)v1.0.9Compare Source
Contexttrait as it is not intended to be implemented outside of anyhowv1.0.8Compare Source
anyhow!($expr)v1.0.7Compare Source
yanked
v1.0.6Compare Source
v1.0.5Compare Source
impl From<anyhow::Error> for Box<dyn std::error::Error + Send + Sync + 'static>(#10)v1.0.4Compare Source
v1.0.3Compare Source
.context(...)and.with_context(|| ...)on Option<T>v1.0.2Compare Source
v1.0.1Compare Source
ensure!macro (#4, thanks @repi)bail!(#2, thanks @repi)sbstp/attohttpc (attohttpc)
v0.28.0Compare Source
What's Changed
Full Changelog: sbstp/attohttpc@v0.27.0...v0.28.0
v0.27.0Compare Source
What's Changed
New Contributors
Full Changelog: sbstp/attohttpc@v0.26.1...v0.27.0
v0.26.1Compare Source
v0.26.0Compare Source
v0.25.0Compare Source
#137
#139
v0.24.1Compare Source
v0.24.0Compare Source
TLS feature names have been renamed. The old features still exist for compatibility but should no longer be used for new projects.
v0.23.1Compare Source
v0.23.0Compare Source
v0.22.0Compare Source
curlv0.21.0Compare Source
basic-authsupport on all platformsv0.20.0Compare Source
tls-vendoredfeaturev0.19.1Compare Source
#116 always stream multipart body because of issue in multipart
rust-lang/glob (glob)
v0.3.1Compare Source
What's Changed
Error::descriptionby @JohnTitor in https://github.com/rust-lang/glob/pull/120new()anddefault()by @JohnTitor in https://github.com/rust-lang/glob/pull/121New Contributors
Full Changelog: rust-lang/glob@0.3.0...0.3.1
sunng87/handlebars-rust (handlebars)
v4.5.0Compare Source
v4.4.0Compare Source
v4.3.7Compare Source
Resultinhandlebars_helpermacro [#578]v4.3.6Compare Source
[Fixed] Loading template files with multiple extensions, a bug introduced in 4.3.0 when refactoring directory source.
v4.3.5Compare Source
v4.3.4Compare Source
write_fmtfunction forOutput[#522]reason()method forTemplateErrorto access underlying reason,this replaces original direct
.reasonaccess.TemplateError'sreasonfield is depreacted willbe removed in future.
v4.3.3Compare Source
{{~> partial}}tobring behavior closer in line with original javascript version. [#518]
[#520]
v4.3.2Compare Source
Contextfor customstd::io::Write:render_with_context_to_writeandrender_template_with_context_to_writev4.3.1Compare Source
{{~{variable}~}}syntax [#509]withoutboats/heck (heck)
v0.5.0no_stdsupport.unicodefeature. The library now useschar::is_alphanumericinstead of the
unicode-segmentationlibrary to determine word boundaries in all cases.v0.4.1Improvements:
KokaKiwi/rust-hex (hex)
v0.4.3Compare Source
v0.4.2Compare Source
v0.4.1Compare Source
mdsteele/rust-icns (icns)
v0.3.1Compare Source
image-rs/image (image)
v0.25.1Compare Source
Bug fixes:
channel.
ImageFormat::{reading_enabled, writing_enabled}.v0.25.0Compare Source
Breaking changes:
BufRead+Seekbound on many decoders.ExtendedColorTypeinstead ofColorTypewhen encoding.ImageOutputFormat,GenericImageView::bounds, and several otherdeprecated items.
ImageDecoderso the traitis object safe.
repr(transparent)rather thanrepr(C).Structural changes:
Codec changes:
v0.24.9Compare Source
Structural changes:
New features:
from GenericImageView.
Bug fixes:
invalid bit depth.
v0.24.8Compare Source
New features:
DynamicImage::newmethod.PngDecoder::gamma_valuemethod.ImageFormat::{reading_enabled, writing_enabled, all}.rayonfeature.From<DynamicImage>for all image types.Bug fixes:
GifDecoder::with_limitsto raise an error when limits are exceeded.v0.24.7Compare Source
New features:
{ImageBuffer, DynamicImage}::write_with_encoderto simplify writingimages with custom settings.
GenericImageViewsBug fixes:
v0.24.6Compare Source
v0.24.5Compare Source
Structural changes:
tiffcrate to 0.8.0.jpegcrate to 0.3.0.Bug fixes:
as_rgb32ffunction ofDynamicImageis now correctly documented.images. The missing check could panic in debug mode or else set an incorrect
file size in release mode.
PngEncoder::write_imageinstead of the deprecated
PngEncoder::encodewhich did not account for byteorder and could result in images with incorrect colors.
InsufficientMemoryerror when trying to decode a PNG image.Performance:
performance in cases where the image does not need to be resized or has
already been resized.
v0.24.4Compare Source
New Features:
webpis now available with the native library. This needs tobe activate explicitly with the
web-encoderfeature.exrdecoding has gained basic limit support.Bug fixes:
Iterator::size_hintimplementation of pixel iterators has been fixed toreturn the current length indicated by its
ExactSizeIteratorhint.Performance:
ImageBuffer::get_pixel{,_mut}is now marked inline.resizenow short-circuits when image dimensions are unchanged.v0.24.3Compare Source
New Features:
TiffDecodernow supports setting resource limits.Bug fixes:
sile/libflate (libflate)
v1.4.0Compare Source
What's Changed
unread_decoded_datamethods to decoders by @sile in https://github.com/sile/libflate/pull/72Full Changelog: sile/libflate@1.3.0...1.4.0
v1.3.0Compare Source
What's Changed
New Contributors
Full Changelog: sile/libflate@1.2.0...1.3.0
rust-lang/log (log)
v0.4.21Compare Source
v0.4.20Compare Source
local_inner_macrosusage by @EFanZh in https://github.com/rust-lang/log/pull/570v0.4.19Compare Source
v0.4.18Compare Source
Configuration
📅 Schedule: Branch creation - "after 3am on Wednesday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Never, 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 Mend Renovate. View repository job log here.