Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rel: prepare v1.10.0 #46

Merged
merged 2 commits into from
May 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# otel-config-go changelog

## v1.10.0 (2023-05-31)

### 💥 Breaking Changes 💥

Packages for the Metrics API have been moved as the API implementation has stablized in OTel Go v1.16.0.

- `go.opentelemetry.io/otel/metric/global` -> `go.opentelemetry.io/otel`
- `go.opentelemetry.io/otel/metric/instrument` -> `go.opentelemetry.io/otel/metric`

Imports of these packages in your application will need to be updated.

### Fixes

Fix for the breaking change described above where `go.opentelemetry.io/otel/metric/global` cannot be found for otel-config-go.
The dependency update for otel packages in #40 below—thanks, [Justin Burnham](https://github.com/jburnham)!—includes an update to our import of the metrics package.

### Maintenance

- maint(deps): bump github.com/stretchr/testify from 1.8.2 to 1.8.4 (#44) [dependabot](https://github.com/apps/dependabot)
- maint(deps): bump go.opentelemetry.io/otel from 1.15.1 to 1.16.0 (#40) [@jburnham](https://github.com/jburnham)
robbkidd marked this conversation as resolved.
Show resolved Hide resolved

## v1.9.0 (2023-05-15)

### 💥 Breaking Changes 💥
Expand Down
2 changes: 1 addition & 1 deletion otelconfig/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package otelconfig

const version = "1.9.0"
const version = "1.10.0"