Skip to content

Commit 004f5fd

Browse files
committed
go.mod: update gocache to commit 37379ee3e160
Fix a cache write error introduced in v0.0.16. Retract v0.0.16 for that reasion.
1 parent 7df652a commit 004f5fd

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@ module github.com/tailscale/go-cache-plugin
22

33
go 1.23
44

5-
toolchain go1.23.1
6-
75
require (
86
github.com/aws/aws-sdk-go-v2/config v1.27.28
97
github.com/aws/aws-sdk-go-v2/service/s3 v1.59.0
108
github.com/creachadair/atomicfile v0.3.5
119
github.com/creachadair/command v0.1.17
1210
github.com/creachadair/flax v0.0.2
13-
github.com/creachadair/gocache v0.0.0-20241113195928-1e410bbfdd61
11+
github.com/creachadair/gocache v0.0.0-20241114042026-37379ee3e160
1412
github.com/creachadair/mds v0.21.4
1513
github.com/creachadair/mhttp v0.0.0-20240908014720-a77225a19b8b
1614
github.com/creachadair/scheddle v0.0.0-20240919010233-b6854e09d972
@@ -58,3 +56,5 @@ require (
5856
golang.org/x/tools v0.23.0 // indirect
5957
google.golang.org/protobuf v1.33.0 // indirect
6058
)
59+
60+
retract v0.0.16

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ github.com/creachadair/command v0.1.17 h1:2ZHtS5u/32RdbPYNQrpu9Wf5i6zEuq5YtwcIQQ
4646
github.com/creachadair/command v0.1.17/go.mod h1:JyiZVgQzhzPWa8DdE6Hfl+IOi7DMpXToBEvQCQoST7c=
4747
github.com/creachadair/flax v0.0.2 h1:E0cc6njSIhSh6wSP9jSp/Rdx9pPDtru4vhaazxbNU5k=
4848
github.com/creachadair/flax v0.0.2/go.mod h1:K8bFvn8hMdAljQkaKNc7I3os5Wk36JxkyCkfdZ7S8d4=
49-
github.com/creachadair/gocache v0.0.0-20241113195928-1e410bbfdd61 h1:1emBa6KM+LaXs9xHyv4B50w4QdERHPzt8jExAmjZsWU=
50-
github.com/creachadair/gocache v0.0.0-20241113195928-1e410bbfdd61/go.mod h1:9BNK4UqnyFY8qt5Bl7XthjMRRckOMAFGRaxSZ+ED7rY=
49+
github.com/creachadair/gocache v0.0.0-20241114042026-37379ee3e160 h1:XiqP9XrhbY0w2Wfiu6MZVxygrhcN1qGVdqBvnJ/TBN4=
50+
github.com/creachadair/gocache v0.0.0-20241114042026-37379ee3e160/go.mod h1:9BNK4UqnyFY8qt5Bl7XthjMRRckOMAFGRaxSZ+ED7rY=
5151
github.com/creachadair/mds v0.21.4 h1:osKuLbjkV7YswBnhuTJh1lCDkqZMQnNfFVn0j8wLpz8=
5252
github.com/creachadair/mds v0.21.4/go.mod h1:1ltMWZd9yXhaHEoZwBialMaviWVUpRPvMwVP7saFAzM=
5353
github.com/creachadair/mhttp v0.0.0-20240908014720-a77225a19b8b h1:B6laO9uL+fvT6rwhABEyYBs7MT6YgnDa7HyU5wypqEI=

lib/gobuild/gobuild.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ import (
3838
//
3939
// Each output object is stored in a file named:
4040
//
41-
// [<prefix>/]object/<xx>/<object-id>
41+
// [<prefix>/]output/<xx>/<object-id>
4242
//
4343
// The object and action IDs are encoded as lower-case hexadecimal strings,
4444
// with "<xx>" denoting the first two bytes of the ID to partition the space.
4545
//
4646
// The contents of each action file have the format:
4747
//
48-
// <object-id> <timestamp>
48+
// <output-id> <timestamp>
4949
//
5050
// where the object ID is hex encoded and the timestamp is Unix nanoseconds.
5151
// The object file contains just the binary data of the object.

0 commit comments

Comments
 (0)