From f4367826244a9119eb1de3e11c914aa87091a670 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 20 Jul 2024 08:43:41 +0000 Subject: [PATCH] chore(deps): update rust crate handlebars to v6 (#254) 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 - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **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/andrzejressel/pulumi-wasm). --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 66070551..d41c0536 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1041,9 +1041,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", @@ -1803,7 +1803,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5bb182580f71dd070f88d01ce3de9f4da5021db7115d2e1c3605a754153b77c1" dependencies = [ "bytes", - "heck 0.4.1", + "heck 0.5.0", "itertools", "log", "multimap", diff --git a/Cargo.toml b/Cargo.toml index bb6512d6..006b5833 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -76,7 +76,7 @@ cargo_metadata = "0.18.1" itertools = "0.13.0" testdir = "0.9.1" fs_extra = "1.3.0" -handlebars = "5.1.2" +handlebars = "6.0.0" convert_case = "0.6.0" automod = "1.0.14" mockall = "0.12.1"