Opentelemetry Process Propagator v0.3.0 (#279)
* Prep release v0.3.0 --------- Co-authored-by: bryannaegele <5731285+bryannaegele@users.noreply.github.com> Co-authored-by: Bryan Naegele <bryannaegele@users.noreply.github.com>
This commit is contained in:
parent
52f84a64ea
commit
a4aa30dc4d
|
@ -4,3 +4,8 @@ tag-template: 'opentelemetry-process-propagator-v$RESOLVED_VERSION'
|
||||||
tag-prefix: opentelemetry-process-propagator-v
|
tag-prefix: opentelemetry-process-propagator-v
|
||||||
include-paths:
|
include-paths:
|
||||||
- propagators/opentelemetry_process_propagator/
|
- propagators/opentelemetry_process_propagator/
|
||||||
|
|
||||||
|
footer: |
|
||||||
|
|
||||||
|
---
|
||||||
|
[Changelog](https://$REPOSITORY/blob/main/propagators/opentelemetry_process_propagator/CHANGELOG.MD)
|
||||||
|
|
|
@ -12,6 +12,7 @@ categories:
|
||||||
- 'bug'
|
- 'bug'
|
||||||
- title: '🧰 Maintenance'
|
- title: '🧰 Maintenance'
|
||||||
label: 'chore'
|
label: 'chore'
|
||||||
|
category-template: '### $TITLE'
|
||||||
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
|
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
|
||||||
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
|
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
|
||||||
version-resolver:
|
version-resolver:
|
||||||
|
|
|
@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## v0.3.0
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
- Process Propagator: Allow looking up parent when parent is a named process @jeffutter (#261)
|
||||||
|
|
||||||
|
### Maintenance
|
||||||
|
|
||||||
|
- Support for Elixir 1.15 and OTP 26 @tomtaylor (#188)
|
||||||
|
- Fix documentation example for OpentelemetryProcessPropagator @bamorim (#220)
|
||||||
|
- Fix tiny typos @davydog187 (#219)
|
||||||
|
|
||||||
## v0.2.2
|
## v0.2.2
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{application, opentelemetry_process_propagator,
|
{application, opentelemetry_process_propagator,
|
||||||
[{description, "Tools for OpenTelemetry context propagation across process boundaries"},
|
[{description, "Tools for OpenTelemetry context propagation across process boundaries"},
|
||||||
{vsn, "0.2.2"},
|
{vsn, "0.3.0"},
|
||||||
{registered, []},
|
{registered, []},
|
||||||
{applications,
|
{applications,
|
||||||
[kernel,
|
[kernel,
|
||||||
|
|
Loading…
Reference in New Issue