Skip to content

Commit 9f0511e

Browse files
authored
simplify cliff.toml usage and bump versions (#923)
* chore: ignore chore commits in changelog generation * chore: store cliff configs in one file * fix: no_auto_import of link to fix otp-28 warning * chore: bump to opentelemetry-1.7.0, api-1.5.0 exporter-1.10.0 * chore: make tag prefix properly be <app>/v<vsn> * chore: update changelogs for latest releases
1 parent aaa352a commit 9f0511e

File tree

22 files changed

+33
-692
lines changed

22 files changed

+33
-692
lines changed

apps/opentelemetry/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [opentelemetry/v1.7.0] - 2025-10-17
99

1010
### Changed
11-
- Use cliff for per-application changelogs
11+
- Precompute hex encodings of SpanID and TraceID
12+
- Bump sdk to 1.6.0 and otlp exporter to 1.9.0
1213

13-
[unreleased]: https://github.com///compare/v1.4.1..HEAD
1414

1515
<!-- generated by git-cliff -->

apps/opentelemetry/rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{erl_opts, [debug_info]}.
2-
{deps, [{opentelemetry_api, "~> 1.4.0"}]}.
2+
{deps, [{opentelemetry_api, "~> 1.5.0"}]}.
33

44
{profiles,
55
[{docs, [{edoc_opts,

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, "1.6.0"},
3+
{vsn, "1.7.0"},
44
{registered, [
55
%% global tracer provider supervisor for use by the API
66
otel_tracer_provider_sup

apps/opentelemetry_api/CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [opentelemetry_api/v1.5.0] - 2025-10-17
99

1010
### Changed
11-
- Use cliff for per-application changelogs
11+
- Precompute hex encodings of SpanID and TraceID
12+
13+
### Fixed
14+
- No_auto_import of link to fix otp-28 warning
15+
- Otp28 removes the ability to cache compiled regex in macros
1216

1317

1418
<!-- generated by git-cliff -->

apps/opentelemetry_api/cliff.toml

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

apps/opentelemetry_api/src/opentelemetry.erl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363

6464
-include("opentelemetry.hrl").
6565
-include_lib("kernel/include/logger.hrl").
66+
-compile({no_auto_import,[link/2]}).
6667

6768
-export_type([tracer/0,
6869
instrumentation_scope/0,

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.4.1"},
3+
{vsn, "1.5.0"},
44
{registered, []},
55
{applications,
66
[kernel,

apps/opentelemetry_api_experimental/CHANGELOG.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,5 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
9-
10-
### Changed
11-
- Use cliff for per-application changelogs
12-
138

149
<!-- generated by git-cliff -->

apps/opentelemetry_api_experimental/cliff.toml

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

apps/opentelemetry_experimental/CHANGELOG.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,5 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
9-
10-
### Changed
11-
- Use cliff for per-application changelogs
12-
138

149
<!-- generated by git-cliff -->

0 commit comments

Comments
 (0)