Skip to content

Commit 76862b8

Browse files
[chore] Prepare release v1.40.0/v0.134.0 (#13736)
Clone #13735 to pass the check for merge freeze. --------- Signed-off-by: Bogdan Drutu <[email protected]> Co-authored-by: otelbot <[email protected]>
1 parent 9f90261 commit 76862b8

File tree

93 files changed

+1136
-1235
lines changed

Some content is hidden

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

93 files changed

+1136
-1235
lines changed

.chloggen/add-custom-encoder.yaml

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

.chloggen/fix-map-copy.yaml

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

.chloggen/mx-psi_split-exporterhelper.yaml

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

.chloggen/num_consumers_partitioner_enabled.yaml

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

.chloggen/pb-fix-unmarshal-unpacked.yaml

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

.github/workflows/utils/cspell.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
"Nanos",
5959
"OTELBOT",
6060
"OTEP",
61+
"OTTL",
6162
"Olly",
6263
"Owais",
6364
"Paixão",

CHANGELOG-API.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ If you are looking for user-facing changes, check out [CHANGELOG.md](./CHANGELOG
77

88
<!-- next version -->
99

10+
## v1.40.0/v0.134.0
11+
12+
### 💡 Enhancements 💡
13+
14+
- `exporterhelper`: Split exporterhelper into a separate module (#12985)
15+
16+
<!-- previous-version -->
17+
1018
## v1.39.0/v0.133.0
1119

1220
### 🛑 Breaking changes 🛑

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,25 @@ If you are looking for developer-facing changes, check out [CHANGELOG-API.md](./
77

88
<!-- next version -->
99

10+
## v1.40.0/v0.134.0
11+
12+
### 💡 Enhancements 💡
13+
14+
- `pdata`: Add custom grpc/encoding that replaces proto and calls into the custom marshal/unmarshal logic in pdata. (#13631)
15+
This change should not affect other gRPC calls since it fallbacks to the default grpc/proto encoding if requests are not pdata/otlp requests.
16+
- `pdata`: Avoid copying the pcommon.Map when same origin (#13731)
17+
This is a very large improvement if using OTTL with map functions since it will avoid a map copy.
18+
- `exporterhelper`: Respect `num_consumers` when batching and partitioning are enabled. (#13607)
19+
20+
### 🧰 Bug fixes 🧰
21+
22+
- `pdata`: Correctly parse OTLP payloads containing non-packed repeated primitive fields (#13727, #13730)
23+
This bug prevented the Collector from ingesting most Histogram, ExponentialHistogram,
24+
and Profile payloads.
25+
26+
27+
<!-- previous-version -->
28+
1029
## v1.39.0/v0.133.0
1130

1231
### 🛑 Breaking changes 🛑

client/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ go 1.24
44

55
require (
66
github.com/stretchr/testify v1.10.0
7-
go.opentelemetry.io/collector/consumer v1.39.0
8-
go.opentelemetry.io/collector/pdata v1.39.0
7+
go.opentelemetry.io/collector/consumer v1.40.0
8+
go.opentelemetry.io/collector/pdata v1.40.0
99
go.uber.org/goleak v1.3.0
1010
)
1111

@@ -17,7 +17,7 @@ require (
1717
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
1818
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
1919
github.com/pmezard/go-difflib v1.0.0 // indirect
20-
go.opentelemetry.io/collector/featuregate v1.39.0 // indirect
20+
go.opentelemetry.io/collector/featuregate v1.40.0 // indirect
2121
go.uber.org/multierr v1.11.0 // indirect
2222
golang.org/x/net v0.41.0 // indirect
2323
golang.org/x/sys v0.33.0 // indirect

cmd/builder/internal/builder/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ import (
1818
)
1919

2020
const (
21-
defaultBetaOtelColVersion = "v0.133.0"
22-
defaultStableOtelColVersion = "v1.39.0"
21+
defaultBetaOtelColVersion = "v0.134.0"
22+
defaultStableOtelColVersion = "v1.40.0"
2323
)
2424

2525
// errMissingGoMod indicates an empty gomod field

0 commit comments

Comments
 (0)