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

Release v0.8.0 #44

Merged
merged 8 commits into from
Apr 29, 2024
28 changes: 27 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,31 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [0.8.0] - 2024-04-28

### ⚠️ Notice ⚠️

This release is the last to support Go `1.19`. The next release will require at least Go `1.20`.
ProtozoaJr marked this conversation as resolved.
Show resolved Hide resolved

### Added

- Add `WithPublicEndpoint` & `WithPublicEndpointFn` options. (https://github.com/riandyrn/otelchi/pull/43)

### Changed

- Upgrade to `v1.24.0` of `go.opentelemetry.io/otel`. (https://github.com/riandyrn/otelchi/pull/41)
- Upgrade to `v1.20.0` of `go.opentelemetry.io/otel/semconv`. (https://github.com/riandyrn/otelchi/pull/41)
- Adjust Go version for both `examples/basic` & `examples/multi-services` to `1.19` & `go.opentelemetry.io/otel` to `v1.24.0`. (https://github.com/riandyrn/otelchi/pull/41)
- Update otelhttp version to `0.49.0` since it is the version that uses otel `1.24.0` internally, check [here](https://github.com/open-telemetry/opentelemetry-go-contrib/blob/v1.24.0/instrumentation/net/http/otelhttp/go.mod#L8) for details. (https://github.com/riandyrn/otelchi/pull/42)
- Set the go versions in compatibility-test.yml to 1.19, 1.20, & 1.21. (https://github.com/riandyrn/otelchi/pull/42)
- Set the sampling strategy to always sample in test cases to avoid random error. (https://github.com/riandyrn/otelchi/pull/42)
- Use `otlptrace exporter` instead of `Jaeger Exporter`. (https://github.com/riandyrn/otelchi/pull/42)
ProtozoaJr marked this conversation as resolved.
Show resolved Hide resolved
ProtozoaJr marked this conversation as resolved.
Show resolved Hide resolved

### Removed

- Remove the deprecated Jaeger exporter from `multi-services example` & use `otlptrace exporter` instead. (https://github.com/riandyrn/otelchi/pull/42)
riandyrn marked this conversation as resolved.
Show resolved Hide resolved
- Drop support for Go `<1.19`. (https://github.com/riandyrn/otelchi/pull/41)

## [0.7.0] - 2024-04-22

### ⚠️ Notice ⚠️
Expand Down Expand Up @@ -136,7 +161,8 @@ It contains instrumentation for trace and depends on:
- Example code for a basic usage.
- Apache-2.0 license.

[Unreleased]: https://github.com/riandyrn/otelchi/compare/v0.7.0...HEAD
[Unreleased]: https://github.com/riandyrn/otelchi/compare/v0.8.0...HEAD
[0.8.0]: https://github.com/riandyrn/otelchi/releases/tag/v0.8.0
[0.7.0]: https://github.com/riandyrn/otelchi/releases/tag/v0.7.0
[0.6.0]: https://github.com/riandyrn/otelchi/releases/tag/v0.6.0
[0.5.2]: https://github.com/riandyrn/otelchi/releases/tag/v0.5.2
Expand Down