Skip to content

Commit 09a584c

Browse files
authored
Bump github.com/sanity-io/litter from 1.5.2 to 1.5.8 (#5451)
Bumps [github.com/sanity-io/litter](https://github.com/sanity-io/litter) from 1.5.2 to 1.5.8. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sanity-io/litter/commit/4fde30cab354d1dc18c21d2a1b9ac5c75600ec19"><code>4fde30c</code></a> fix: fixes panic on unexported field access.</li> <li><a href="https://github.com/sanity-io/litter/commit/61ca8aa20ab3dd224ead03cb8e89e9ba38ad5116"><code>61ca8aa</code></a> feat: support <code>FormatTime</code>.</li> <li><a href="https://github.com/sanity-io/litter/commit/3d1485f1f260405aa7f9b4f7e573c3d4809ec302"><code>3d1485f</code></a> chore: fix deprecations.</li> <li><a href="https://github.com/sanity-io/litter/commit/7e132579048ac450c3cbcd4d448efbae937017e1"><code>7e13257</code></a> feat: adds <code>D()</code>, a shorthand for <code>Dump()</code>.</li> <li><a href="https://github.com/sanity-io/litter/commit/f2ba02b77978d2fb5030483056f1939027fd1abc"><code>f2ba02b</code></a> fix: don't cache array/slice length when traversing.</li> <li><a href="https://github.com/sanity-io/litter/commit/c028d3cb966dda224fc5c54dda5b246b478fe149"><code>c028d3c</code></a> ci: adds GitHub Actions action.</li> <li><a href="https://github.com/sanity-io/litter/commit/cfce9160a04515cc54f0b6fb4c0e2eb1c6edf590"><code>cfce916</code></a> Fix pointer resued in maps key</li> <li><a href="https://github.com/sanity-io/litter/commit/65e672ecd4d7f12e1e7da5ca7185ffea6cc8ac9f"><code>65e672e</code></a> ci: removes .travis.yml, which is no longer operative</li> <li>See full diff in <a href="https://github.com/sanity-io/litter/compare/v1.5.2...v1.5.8">compare view</a></li> </ul> </details> <br />
2 parents 508d328 + 9c2d120 commit 09a584c

File tree

6 files changed

+43
-22
lines changed

6 files changed

+43
-22
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ require (
2828
github.com/rivo/uniseg v0.4.7
2929
github.com/sahilm/fuzzy v0.1.0
3030
github.com/samber/lo v1.31.0
31-
github.com/sanity-io/litter v1.5.2
31+
github.com/sanity-io/litter v1.5.8
3232
github.com/sasha-s/go-deadlock v0.3.6
3333
github.com/sirupsen/logrus v1.9.3
3434
github.com/spf13/afero v1.15.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ github.com/sahilm/fuzzy v0.1.0 h1:FzWGaw2Opqyu+794ZQ9SYifWv2EIXpwP4q8dY1kDAwI=
102102
github.com/sahilm/fuzzy v0.1.0/go.mod h1:VFvziUEIMCrT6A6tw2RFIXPXXmzXbOsSHF0DOI8ZK9Y=
103103
github.com/samber/lo v1.31.0 h1:Sfa+/064Tdo4SvlohQUQzBhgSer9v/coGvKQI/XLWAM=
104104
github.com/samber/lo v1.31.0/go.mod h1:HLeWcJRRyLKp3+/XBJvOrerCQn9mhdKMHyd7IRlgeQ8=
105-
github.com/sanity-io/litter v1.5.2 h1:AnC8s9BMORWH5a4atZ4D6FPVvKGzHcnc5/IVTa87myw=
106-
github.com/sanity-io/litter v1.5.2/go.mod h1:5Z71SvaYy5kcGtyglXOC9rrUi3c1E8CamFWjQsazTh0=
105+
github.com/sanity-io/litter v1.5.8 h1:uM/2lKrWdGbRXDrIq08Lh9XtVYoeGtcQxk9rtQ7+rYg=
106+
github.com/sanity-io/litter v1.5.8/go.mod h1:9gzJgR2i4ZpjZHsKvUXIRQVk7P+yM3e+jAF7bU2UI5U=
107107
github.com/sasha-s/go-deadlock v0.3.6 h1:TR7sfOnZ7x00tWPfD397Peodt57KzMDo+9Ae9rMiUmw=
108108
github.com/sasha-s/go-deadlock v0.3.6/go.mod h1:CUqNyyvMxTyjFqDT7MRg9mb4Dv/btmGTqSR+rky/UXo=
109109
github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=

vendor/github.com/sanity-io/litter/.travis.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

vendor/github.com/sanity-io/litter/dump.go

Lines changed: 36 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/sanity-io/litter/pointers.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/modules.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ github.com/sahilm/fuzzy
152152
# github.com/samber/lo v1.31.0
153153
## explicit; go 1.18
154154
github.com/samber/lo
155-
# github.com/sanity-io/litter v1.5.2
156-
## explicit; go 1.14
155+
# github.com/sanity-io/litter v1.5.8
156+
## explicit; go 1.16
157157
github.com/sanity-io/litter
158158
# github.com/sasha-s/go-deadlock v0.3.6
159159
## explicit

0 commit comments

Comments
 (0)