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

Minor bumps #786

Merged
merged 5 commits into from
Oct 6, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## Exporter
## Exporter 1.8.0 - 2024-10-05

### Fixes

Expand All @@ -18,6 +18,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
adding to the
attributes](https://github.com/open-telemetry/opentelemetry-erlang/pull/737)

## API 1.4.0 - 2024-10-05

### Changes

- [Hard code semconv 0.2 values](https://github.com/open-telemetry/opentelemetry-erlang/pull/780)

## SDK 1.5.0 - 2024-10-05

### Changes

- [Fix invalid warning log causing FORMATTER
CRASH](https://github.com/open-telemetry/opentelemetry-erlang/pull/774)
- [Hard code semconv 0.2 values](https://github.com/open-telemetry/opentelemetry-erlang/pull/780)

## API 1.3.1 - 2024-09-03

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion apps/opentelemetry/src/opentelemetry.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, opentelemetry,
[{description, "Implementation of stable OpenTelemetry signals"},
{vsn, "1.4.1"},
{vsn, "1.5.0"},
{registered, [
%% global tracer provider supervisor for use by the API
otel_tracer_provider_sup
Expand Down
4 changes: 2 additions & 2 deletions apps/opentelemetry/src/otel_exporter_traces.erl
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
init(Opts) ->
otel_exporter:init(Opts).

export({ExporterModule, Config}, Metrics, Resource) ->
ExporterModule:export(Metrics, Resource, Config).
export({ExporterModule, Config}, SpansTid, Resource) ->
ExporterModule:export(traces, SpansTid, Resource, Config).

shutdown(Exporter) ->
otel_exporter:shutdown(Exporter).
2 changes: 1 addition & 1 deletion apps/opentelemetry_api/src/opentelemetry_api.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, opentelemetry_api,
[{description, "OpenTelemetry API"},
{vsn, "1.3.2"},
{vsn, "1.4.0"},
{registered, []},
{applications,
[kernel,
Expand Down
4 changes: 2 additions & 2 deletions apps/opentelemetry_exporter/rebar.config
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{erl_opts, [debug_info]}.
{deps, [{grpcbox, ">= 0.0.0"},
{tls_certificate_check, "~> 1.18"},
{opentelemetry, "~> 1.4.0"},
{opentelemetry_api, "~> 1.3.0"}]}.
{opentelemetry, "~> 1.5.0"},
{opentelemetry_api, "~> 1.4.0"}]}.

{grpc, [{protos, ["opentelemetry-proto/opentelemetry/proto/collector/trace/v1",
"opentelemetry-proto/opentelemetry/proto/collector/metrics/v1",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, opentelemetry_exporter,
[{description, "OpenTelemetry Protocol Exporter"},
{vsn, "1.7.0"},
{vsn, "1.8.0"},
{registered, []},
{applications,
[kernel,
Expand Down
6 changes: 3 additions & 3 deletions docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ set -e

rebar3 compile
rebar3 edoc
sdk_version=1.4.1
api_version=1.3.2
sdk_version=1.5.0
api_version=1.4.0
exp_sdk_version=0.5.1
exp_api_version=0.5.1
otlp_version=1.7.0
otlp_version=1.8.0
zipkin_version=1.1.0
semconv_version=0.2.0

Expand Down
Loading