Skip to content

Commit 255690f

Browse files
authored
[chore] Prepare release v1.56.0/v0.150.0 (#15101)
The following commands were run to prepare this release: - make chlog-update VERSION=v1.56.0/v0.150.0 - make prepare-release PREVIOUS_VERSION=1[.]55[.]0 RELEASE_CANDIDATE=1.56.0 MODSET=stable - make prepare-release PREVIOUS_VERSION=0[.]149[.]0 RELEASE_CANDIDATE=0.150.0 MODSET=beta --------- Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
1 parent 5d7304d commit 255690f

99 files changed

Lines changed: 1220 additions & 1350 deletions

File tree

Some content is hidden

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

.chloggen/codeboten_semconv-140.yaml

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

.chloggen/debugexporter-profiles-guard-missing-dictionary-index.yaml

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

.chloggen/fix-unredacted-defaults.yaml

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

.chloggen/issue-15080.yaml

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

.chloggen/mdatagen-toversion-only-stable-deprecated.yaml

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

.chloggen/mdatagen_custom_validation.yaml

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

.chloggen/redact-internal-telemetry-headers.yaml

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

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.56.0/v0.150.0
11+
12+
### 💡 Enhancements 💡
13+
14+
- `cmd/mdatagen`: Add custom validation support for Go config structs (#14563)
15+
16+
<!-- previous-version -->
17+
1018
## v1.55.0/v0.149.0
1119

1220
### 💡 Enhancements 💡

CHANGELOG.md

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

88
<!-- next version -->
99

10+
## v1.56.0/v0.150.0
11+
12+
### 💡 Enhancements 💡
13+
14+
- `all`: Update semconv package from 1.38.0 to 1.40.0 (#15095)
15+
- `cmd/mdatagen`: Only allow the `ToVersion` feature flag attribute to be set for the `Stable` and `Deprecated` stages. (#15040)
16+
To better match the feature flag README
17+
(https://github.com/open-telemetry/opentelemetry-collector/blob/main/featuregate/README.md#feature-lifecycle).
18+
19+
20+
### 🧰 Bug fixes 🧰
21+
22+
- `exporter/debug`: Guard from out of bounds profiles dictionary indices (#14803)
23+
- `pdata/pprofile`: create a copy when the input is marked as read-only (#15080)
24+
- `pkg/otelcol`: Fix missing default values in unredacted print-config command by introducing confmap.WithUnredacted MarshalOption. (#14750)
25+
Resolves an issue where the unredacted mode output omitted all default-valued options. By introducing a new MarshalOption to disable redaction directly at the confmap encoding level, the unredacted mode now preserves all component defaults natively without requiring post-processing.
26+
27+
- `pkg/service`: Headers on the internal telemetry OTLP exporter are now redacted when the configuration is marshaled (#14756)
28+
29+
<!-- previous-version -->
30+
1031
## v1.55.0/v0.149.0
1132

1233
### 🛑 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.25.0
44

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

@@ -16,7 +16,7 @@ require (
1616
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
1717
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
1818
github.com/pmezard/go-difflib v1.0.0 // indirect
19-
go.opentelemetry.io/collector/featuregate v1.55.0 // indirect
19+
go.opentelemetry.io/collector/featuregate v1.56.0 // indirect
2020
go.uber.org/multierr v1.11.0 // indirect
2121
gopkg.in/yaml.v3 v3.0.1 // indirect
2222
)

0 commit comments

Comments
 (0)