Skip to content

Commit a03276c

Browse files
committed
bump version on api, sdk, experimental api, sdk and exporter
1 parent c1ccdff commit a03276c

File tree

8 files changed

+43
-15
lines changed

8 files changed

+43
-15
lines changed

CHANGELOG.md

Lines changed: 34 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
## API
10+
## API 1.3.0 - 2024-03-15
1111

1212
### Changes
1313

@@ -18,27 +18,42 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818
- [Moved attribute processing functions to `otel_attributes` from
1919
`otel_span`](https://github.com/open-telemetry/opentelemetry-erlang/pull/620)
2020

21-
## SDK
21+
## SDK 1.4.0 - 2024-03-15
2222

2323
### Changes
2424

2525
- [Attributes module `otel_attributes` moved to
2626
API](https://github.com/open-telemetry/opentelemetry-erlang/pull/618)
27+
- [create unique processor name in
28+
otel_tracer_server](https://github.com/open-telemetry/opentelemetry-erlang/pull/646)
2729

2830
### Fixes
2931

3032
- [Fix leak of atoms/persistent terms by creating unique processor name in `otel_tracer_server`](https://github.com/open-telemetry/opentelemetry-erlang/pull/646)
33+
- [fix(otel_batch_processor): don't divide `max_queue_size` by
34+
word-size](https://github.com/open-telemetry/opentelemetry-erlang/pull/635)
35+
- [fix(otel_processor): wait for runner process
36+
termination](https://github.com/open-telemetry/opentelemetry-erlang/pull/641)
3137

32-
## Experimental API
38+
## Exporter 1.7.0 - 2024-03-15
39+
40+
## Added
41+
42+
- [Add User-Agent header to exporter
43+
requests](https://github.com/open-telemetry/opentelemetry-erlang/pull/605)
44+
45+
## Experimental API 0.5.0 - 2024-03-15
3346

3447
### Changes
3548

3649
- [Allow to create observable instruments without passing callback
3750
arguments](https://github.com/open-telemetry/opentelemetry-erlang/pull/604)
3851
- [Allow to give `advisory_params` to instrument creation functions](https://github.com/open-telemetry/opentelemetry-erlang/pull/628)
3952
- [Attributes are optional in Counter.add(), UpDownCounter.add() and Histo.record()](https://github.com/open-telemetry/opentelemetry-erlang/pull/632)
53+
- [Support explicit_bucket_boundaries advisory
54+
parameters](https://github.com/open-telemetry/opentelemetry-erlang/pull/628)
4055

41-
## Experimental SDK
56+
## Experimental SDK 0.5.0 - 2024-03-15
4257

4358
### Added
4459

@@ -48,17 +63,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4863
- [Rename `boundaries` to `explict_bucket_boundaries` in histogram explicit aggregation options](https://github.com/open-telemetry/opentelemetry-erlang/pull/628)
4964
- [Allow creating wildcard views](https://github.com/open-telemetry/opentelemetry-erlang/pull/624)
5065
- [Exemplars support](https://github.com/open-telemetry/opentelemetry-erlang/pull/692)
51-
66+
- [Metric
67+
producers](https://github.com/open-telemetry/opentelemetry-erlang/pull/701)
68+
- [Exemplar reservoir support](https://github.com/open-telemetry/opentelemetry-erlang/pull/692)
69+
5270
### Changes
5371

5472
- [Align histogram default boundaries with specification](https://github.com/open-telemetry/opentelemetry-erlang/pull/614)
55-
73+
- [Metrics: fix observable callbacks to return a list of
74+
results](https://github.com/open-telemetry/opentelemetry-erlang/pull/561)
75+
- [Add a fresh context to each observable callback and test observe
76+
exemplars](https://github.com/open-telemetry/opentelemetry-erlang/pull/697)
77+
5678
### Fixes
5779

5880
- [Correctly record histogram values greater than last boundary](https://github.com/open-telemetry/opentelemetry-erlang/pull/614)
5981
- [Readers should use a default cumulative temporality if not specified](https://github.com/open-telemetry/opentelemetry-erlang/pull/613)
6082
- [Check for positive data values in counters and histograms](https://github.com/open-telemetry/opentelemetry-erlang/pull/632)
6183
- [Fix Delta metric export to only include those recorded in collection cycle](https://github.com/open-telemetry/opentelemetry-erlang/pull/677)
84+
- [Cumulative sums
85+
fix](https://github.com/open-telemetry/opentelemetry-erlang/pull/592)
86+
- [Fix transmitted time units for
87+
logs](https://github.com/open-telemetry/opentelemetry-erlang/pull/640)
88+
- [don't export unit fields in metrics when the unit is
89+
undefined](https://github.com/open-telemetry/opentelemetry-erlang/pull/669)
6290

6391
## SDK 1.3.1 - 2023-08-15
6492

apps/opentelemetry/src/opentelemetry.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, opentelemetry,
22
[{description, "Implementation of stable OpenTelemetry signals"},
3-
{vsn, "git"},
3+
{vsn, "1.4.0"},
44
{registered, [
55
%% global tracer provider supervisor for use by the API
66
otel_tracer_provider_sup

apps/opentelemetry_api/src/opentelemetry_api.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, opentelemetry_api,
22
[{description, "OpenTelemetry API"},
3-
{vsn, "1.2.2"},
3+
{vsn, "1.3.0"},
44
{registered, []},
55
{applications,
66
[kernel,

apps/opentelemetry_api_experimental/src/opentelemetry_api_experimental.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, opentelemetry_api_experimental,
22
[{description, "API for unstable OpenTelemetry signals"},
3-
{vsn, "0.4.0"},
3+
{vsn, "0.5.0"},
44
{registered, []},
55
{applications,
66
[kernel,

apps/opentelemetry_experimental/src/opentelemetry_experimental.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, opentelemetry_experimental,
22
[{description, "Implementation of unstable OpenTelemetry signals"},
3-
{vsn, "0.4.0"},
3+
{vsn, "0.5.0"},
44
{registered, []},
55
{mod, {opentelemetry_experimental_app, []}},
66
{applications,

apps/opentelemetry_experimental/src/otel_metric_exemplar_reservoir_aligned_histogram.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
%% if bucket < num_buckets then
2222
%% reservoir[bucket] = measurement
2323
%% end
24-
24+
%%
2525
%% def find_histogram_bucket(measurement):
2626
%% for boundary, idx in bucket_boundaries do
2727
%% if value <= boundary then

apps/opentelemetry_exporter/src/opentelemetry_exporter.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, opentelemetry_exporter,
22
[{description, "OpenTelemetry Protocol Exporter"},
3-
{vsn, "1.6.0"},
3+
{vsn, "1.7.0"},
44
{registered, []},
55
{applications,
66
[kernel,

docs.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ set -e
99

1010
rebar3 compile
1111
rebar3 edoc
12-
sdk_version=1.3.1
13-
api_version=1.2.2
14-
otlp_version=1.6.0
12+
sdk_version=1.4.0
13+
api_version=1.3.0
14+
otlp_version=1.7.0
1515
zipkin_version=1.1.0
1616
semconv_version=0.2.0
1717

0 commit comments

Comments
 (0)