Skip to content

Commit 77e1876

Browse files
authored
fix(deps): Update module github.com/gkampitakis/go-snaps to v0.5.17 (#32)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/gkampitakis/go-snaps](https://redirect.github.com/gkampitakis/go-snaps) | require | patch | `v0.5.15` -> `v0.5.17` | --- ### Release Notes <details> <summary>gkampitakis/go-snaps (github.com/gkampitakis/go-snaps)</summary> ### [`v0.5.17`](https://redirect.github.com/gkampitakis/go-snaps/compare/v0.5.16...0.5.17) [Compare Source](https://redirect.github.com/gkampitakis/go-snaps/compare/v0.5.16...0.5.17) ### [`v0.5.16`](https://redirect.github.com/gkampitakis/go-snaps/releases/tag/v0.5.16) [Compare Source](https://redirect.github.com/gkampitakis/go-snaps/compare/v0.5.15...v0.5.16) #### What's Changed - fix: don't drop /r character when scanning by [@&#8203;gkampitakis](https://redirect.github.com/gkampitakis) in [https://github.com/gkampitakis/go-snaps/pull/139](https://redirect.github.com/gkampitakis/go-snaps/pull/139) - chore: replace vendored go-diff with upstream by [@&#8203;gkampitakis](https://redirect.github.com/gkampitakis) in [https://github.com/gkampitakis/go-snaps/pull/143](https://redirect.github.com/gkampitakis/go-snaps/pull/143) - chore: update `golangci-lint` to v2 by [@&#8203;G-Rath](https://redirect.github.com/G-Rath) in [https://github.com/gkampitakis/go-snaps/pull/141](https://redirect.github.com/gkampitakis/go-snaps/pull/141) - fix: detect no_color support by [@&#8203;gkampitakis](https://redirect.github.com/gkampitakis) in [https://github.com/gkampitakis/go-snaps/pull/123](https://redirect.github.com/gkampitakis/go-snaps/pull/123) - experimenting with inline snapshot support by [@&#8203;gkampitakis](https://redirect.github.com/gkampitakis) in [https://github.com/gkampitakis/go-snaps/pull/70](https://redirect.github.com/gkampitakis/go-snaps/pull/70) **Full Changelog**: gkampitakis/go-snaps@v0.5.15...v0.5.16 </details> --- ### Configuration 📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (UTC), 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4yMi4xIiwidXBkYXRlZEluVmVyIjoiNDAuMjIuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIl19-->
1 parent 599db58 commit 77e1876

2 files changed

Lines changed: 7 additions & 9 deletions

File tree

go.mod

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/cloudquery/licenser
33
go 1.25.1
44

55
require (
6-
github.com/gkampitakis/go-snaps v0.5.15
6+
github.com/gkampitakis/go-snaps v0.5.17
77
github.com/google/go-licenses/v2 v2.0.1
88
github.com/spf13/cobra v1.10.1
99
github.com/stretchr/testify v1.11.1
@@ -13,7 +13,6 @@ require (
1313
require (
1414
github.com/davecgh/go-spew v1.1.1 // indirect
1515
github.com/gkampitakis/ciinfo v0.3.2 // indirect
16-
github.com/gkampitakis/go-diff v1.3.2 // indirect
1716
github.com/go-logr/logr v1.2.0 // indirect
1817
github.com/goccy/go-yaml v1.18.0 // indirect
1918
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
@@ -25,7 +24,7 @@ require (
2524
github.com/otiai10/copy v1.10.0 // indirect
2625
github.com/pmezard/go-difflib v1.0.0 // indirect
2726
github.com/rogpeppe/go-internal v1.13.1 // indirect
28-
github.com/sergi/go-diff v1.2.0 // indirect
27+
github.com/sergi/go-diff v1.4.0 // indirect
2928
github.com/spf13/pflag v1.0.10 // indirect
3029
github.com/tidwall/gjson v1.18.0 // indirect
3130
github.com/tidwall/match v1.1.1 // indirect

go.sum

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@ github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1m
1414
github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
1515
github.com/gkampitakis/ciinfo v0.3.2 h1:JcuOPk8ZU7nZQjdUhctuhQofk7BGHuIy0c9Ez8BNhXs=
1616
github.com/gkampitakis/ciinfo v0.3.2/go.mod h1:1NIwaOcFChN4fa/B0hEBdAb6npDlFL8Bwx4dfRLRqAo=
17-
github.com/gkampitakis/go-diff v1.3.2 h1:Qyn0J9XJSDTgnsgHRdz9Zp24RaJeKMUHg2+PDZZdC4M=
18-
github.com/gkampitakis/go-diff v1.3.2/go.mod h1:LLgOrpqleQe26cte8s36HTWcTmMEur6OPYerdAAS9tk=
19-
github.com/gkampitakis/go-snaps v0.5.15 h1:amyJrvM1D33cPHwVrjo9jQxX8g/7E2wYdZ+01KS3zGE=
20-
github.com/gkampitakis/go-snaps v0.5.15/go.mod h1:HNpx/9GoKisdhw9AFOBT1N7DBs9DiHo/hGheFGBZ+mc=
17+
github.com/gkampitakis/go-snaps v0.5.17 h1:CaUQUoYrmALOcHTtlKx6ZTfpN3P1qRASu6BN4AY9YQY=
18+
github.com/gkampitakis/go-snaps v0.5.17/go.mod h1:gC3YqxQTPyIXvQrw/Vpt3a8VqR1MO8sVpZFWN4DGwNs=
2119
github.com/go-logr/logr v1.2.0 h1:QK40JKJyMdUDz+h+xvCsru/bJhvG0UxvePV0ufL/AcE=
2220
github.com/go-logr/logr v1.2.0/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
2321
github.com/goccy/go-yaml v1.18.0 h1:8W7wMFS12Pcas7KU+VVkaiCng+kG8QiFeFwzFb+rwuw=
@@ -78,8 +76,8 @@ github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR
7876
github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o=
7977
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
8078
github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM=
81-
github.com/sergi/go-diff v1.2.0 h1:XU+rvMAioB0UC3q1MFrIQy4Vo5/4VsRDQQXHsEya6xQ=
82-
github.com/sergi/go-diff v1.2.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM=
79+
github.com/sergi/go-diff v1.4.0 h1:n/SP9D5ad1fORl+llWyN+D6qoUETXNZARKjyY2/KVCw=
80+
github.com/sergi/go-diff v1.4.0/go.mod h1:A0bzQcvG0E7Rwjx0REVgAGH58e96+X0MeOfepqsbeW4=
8381
github.com/spf13/cobra v1.10.1 h1:lJeBwCfmrnXthfAupyUTzJ/J4Nc1RsHC/mSRU2dll/s=
8482
github.com/spf13/cobra v1.10.1/go.mod h1:7SmJGaTHFVBY0jW4NXGluQoLvhqFQM+6XSKD+P4XaB0=
8583
github.com/spf13/pflag v1.0.9/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
@@ -170,6 +168,7 @@ gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogR
170168
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
171169
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
172170
gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
171+
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
173172
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
174173
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
175174
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

0 commit comments

Comments
 (0)