Skip to content

Commit 2de8ebe

Browse files
authored
Merge branch 'main' into merge-append-components
2 parents f5ed9ba + 727ae96 commit 2de8ebe

File tree

41 files changed

+712
-17
lines changed

Some content is hidden

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

41 files changed

+712
-17
lines changed

.chloggen/12948.yaml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Use this changelog template to create an entry for release notes.
2+
3+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
4+
change_type: bug_fix
5+
6+
# The name of the component, or a single word describing the area of concern, (e.g. otlpreceiver)
7+
component: exporterhelper
8+
9+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
10+
note: "Add validation error for batch config if min_size is greater than queue_size."
11+
12+
# One or more tracking issues or pull requests related to the change
13+
issues: [12948]
14+
15+
# (Optional) One or more lines of additional information to render under the primary note.
16+
# These lines will be padded with 2 spaces and then inserted directly into the document.
17+
# Use pipe (|) for multiline entries.
18+
subtext:
19+
20+
# Optional: The change log or logs in which this entry should be included.
21+
# e.g. '[user]' or '[user, api]'
22+
# Include 'user' if the change is relevant to end users.
23+
# Include 'api' if there is a change to a library API.
24+
# Default: '[user]'
25+
change_logs: []
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Use this changelog template to create an entry for release notes.
2+
3+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
4+
change_type: bug_fix
5+
6+
# The name of the component, or a single word describing the area of concern, (e.g. otlpreceiver)
7+
component: confmap
8+
9+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
10+
note: Use reflect.DeepEqual to avoid panic when confmap.enableMergeAppendOption feature gate is enabled.
11+
12+
# One or more tracking issues or pull requests related to the change
13+
issues: [12932]
14+
15+
# (Optional) One or more lines of additional information to render under the primary note.
16+
# These lines will be padded with 2 spaces and then inserted directly into the document.
17+
# Use pipe (|) for multiline entries.
18+
subtext:
19+
20+
# Optional: The change log or logs in which this entry should be included.
21+
# e.g. '[user]' or '[user, api]'
22+
# Include 'user' if the change is relevant to end users.
23+
# Include 'api' if there is a change to a library API.
24+
# Default: '[user]'
25+
change_logs: []

.chloggen/tls-tpm.yaml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Use this changelog template to create an entry for release notes.
2+
3+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
4+
change_type: enhancement
5+
6+
# The name of the component, or a single word describing the area of concern, (e.g. otlpreceiver)
7+
component: tls
8+
9+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
10+
note: Add trusted platform module (TPM) support to TLS authentication.
11+
12+
# One or more tracking issues or pull requests related to the change
13+
issues: [12801]
14+
15+
# (Optional) One or more lines of additional information to render under the primary note.
16+
# These lines will be padded with 2 spaces and then inserted directly into the document.
17+
# Use pipe (|) for multiline entries.
18+
subtext: |
19+
Now the TLS allows the use of TPM for loading private keys (e.g. in TSS2 format).
20+
21+
# Optional: The change log or logs in which this entry should be included.
22+
# e.g. '[user]' or '[user, api]'
23+
# Include 'user' if the change is relevant to end users.
24+
# Include 'api' if there is a change to a library API.
25+
# Default: '[user]'
26+
change_logs: [user]

.github/workflows/utils/cspell.json

+1
Original file line numberDiff line numberDiff line change
@@ -431,6 +431,7 @@
431431
"testprovider",
432432
"testutil",
433433
"tocstop",
434+
"tpmrm",
434435
"tracecontext",
435436
"traceid",
436437
"tracesonmemory",

cmd/otelcorecol/go.mod

