From 910f2a0a0a7a4298923afc88511d089843d02d3a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 05:04:02 +0000 Subject: [PATCH] chore(deps): update rust crate handlebars to v6 (#4402) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [handlebars](https://togithub.com/sunng87/handlebars-rust) | workspace.dependencies | major | `5.1.2` -> `6.0.0` | --- ### Release Notes
sunng87/handlebars-rust (handlebars) ### [`v6.0.0`](https://togithub.com/sunng87/handlebars-rust/blob/HEAD/CHANGELOG.md#600---2024-07-20) [Compare Source](https://togithub.com/sunng87/handlebars-rust/compare/v5.1.2...v6.0.0) - \[Fixed] Various indent issue with partials, empty lines and helpers \[[#​646](https://togithub.com/sunng87/handlebars-rust/issues/646)] \[[#​654](https://togithub.com/sunng87/handlebars-rust/issues/654)] \[[#​658](https://togithub.com/sunng87/handlebars-rust/issues/658)] - \[Fixed] Bug when accessing nested path \[[#​651](https://togithub.com/sunng87/handlebars-rust/issues/651)] - \[Added] New public access to `PathSeg` \[[#​656](https://togithub.com/sunng87/handlebars-rust/issues/656)] - \[Added] New API to set single block params in `BlockContext` \[[#​655](https://togithub.com/sunng87/handlebars-rust/issues/655)] - \[Added] `From` for `RenderErrorReason` \[[#​644](https://togithub.com/sunng87/handlebars-rust/issues/644)] - \[Changed] Add `non_exhaustive` attribute to all public memebers \[[#​647](https://togithub.com/sunng87/handlebars-rust/issues/647)] - \[Changed] `RenderContext` API and improved performance for partial rendering \[[#​661](https://togithub.com/sunng87/handlebars-rust/issues/661)] \[[#​662](https://togithub.com/sunng87/handlebars-rust/issues/662)] - \[Changed] Improved error messsage for template parsing \[[#​638](https://togithub.com/sunng87/handlebars-rust/issues/638)]
--- ### Configuration 📅 **Schedule**: Branch creation - "before 10am on monday" in timezone Asia/Shanghai, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/oxc-project/oxc). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e251fe381291e..1c37b43f79237 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -719,9 +719,9 @@ dependencies = [ [[package]] name = "handlebars" -version = "5.1.2" +version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d08485b96a0e6393e9e4d1b8d48cf74ad6c063cd905eb33f42c1ce3f0377539b" +checksum = "5226a0e122dc74917f3a701484482bed3ee86d016c7356836abbaa033133a157" dependencies = [ "log", "pest", diff --git a/Cargo.toml b/Cargo.toml index cd06bf88d9cf1..9dc6e822dbdb0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -154,7 +154,7 @@ language-tags = "0.3.2" tsify = "0.4.5" wasm-bindgen = "0.2.92" serde-wasm-bindgen = "0.6.5" -handlebars = "5.1.2" +handlebars = "6.0.0" base64 = "0.22.1" compact_str = "0.8.0" console = "0.15.8"