From fe4fc0d8f81596e68b06c5ab1baa73ae09a39e01 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 14 Sep 2023 04:41:39 +0000 Subject: [PATCH] fix(deps): update module github.com/goccy/go-yaml to v1.11.1 (#87) 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 | |---|---|---|---| | [github.com/goccy/go-yaml](https://togithub.com/goccy/go-yaml) | require | patch | `v1.11.0` -> `v1.11.1` | --- ### Release Notes
goccy/go-yaml (github.com/goccy/go-yaml) ### [`v1.11.1`](https://togithub.com/goccy/go-yaml/releases/tag/v1.11.1): 1.11.1 [Compare Source](https://togithub.com/goccy/go-yaml/compare/v1.11.0...v1.11.1) #### What's Changed - Handle `\r` in a double-quoted string the same as `\n` by [@​k1LoW](https://togithub.com/k1LoW) in [https://github.com/goccy/go-yaml/pull/372](https://togithub.com/goccy/go-yaml/pull/372) - chore: replace loop with n.Values = append(n.Values, target.Values...) by [@​testwill](https://togithub.com/testwill) in [https://github.com/goccy/go-yaml/pull/380](https://togithub.com/goccy/go-yaml/pull/380) - fix: skip encoding an inline field if it is null by [@​zoncoen](https://togithub.com/zoncoen) in [https://github.com/goccy/go-yaml/pull/386](https://togithub.com/goccy/go-yaml/pull/386) - Fix comment parsing with null value by [@​goccy](https://togithub.com/goccy) in [https://github.com/goccy/go-yaml/pull/388](https://togithub.com/goccy/go-yaml/pull/388) #### New Contributors - [@​testwill](https://togithub.com/testwill) made their first contribution in [https://github.com/goccy/go-yaml/pull/380](https://togithub.com/goccy/go-yaml/pull/380) **Full Changelog**: https://github.com/goccy/go-yaml/compare/v1.11.0...v1.11.1
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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/anoriqq/qpm). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index d38d0aa..70920ab 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ go 1.19 require ( github.com/AlecAivazis/survey/v2 v2.3.7 github.com/go-git/go-git/v5 v5.9.0 - github.com/goccy/go-yaml v1.11.0 + github.com/goccy/go-yaml v1.11.1 github.com/google/go-cmp v0.5.9 github.com/pkg/errors v0.9.1 github.com/spf13/cobra v1.7.0 diff --git a/go.sum b/go.sum index c9f5a84..e7b1df0 100644 --- a/go.sum +++ b/go.sum @@ -60,6 +60,8 @@ github.com/go-playground/universal-translator v0.17.0 h1:icxd5fm+REJzpZx7ZfpaD87 github.com/go-playground/validator/v10 v10.4.1 h1:pH2c5ADXtd66mxoE0Zm9SUhxE20r7aM3F26W0hOn+GE= github.com/goccy/go-yaml v1.11.0 h1:n7Z+zx8S9f9KgzG6KtQKf+kwqXZlLNR2F6018Dgau54= github.com/goccy/go-yaml v1.11.0/go.mod h1:H+mJrWtjPTJAHvRbV09MCK9xYwODM+wRTVFFTWckfng= +github.com/goccy/go-yaml v1.11.1 h1:LEoI21G2M4za/y6Ik7x7FYHIBwI2K7579x8zxvPBcD4= +github.com/goccy/go-yaml v1.11.1/go.mod h1:H+mJrWtjPTJAHvRbV09MCK9xYwODM+wRTVFFTWckfng= github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE= github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=