+3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ require (
4242
github.com/davecgh/go-spew v1.1.1 // indirect
4343
github.com/ebitengine/purego v0.8.2 // indirect
4444
github.com/felixge/httpsnoop v1.0.4 // indirect
45+
github.com/foxboron/go-tpm-keyfiles v0.0.0-20250323135004-b31fac66206e // indirect
4546
github.com/fsnotify/fsnotify v1.9.0 // indirect
4647
github.com/go-logr/logr v1.4.2 // indirect
4748
github.com/go-logr/stdr v1.2.2 // indirect
@@ -50,6 +51,7 @@ require (
5051
github.com/gobwas/glob v0.2.3 // indirect
5152
github.com/gogo/protobuf v1.3.2 // indirect
5253
github.com/golang/snappy v1.0.0 // indirect
54+
github.com/google/go-tpm v0.9.3 // indirect
5355
github.com/google/uuid v1.6.0 // indirect
5456
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1 // indirect
5557
github.com/hashicorp/go-version v1.7.0 // indirect
@@ -159,6 +161,7 @@ require (
159161
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
160162
go.uber.org/multierr v1.11.0 // indirect
161163
go.uber.org/zap v1.27.0 // indirect
164+
golang.org/x/crypto v0.37.0 // indirect
162165
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
163166
golang.org/x/net v0.39.0 // indirect
164167
golang.org/x/text v0.24.0 // indirect

cmd/otelcorecol/go.sum

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/configgrpc/go.mod

+3
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,13 @@ require (
2929

3030
require (
3131
github.com/davecgh/go-spew v1.1.1 // indirect
32+
github.com/foxboron/go-tpm-keyfiles v0.0.0-20250323135004-b31fac66206e // indirect
3233
github.com/fsnotify/fsnotify v1.9.0 // indirect
3334
github.com/go-logr/logr v1.4.2 // indirect
3435
github.com/go-logr/stdr v1.2.2 // indirect
3536
github.com/gogo/protobuf v1.3.2 // indirect
3637
github.com/golang/snappy v0.0.4 // indirect
38+
github.com/google/go-tpm v0.9.3 // indirect
3739
github.com/google/uuid v1.6.0 // indirect
3840
github.com/hashicorp/go-version v1.7.0 // indirect
3941
github.com/json-iterator/go v1.1.12 // indirect
@@ -53,6 +55,7 @@ require (
5355
go.opentelemetry.io/otel/trace v1.35.0 // indirect
5456
go.uber.org/multierr v1.11.0 // indirect
5557
go.uber.org/zap v1.27.0 // indirect
58+
golang.org/x/crypto v0.37.0 // indirect
5659
golang.org/x/net v0.39.0 // indirect
5760
golang.org/x/sys v0.32.0 // indirect
5861
golang.org/x/text v0.24.0 // indirect

config/configgrpc/go.sum

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/confighttp/go.mod

+3
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,12 @@ require (
3131
require (
3232
github.com/davecgh/go-spew v1.1.1 // indirect
3333
github.com/felixge/httpsnoop v1.0.4 // indirect
34+
github.com/foxboron/go-tpm-keyfiles v0.0.0-20250323135004-b31fac66206e // indirect
3435
github.com/fsnotify/fsnotify v1.9.0 // indirect
3536
github.com/go-logr/logr v1.4.2 // indirect
3637
github.com/go-logr/stdr v1.2.2 // indirect
3738
github.com/gogo/protobuf v1.3.2 // indirect
39+
github.com/google/go-tpm v0.9.3 // indirect
3840
github.com/google/uuid v1.6.0 // indirect
3941
github.com/hashicorp/go-version v1.7.0 // indirect
4042
github.com/pmezard/go-difflib v1.0.0 // indirect
@@ -49,6 +51,7 @@ require (
4951
go.opentelemetry.io/otel/sdk/metric v1.35.0 // indirect
5052
go.opentelemetry.io/otel/trace v1.35.0 // indirect
5153
go.uber.org/multierr v1.11.0 // indirect
54+
golang.org/x/crypto v0.37.0 // indirect
5255
golang.org/x/sys v0.32.0 // indirect
5356
golang.org/x/text v0.24.0 // indirect
5457
google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a // indirect

config/confighttp/go.sum

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/confighttp/xconfighttp/go.mod

+3
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@ require (
1414
require (
1515
github.com/davecgh/go-spew v1.1.1 // indirect
1616
github.com/felixge/httpsnoop v1.0.4 // indirect
17+
github.com/foxboron/go-tpm-keyfiles v0.0.0-20250323135004-b31fac66206e // indirect
1718
github.com/fsnotify/fsnotify v1.9.0 // indirect
1819
github.com/go-logr/logr v1.4.2 // indirect
1920
github.com/go-logr/stdr v1.2.2 // indirect
2021
github.com/gogo/protobuf v1.3.2 // indirect
2122
github.com/golang/snappy v1.0.0 // indirect
23+
github.com/google/go-tpm v0.9.3 // indirect
2224
github.com/google/uuid v1.6.0 // indirect
2325
github.com/hashicorp/go-version v1.7.0 // indirect
2426
github.com/klauspost/compress v1.18.0 // indirect
@@ -45,6 +47,7 @@ require (
4547
go.opentelemetry.io/otel/sdk/metric v1.35.0 // indirect
4648
go.uber.org/multierr v1.11.0 // indirect
4749
go.uber.org/zap v1.27.0 // indirect
50+
golang.org/x/crypto v0.37.0 // indirect
4851
golang.org/x/net v0.39.0 // indirect
4952
golang.org/x/sys v0.32.0 // indirect
5053
golang.org/x/text v0.24.0 // indirect

config/confighttp/xconfighttp/go.sum

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)