Skip to content

Commit eabb64d

Browse files
Merge pull request #26666 from TomSweeneyRedHat/dev/tsweeney/buildah_v1.41.0
Bump Buildah to v1.41.0
2 parents 12b7a33 + f3e3aac commit eabb64d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1542
-482
lines changed

cmd/podman/common/build.go

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"io"
77
"os"
88
"path/filepath"
9+
"strconv"
910
"strings"
1011
"syscall"
1112
"time"
@@ -529,7 +530,6 @@ func buildFlagsWrapperToOptions(c *cobra.Command, contextDir string, flags *Buil
529530
CacheTTL: cacheTTL,
530531
ConfidentialWorkload: confidentialWorkloadOptions,
531532
CommonBuildOpts: commonOpts,
532-
CompatVolumes: types.NewOptionalBool(flags.CompatVolumes),
533533
Compression: compression,
534534
ConfigureNetwork: networkPolicy,
535535
ContextDirectory: contextDir,
@@ -568,6 +568,7 @@ func buildFlagsWrapperToOptions(c *cobra.Command, contextDir string, flags *Buil
568568
Quiet: flags.Quiet,
569569
RemoveIntermediateCtrs: flags.Rm,
570570
ReportWriter: reporter,
571+
RewriteTimestamp: flags.RewriteTimestamp,
571572
Runtime: podmanConfig.RuntimePath,
572573
RuntimeArgs: runtimeFlags,
573574
RusageLogFile: flags.RusageLogFile,
@@ -579,12 +580,23 @@ func buildFlagsWrapperToOptions(c *cobra.Command, contextDir string, flags *Buil
579580
TransientMounts: flags.Volumes,
580581
UnsetEnvs: flags.UnsetEnvs,
581582
UnsetLabels: flags.UnsetLabels,
583+
UnsetAnnotations: flags.UnsetAnnotations,
582584
}
583585

586+
if c.Flag("created-annotation").Changed {
587+
opts.CreatedAnnotation = types.NewOptionalBool(flags.CreatedAnnotation)
588+
}
589+
if c.Flag("compat-volumes").Changed {
590+
opts.CompatVolumes = types.NewOptionalBool(flags.CompatVolumes)
591+
}
584592
if c.Flag("inherit-labels").Changed {
585593
opts.InheritLabels = types.NewOptionalBool(flags.InheritLabels)
586594
}
587595

596+
if c.Flag("inherit-annotations").Changed {
597+
opts.InheritAnnotations = types.NewOptionalBool(flags.InheritAnnotations)
598+
}
599+
588600
if flags.IgnoreFile != "" {
589601
excludes, err := imagebuilder.ParseIgnore(flags.IgnoreFile)
590602
if err != nil {
@@ -593,10 +605,19 @@ func buildFlagsWrapperToOptions(c *cobra.Command, contextDir string, flags *Buil
593605
opts.Excludes = excludes
594606
}
595607

608+
if flags.SourceDateEpoch != "" { // could be explicitly specified, or passed via the environment, tricking .Changed()
609+
sde, err := strconv.ParseInt(flags.SourceDateEpoch, 10, 64)
610+
if err != nil {
611+
return nil, fmt.Errorf("parsing source-date-epoch value %q: %w", flags.SourceDateEpoch, err)
612+
}
613+
sourceDateEpoch := time.Unix(sde, 0).UTC()
614+
opts.SourceDateEpoch = &sourceDateEpoch
615+
}
596616
if c.Flag("timestamp").Changed {
597617
timestamp := time.Unix(flags.Timestamp, 0).UTC()
598618
opts.Timestamp = &timestamp
599619
}
620+
600621
if c.Flag("skip-unused-stages").Changed {
601622
opts.SkipUnusedStages = types.NewOptionalBool(flags.SkipUnusedStages)
602623
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
####> This option file is used in:
2+
####> podman build, farm build
3+
####> If file is edited, make sure the changes
4+
####> are applicable to all of those.
5+
#### **--created-annotation**
6+
7+
Add an image *annotation* (see also **--annotation**) to the image metadata
8+
setting "org.opencontainers.image.created" to the current time, or to the
9+
datestamp specified to the **--source-date-epoch** or **--timestamp** flag,
10+
if either was used. If *false*, no such annotation will be present in the
11+
written image.
12+
13+
Note: this information is not present in Docker image formats, so it is discarded when writing images in Docker formats.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
####> This option file is used in:
2+
####> podman build, farm build
3+
####> If file is edited, make sure the changes
4+
####> are applicable to all of those.
5+
#### **--inherit-annotations**=*bool-value*
6+
7+
Inherit the annotations from the base image or base stages. (default true).
8+
Use cases which set this flag to *false* may need to do the same for the
9+
**--created-annotation** flag.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
####> This option file is used in:
2+
####> podman build, farm build
3+
####> If file is edited, make sure the changes
4+
####> are applicable to all of those.
5+
#### **--rewrite-timestamp**
6+
7+
When generating new layers for the image, ensure that no newly added content
8+
bears a timestamp later than the value used by the **--source-date-epoch**
9+
flag, if one was provided, by replacing any timestamps which are later than
10+
that value, with that value.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
####> This option file is used in:
2+
####> podman build, farm build
3+
####> If file is edited, make sure the changes
4+
####> are applicable to all of those.
5+
#### **--source-date-epoch**=*seconds*
6+
7+
Set the "created" timestamp for the built image to this number of seconds since
8+
the epoch (Unix time 0, i.e., 00:00:00 UTC on 1 January 1970) (default is to
9+
use the value set in the `SOURCE_DATE_EPOCH` environment variable, or the
10+
current time if it is not set).
11+
12+
The "created" timestamp is written into the image's configuration and manifest
13+
when the image is committed, so running the same build two different times
14+
will ordinarily produce images with different sha256 hashes, even if no other
15+
changes were made to the Containerfile and build context.
16+
17+
When this flag is set, a `SOURCE_DATE_EPOCH` build arg will provide its value
18+
for a stage in which it is declared.
19+
20+
When this flag is set, the image configuration's "created" timestamp is always
21+
set to the time specified, which should allow for identical images to be built
22+
at different times using the same set of inputs.
23+
24+
When this flag is set, output written as specified to the **--output** flag
25+
will bear exactly the specified timestamp.
26+
27+
Conflicts with the similar **--timestamp** flag, which also sets its specified
28+
time on the contents of new layers.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
####> This option file is used in:
2+
####> podman build, farm build
3+
####> If file is edited, make sure the changes
4+
####> are applicable to all of those.
5+
#### **--unsetannotation**=*annotation*
6+
7+
Unset the image annotation, causing the annotation not to be inherited from the base image.

docs/source/markdown/podman-build.1.md.in

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,8 @@ Thus, compressing the data before sending it is irrelevant to Podman. (This opti
111111

112112
@@option cpuset-mems
113113

114+
@@option created-annotation
115+
114116
@@option creds
115117

116118
#### **--cw**=*options*
@@ -221,6 +223,8 @@ It does not affect _/etc/resolv.conf_ in the final image.
221223

222224
@@option iidfile
223225

226+
@@option inherit-annotations
227+
224228
@@option inherit-labels
225229

226230
@@option ipc.image
@@ -324,6 +328,8 @@ the help of emulation provided by packages like `qemu-user-static`.
324328

325329
@@option retry-delay
326330

331+
@@option rewrite-timestamp
332+
327333
@@option rm
328334

329335
@@option runtime
@@ -433,6 +439,8 @@ Sign the image using a GPG key with the specified FINGERPRINT. (This option is n
433439

434440
@@option skip-unused-stages
435441

442+
@@option source-date-epoch
443+
436444
@@option squash
437445

438446
@@option squash-all
@@ -455,6 +463,8 @@ Use --stdin to be able to interact from the terminal during the build.
455463

456464
@@option ulimit.image
457465

466+
@@option unsetannotation
467+
458468
@@option unsetenv.image
459469

460470
@@option unsetlabel

docs/source/markdown/podman-farm-build.1.md.in

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ Remove built images from farm nodes on success (Default: false).
7171

7272
@@option cpuset-mems
7373

74+
@@option created-annotation
75+
7476
@@option creds
7577

7678
@@option decryption-key
@@ -123,6 +125,8 @@ This option specifies the name of the farm to be used in the build process.
123125

124126
@@option iidfile
125127

128+
@@option inherit-annotations
129+
126130
@@option inherit-labels
127131

128132
@@option ipc.image
@@ -177,6 +181,8 @@ Build only on farm nodes that match the given platforms.
177181

178182
@@option retry-delay
179183

184+
@@option rewrite-timestamp
185+
180186
@@option rm
181187

182188
@@option runtime
@@ -207,6 +213,8 @@ Build only on farm nodes that match the given platforms.
207213

208214
@@option skip-unused-stages
209215

216+
@@option source-date-epoch
217+
210218
@@option squash
211219

212220
@@option squash-all
@@ -223,6 +231,8 @@ Build only on farm nodes that match the given platforms.
223231

224232
@@option ulimit.image
225233

234+
@@option unsetannotation
235+
226236
@@option unsetenv.image
227237

228238
@@option unsetlabel

go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ require (
1111
github.com/checkpoint-restore/checkpointctl v1.3.0
1212
github.com/checkpoint-restore/go-criu/v7 v7.2.0
1313
github.com/containernetworking/plugins v1.7.1
14-
github.com/containers/buildah v1.40.1-0.20250604193037-b8d8cc375f30
14+
github.com/containers/buildah v1.41.0
1515
github.com/containers/common v0.64.0
1616
github.com/containers/conmon v2.0.20+incompatible
1717
github.com/containers/gvisor-tap-vsock v0.8.6
@@ -98,7 +98,7 @@ require (
9898
github.com/containerd/typeurl/v2 v2.2.3 // indirect
9999
github.com/containernetworking/cni v1.3.0 // indirect
100100
github.com/containers/libtrust v0.0.0-20230121012942-c1716e8a8d01 // indirect
101-
github.com/containers/luksy v0.0.0-20250408185436-4bb4c3f825be // indirect
101+
github.com/containers/luksy v0.0.0-20250609192159-bc60f96d4194 // indirect
102102
github.com/coreos/go-oidc/v3 v3.14.1 // indirect
103103
github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f // indirect
104104
github.com/cyberphone/json-canonicalization v0.0.0-20241213102144-19d51d7fe467 // indirect
@@ -110,7 +110,7 @@ require (
110110
github.com/ebitengine/purego v0.8.4 // indirect
111111
github.com/felixge/httpsnoop v1.0.4 // indirect
112112
github.com/fsnotify/fsnotify v1.9.0 // indirect
113-
github.com/fsouza/go-dockerclient v1.12.0 // indirect
113+
github.com/fsouza/go-dockerclient v1.12.1 // indirect
114114
github.com/go-jose/go-jose/v4 v4.0.5 // indirect
115115
github.com/go-logr/logr v1.4.3 // indirect
116116
github.com/go-logr/stdr v1.2.2 // indirect
@@ -137,7 +137,7 @@ require (
137137
github.com/mdlayher/socket v0.5.1 // indirect
138138
github.com/miekg/pkcs11 v1.1.1 // indirect
139139
github.com/mistifyio/go-zfs/v3 v3.0.1 // indirect
140-
github.com/moby/buildkit v0.22.0 // indirect
140+
github.com/moby/buildkit v0.23.2 // indirect
141141
github.com/moby/go-archive v0.1.0 // indirect
142142
github.com/moby/patternmatcher v0.6.0 // indirect
143143
github.com/moby/sys/mountinfo v0.7.2 // indirect

go.sum

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ github.com/containernetworking/cni v1.3.0 h1:v6EpN8RznAZj9765HhXQrtXgX+ECGebEYEm
6262
github.com/containernetworking/cni v1.3.0/go.mod h1:Bs8glZjjFfGPHMw6hQu82RUgEPNGEaBb9KS5KtNMnJ4=
6363
github.com/containernetworking/plugins v1.7.1 h1:CNAR0jviDj6FS5Vg85NTgKWLDzZPfi/lj+VJfhMDTIs=
6464
github.com/containernetworking/plugins v1.7.1/go.mod h1:xuMdjuio+a1oVQsHKjr/mgzuZ24leAsqUYRnzGoXHy0=
65-
github.com/containers/buildah v1.40.1-0.20250604193037-b8d8cc375f30 h1:kCt0fnVBvXY9J98pUDeUc0gHKrhRwaBTWWD3otLutCE=
66-
github.com/containers/buildah v1.40.1-0.20250604193037-b8d8cc375f30/go.mod h1:QDecwvjrr+e0VD5GYv2dw7tsiqrz673r8B4rIYFP11Y=
65+
github.com/containers/buildah v1.41.0 h1:GU350UeX6BkZrgCE3SB/d1Hu4xBaHUX07ayiJTvJD54=
66+
github.com/containers/buildah v1.41.0/go.mod h1:1Ds26B4E4Z3NeLdi3xjjk8S72KVv2/xiFYYpwfFDgXI=
6767
github.com/containers/common v0.64.0 h1:Jdjq1e5tqrLov9tcAVc/AfvQCgX4krhcfDBgOXwrSfw=
6868
github.com/containers/common v0.64.0/go.mod h1:bq2UIiFP8vUJdgM+WN8E8jkD7wF69SpDRGzU7epJljg=
6969
github.com/containers/conmon v2.0.20+incompatible h1:YbCVSFSCqFjjVwHTPINGdMX1F6JXHGTUje2ZYobNrkg=
@@ -76,8 +76,8 @@ github.com/containers/libhvee v0.10.0 h1:7VLv8keWZpHuGmWvyY4c1mVH5V1JYb1G78VC+8A
7676
github.com/containers/libhvee v0.10.0/go.mod h1:at0h8lRcK5jCKfQgU/e6Io0Mw12F36zRLjXVOXRoDTM=
7777
github.com/containers/libtrust v0.0.0-20230121012942-c1716e8a8d01 h1:Qzk5C6cYglewc+UyGf6lc8Mj2UaPTHy/iF2De0/77CA=
7878
github.com/containers/libtrust v0.0.0-20230121012942-c1716e8a8d01/go.mod h1:9rfv8iPl1ZP7aqh9YA68wnZv2NUDbXdcdPHVz0pFbPY=
79-
github.com/containers/luksy v0.0.0-20250408185436-4bb4c3f825be h1:6E1dD/4g8Kq04jvI5BVqUIx2Z5Nl6+dqYuX9syTVZjI=
80-
github.com/containers/luksy v0.0.0-20250408185436-4bb4c3f825be/go.mod h1:xY4YWmawqtrpLFV7mYSkHfFDwEO+6Fo0bT18Xnsg7M0=
79+
github.com/containers/luksy v0.0.0-20250609192159-bc60f96d4194 h1:mm+XFgCXPx3pFFkFJ0CH6KgX1os5jfrD/T6S/6ht4FE=
80+
github.com/containers/luksy v0.0.0-20250609192159-bc60f96d4194/go.mod h1:ab2XWZtMgybWBznSwo8BEPeIeSpspKh+wlnkq/UY2Uo=
8181
github.com/containers/ocicrypt v1.2.1 h1:0qIOTT9DoYwcKmxSt8QJt+VzMY18onl9jUXsxpVhSmM=
8282
github.com/containers/ocicrypt v1.2.1/go.mod h1:aD0AAqfMp0MtwqWgHM1bUwe1anx0VazI108CRrSKINQ=
8383
github.com/containers/psgo v1.9.0 h1:eJ74jzSaCHnWt26OlKZROSyUyRcGDf+gYBdXnxrMW4g=
@@ -144,8 +144,8 @@ github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSw
144144
github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw=
145145
github.com/fsnotify/fsnotify v1.9.0 h1:2Ml+OJNzbYCTzsxtv8vKSFD9PbJjmhYF14k/jKC7S9k=
146146
github.com/fsnotify/fsnotify v1.9.0/go.mod h1:8jBTzvmWwFyi3Pb8djgCCO5IBqzKJ/Jwo8TRcHyHii0=
147-
github.com/fsouza/go-dockerclient v1.12.0 h1:S2f2crEUbBNCFiF06kR/GvioEB8EMsb3Td/bpawD+aU=
148-
github.com/fsouza/go-dockerclient v1.12.0/go.mod h1:YWUtjg8japrqD/80L98nTtCoxQFp5B5wrSsnyeB5lFo=
147+
github.com/fsouza/go-dockerclient v1.12.1 h1:FMoLq+Zhv9Oz/rFmu6JWkImfr6CBgZOPcL+bHW4gS0o=
148+
github.com/fsouza/go-dockerclient v1.12.1/go.mod h1:OqsgJJcpCwqyM3JED7TdfM9QVWS5O7jSYwXxYKmOooY=
149149
github.com/go-jose/go-jose/v4 v4.0.5 h1:M6T8+mKZl/+fNNuFHvGIzDz7BTLQPIounk/b9dw3AaE=
150150
github.com/go-jose/go-jose/v4 v4.0.5/go.mod h1:s3P1lRrkT8igV8D9OjyL4WRyHvjB6a4JSllnOrmmBOA=
151151
github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
@@ -213,8 +213,8 @@ github.com/gorilla/mux v1.8.1 h1:TuBL49tXwgrFYWhqrNgrUNEY92u81SPhu7sTdzQEiWY=
213213
github.com/gorilla/mux v1.8.1/go.mod h1:AKf9I4AEqPTmMytcMc0KkNouC66V3BtZ4qD5fmWSiMQ=
214214
github.com/gorilla/schema v1.4.1 h1:jUg5hUjCSDZpNGLuXQOgIWGdlgrIdYvgQ0wZtdK1M3E=
215215
github.com/gorilla/schema v1.4.1/go.mod h1:Dg5SSm5PV60mhF2NFaTV1xuYYj8tV8NOPRo4FggUMnM=
216-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.25.1 h1:VNqngBF40hVlDloBruUehVYC3ArSgIyScOAyMRqBxRg=
217-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.25.1/go.mod h1:RBRO7fro65R6tjKzYgLAFo0t1QEXY1Dp+i/bvpRiqiQ=
216+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1 h1:e9Rjr40Z98/clHv5Yg79Is0NtosR5LXRvdr7o/6NwbA=
217+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1/go.mod h1:tIxuGz/9mpox++sgp9fJjHO0+q1X9/UOWd798aAm22M=
218218
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
219219
github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I=
220220
github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
@@ -286,8 +286,8 @@ github.com/miekg/pkcs11 v1.1.1 h1:Ugu9pdy6vAYku5DEpVWVFPYnzV+bxB+iRdbuFSu7TvU=
286286
github.com/miekg/pkcs11 v1.1.1/go.mod h1:XsNlhZGX73bx86s2hdc/FuaLm2CPZJemRLMA+WTFxgs=
287287
github.com/mistifyio/go-zfs/v3 v3.0.1 h1:YaoXgBePoMA12+S1u/ddkv+QqxcfiZK4prI6HPnkFiU=
288288
github.com/mistifyio/go-zfs/v3 v3.0.1/go.mod h1:CzVgeB0RvF2EGzQnytKVvVSDwmKJXxkOTUGbNrTja/k=
289-
github.com/moby/buildkit v0.22.0 h1:aWN06w1YGSVN1XfeZbj2ZbgY+zi5xDAjEFI8Cy9fTjA=
290-
github.com/moby/buildkit v0.22.0/go.mod h1:j4pP5hxiTWcz7xuTK2cyxQislHl/N2WWHzOy43DlLJw=
289+
github.com/moby/buildkit v0.23.2 h1:gt/dkfcpgTXKx+B9I310kV767hhVqTvEyxGgI3mqsGQ=
290+
github.com/moby/buildkit v0.23.2/go.mod h1:iEjAfPQKIuO+8y6OcInInvzqTMiKMbb2RdJz1K/95a0=
291291
github.com/moby/docker-image-spec v1.3.1 h1:jMKff3w6PgbfSa69GfNg+zN/XLhfXJGnEx3Nl2EsFP0=
292292
github.com/moby/docker-image-spec v1.3.1/go.mod h1:eKmb5VW8vQEh/BAr2yvVNvuiJuY6UIocYsFu/DxxRpo=
293293
github.com/moby/go-archive v0.1.0 h1:Kk/5rdW/g+H8NHdJW2gsXyZ7UnzvJNOy6VKJqueWdcQ=
@@ -476,8 +476,8 @@ go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 h1:sbiXRND
476476
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0/go.mod h1:69uWxva0WgAA/4bu2Yy70SLDBwZXuQ6PbBpbsa5iZrQ=
477477
go.opentelemetry.io/otel v1.35.0 h1:xKWKPxrxB6OtMCbmMY021CqC45J+3Onta9MqjhnusiQ=
478478
go.opentelemetry.io/otel v1.35.0/go.mod h1:UEqy8Zp11hpkUrL73gSlELM0DupHoiq72dR+Zqel/+Y=
479-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.32.0 h1:IJFEoHiytixx8cMiVAO+GmHR6Frwu+u5Ur8njpFO6Ac=
480-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.32.0/go.mod h1:3rHrKNtLIoS0oZwkY2vxi+oJcwFRWdtUyRII+so45p8=
479+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.35.0 h1:1fTNlAIJZGWLP5FVu0fikVry1IsiUnXjf7QFvoNN3Xw=
480+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.35.0/go.mod h1:zjPK58DtkqQFn+YUMbx0M2XV3QgKU0gS9LeGohREyK4=
481481
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.35.0 h1:xJ2qHD0C1BeYVTLLR9sX12+Qb95kfeD/byKj6Ky1pXg=
482482
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.35.0/go.mod h1:u5BF1xyjstDowA1R5QAO9JHzqK+ublenEW/dyqTjBVk=
483483
go.opentelemetry.io/otel/metric v1.35.0 h1:0znxYu2SNyuMSQT4Y9WDWej0VpcsxkuklLa4/siN90M=
@@ -488,8 +488,8 @@ go.opentelemetry.io/otel/sdk/metric v1.35.0 h1:1RriWBmCKgkeHEhM7a2uMjMUfP7MsOF5J
488488
go.opentelemetry.io/otel/sdk/metric v1.35.0/go.mod h1:is6XYCUMpcKi+ZsOvfluY5YstFnhW0BidkR+gL+qN+w=
489489
go.opentelemetry.io/otel/trace v1.35.0 h1:dPpEfJu1sDIqruz7BHFG3c7528f6ddfSWfFDVt/xgMs=
490490
go.opentelemetry.io/otel/trace v1.35.0/go.mod h1:WUk7DtFp1Aw2MkvqGdwiXYDZZNvA/1J8o6xRXLrIkyc=
491-
go.opentelemetry.io/proto/otlp v1.3.1 h1:TrMUixzpM0yuc/znrFTP9MMRh8trP93mkCiDVeXrui0=
492-
go.opentelemetry.io/proto/otlp v1.3.1/go.mod h1:0X1WI4de4ZsLrrJNLAQbFeLCm3T7yBkR0XqQ7niQU+8=
491+
go.opentelemetry.io/proto/otlp v1.5.0 h1:xJvq7gMzB31/d406fB8U5CBdyQGw4P399D1aQWU/3i4=
492+
go.opentelemetry.io/proto/otlp v1.5.0/go.mod h1:keN8WnHxOy8PG0rQZjJJ5A2ebUoafqWp0eVQ4yIXvJ4=
493493
go.uber.org/automaxprocs v1.6.0 h1:O3y2/QNTOdbF+e/dpXNNW7Rx2hZ4sTIPyybbxyNqTUs=
494494
go.uber.org/automaxprocs v1.6.0/go.mod h1:ifeIMSnPZuznNm6jmdzmU3/bfk01Fe2fotchwEFJ8r8=
495495
go.yaml.in/yaml/v2 v2.4.2 h1:DzmwEr2rDGHl7lsFgAHxmNz/1NlQ7xLIrlN2h5d1eGI=

0 commit comments

Comments
 (0)