Skip to content

Commit c27d2cd

Browse files
[chore] Prepare release v0.91.0 (open-telemetry#9071)
The following commands were run to prepare this release: - make chlog-update VERSION=v0.91.0 - make prepare-release PREVIOUS_VERSION=0.90.1 RELEASE_CANDIDATE=0.91.0 MODSET=beta
1 parent 7ec38e5 commit c27d2cd

File tree

42 files changed

+279
-423
lines changed

Some content is hidden

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

42 files changed

+279
-423
lines changed

.chloggen/automated-status-on-start.yaml

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

.chloggen/codeboten_enable-otel-by-default.yaml

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

.chloggen/codeboten_fix-missing-metrics.yaml

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

.chloggen/codeboten_gensemconv-1.21.0.yaml

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

.chloggen/connectors-propogate-mutates-data.yaml

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

.chloggen/http2ping.yaml

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

.chloggen/output_version_of_binary.yaml

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

CHANGELOG-API.md

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

88
<!-- next version -->
99

10+
## v0.91.0
11+
1012
## v1.0.0/v0.90.0
1113

1214
### 🛑 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+
## v0.91.0
11+
12+
### 💡 Enhancements 💡
13+
14+
- `statusreporting`: Automates status reporting upon the completion of component.Start(). (#7682)
15+
- `service`: add resource attributes as labels to otel metrics to ensures backwards compatibility with OpenCensus metrics. (#9029)
16+
- `semconv`: Generated Semantic conventions 1.21. (#9056)
17+
- `config/confighttp`: Exposes http/2 transport settings to enable health check and workaround golang http/2 issue https://github.com/golang/go/issues/59690 (#9022)
18+
- `cmd/builder`: running builder version on binaries installed with `go install` will output the version specified at the suffix. (#8770)
19+
20+
### 🧰 Bug fixes 🧰
21+
22+
- `exporterhelper`: fix missed metric aggregations (#9048)
23+
This ensures that context cancellation in the exporter doesn't interfere with metric aggregation. The OTel
24+
SDK currently returns if there's an error in the context used in `Add`. This means that if there's a
25+
cancelled context in an export, the metrics are now recorded.
26+
27+
- `service`: Fix bug where MutatesData would not correctly propagate through connectors. (#9053)
28+
1029
## v0.90.1
1130

1231
### 🧰 Bug fixes 🧰

cmd/builder/internal/builder/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"go.uber.org/zap"
1717
)
1818

19-
const defaultOtelColVersion = "0.90.1"
19+
const defaultOtelColVersion = "0.91.0"
2020

2121
// ErrInvalidGoMod indicates an invalid gomod
2222
var ErrInvalidGoMod = errors.New("invalid gomod specification for module")

0 commit comments

Comments
 (0)