-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into ecto-db-system
- Loading branch information
Showing
68 changed files
with
853 additions
and
1,122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,58 @@ | ||
{ | ||
"otp_version": [ | ||
"25.1.2", | ||
"24.3.4.6", | ||
"23.3.4.18" | ||
"26.0.2", | ||
"25.3.2.5", | ||
"24.3.4.13", | ||
"23.3.4.19" | ||
], | ||
"elixir_version": [ | ||
"1.14.2", | ||
"1.15.4", | ||
"1.14.4", | ||
"1.13.4", | ||
"1.12.3", | ||
"1.11.4" | ||
], | ||
"rebar3_version": [ | ||
"3.20" | ||
"3.20.0" | ||
], | ||
"os": [ | ||
"ubuntu-20.04" | ||
], | ||
"include": [ | ||
{ | ||
"elixir_version": "1.15.4", | ||
"otp_version": "26.0.2", | ||
"check_formatted": true | ||
} | ||
], | ||
"exclude": [ | ||
{ | ||
"elixir_version": "1.11.4", | ||
"erlang_version": "25.1.2" | ||
"elixir_version": "1.15.4", | ||
"otp_version": "23.3.4.19" | ||
}, | ||
{ | ||
"elixir_version": "1.14.4", | ||
"otp_version": "26.0.2" | ||
}, | ||
{ | ||
"elixir_version": "1.13.4", | ||
"otp_version": "26.0.2" | ||
}, | ||
{ | ||
"elixir_version": "1.12.3", | ||
"erlang_version": "25.1.2" | ||
"otp_version": "25.3.2.5" | ||
}, | ||
{ | ||
"elixir_version": "1.12.3", | ||
"otp_version": "26.0.2" | ||
}, | ||
{ | ||
"elixir_version": "1.11.4", | ||
"otp_version": "25.3.2.5" | ||
}, | ||
{ | ||
"elixir_version": "1.11.4", | ||
"otp_version": "26.0.2" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,5 @@ | ||
{ | ||
"otp_version": [ | ||
"25.1.2", | ||
"24.3.4.6", | ||
"23.3.4.10" | ||
], | ||
"rebar3_version": [ | ||
"3.20" | ||
], | ||
"os": [ | ||
"ubuntu-20.04" | ||
] | ||
"otp_version": ["26.0.2", "25.3.2.6", "24.3.4.13", "23.3.4.19"], | ||
"rebar3_version": ["3.20.0"], | ||
"os": ["ubuntu-20.04"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
_extends: opentelemetry-erlang-contrib:.github/release-drafter.yml | ||
name-template: 'Opentelemetry AWS X-Ray - v$RESOLVED_VERSION' | ||
tag-template: 'opentelemetry-aws-xray-v$RESOLVED_VERSION' | ||
tag-prefix: opentelemetry-aws-xray-v | ||
include-paths: | ||
- utilities/opentelemetry_aws_xray/src/**/* | ||
- utilities/opentelemetry_aws_xray/rebar.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
_extends: opentelemetry-erlang-contrib:.github/release-drafter.yml | ||
name-template: 'Opentelemetry Cowboy - v$RESOLVED_VERSION' | ||
tag-template: 'opentelemetry-cowboy-v$RESOLVED_VERSION' | ||
tag-prefix: opentelemetry-cowboy-v | ||
include-paths: | ||
- instrumentation/opentelemetry_cowboy/src/**/* | ||
- instrumentation/opentelemetry_cowboy/rebar.* |
7 changes: 7 additions & 0 deletions
7
.github/release-drafter-templates/opentelemetry-dataloader.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
_extends: opentelemetry-erlang-contrib:.github/release-drafter.yml | ||
name-template: 'Opentelemetry Dataloader - v$RESOLVED_VERSION' | ||
tag-template: 'opentelemetry-dataloader-v$RESOLVED_VERSION' | ||
tag-prefix: opentelemetry-dataloader-v | ||
include-paths: | ||
- instrumentation/opentelemetry_dataloader/lib/**/* | ||
- instrumentation/opentelemetry_dataloader/lib/mix.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
_extends: opentelemetry-erlang-contrib:.github/release-drafter.yml | ||
name-template: 'Opentelemetry Ecto - v$RESOLVED_VERSION' | ||
tag-template: 'opentelemetry-ecto-v$RESOLVED_VERSION' | ||
tag-prefix: opentelemetry-ecto-v | ||
include-paths: | ||
- instrumentation/opentelemetry_ecto/lib/**/* | ||
- instrumentation/opentelemetry_ecto/lib/mix.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
_extends: opentelemetry-erlang-contrib:.github/release-drafter.yml | ||
name-template: 'Opentelemetry Elli - v$RESOLVED_VERSION' | ||
tag-template: 'opentelemetry-elli-v$RESOLVED_VERSION' | ||
tag-prefix: opentelemetry-elli-v | ||
include-paths: | ||
- instrumentation/opentelemetry_elli/src/**/* | ||
- instrumentation/opentelemetry_elli/rebar.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
_extends: opentelemetry-erlang-contrib:.github/release-drafter.yml | ||
name-template: 'Opentelemetry Finch - v$RESOLVED_VERSION' | ||
tag-template: 'opentelemetry-finch-v$RESOLVED_VERSION' | ||
tag-prefix: opentelemetry-finch-v | ||
include-paths: | ||
- instrumentation/opentelemetry_finch/lib/**/* | ||
- instrumentation/opentelemetry_finch/lib/mix.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
_extends: opentelemetry-erlang-contrib:.github/release-drafter.yml | ||
name-template: 'Opentelemetry GRPCBox - v$RESOLVED_VERSION' | ||
tag-template: 'opentelemetry-grpcbox-v$RESOLVED_VERSION' | ||
tag-prefix: opentelemetry-grpcbox-v | ||
include-paths: | ||
- instrumentation/opentelemetry_grpcbox/src/**/* | ||
- instrumentation/opentelemetry_grpcbox/rebar.* |
7 changes: 7 additions & 0 deletions
7
.github/release-drafter-templates/opentelemetry-httpoison.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
_extends: opentelemetry-erlang-contrib:.github/release-drafter.yml | ||
name-template: 'Opentelemetry HTTPoison - v$RESOLVED_VERSION' | ||
tag-template: 'opentelemetry-httpoison-v$RESOLVED_VERSION' | ||
tag-prefix: opentelemetry-httpoison-v | ||
include-paths: | ||
- instrumentation/opentelemetry_httpoison/lib/**/* | ||
- instrumentation/opentelemetry_httpoison/lib/mix.* |
7 changes: 7 additions & 0 deletions
7
.github/release-drafter-templates/opentelemetry-instrumentation-http.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
_extends: opentelemetry-erlang-contrib:.github/release-drafter.yml | ||
name-template: 'Opentelemetry Instrumentation HTTP - v$RESOLVED_VERSION' | ||
tag-template: 'opentelemetry-instrumentation-http-v$RESOLVED_VERSION' | ||
tag-prefix: opentelemetry-instrumentation-http-v | ||
include-paths: | ||
- utilities/opentelemetry_instrumentation-http/src/**/* | ||
- utilities/opentelemetry_instrumentation-http/rebar.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
_extends: opentelemetry-erlang-contrib:.github/release-drafter.yml | ||
name-template: 'Opentelemetry Nebulex - v$RESOLVED_VERSION' | ||
tag-template: 'opentelemetry-nebulex-v$RESOLVED_VERSION' | ||
tag-prefix: opentelemetry-nebulex-v | ||
include-paths: | ||
- instrumentation/opentelemetry_nebulex/lib/**/* | ||
- instrumentation/opentelemetry_nebulex/lib/mix.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
_extends: opentelemetry-erlang-contrib:.github/release-drafter.yml | ||
name-template: 'Opentelemetry Oban - v$RESOLVED_VERSION' | ||
tag-template: 'opentelemetry-oban-v$RESOLVED_VERSION' | ||
tag-prefix: opentelemetry-oban-v | ||
include-paths: | ||
- instrumentation/opentelemetry_oban/lib/**/* | ||
- instrumentation/opentelemetry_oban/lib/mix.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
_extends: opentelemetry-erlang-contrib:.github/release-drafter.yml | ||
name-template: 'Opentelemetry Phoenix - v$RESOLVED_VERSION' | ||
tag-template: 'opentelemetry-phoenix-v$RESOLVED_VERSION' | ||
tag-prefix: opentelemetry-phoenix-v | ||
include-paths: | ||
- instrumentation/opentelemetry_phoenix/lib/**/* | ||
- instrumentation/opentelemetry_phoenix/lib/mix.* |
9 changes: 9 additions & 0 deletions
9
.github/release-drafter-templates/opentelemetry-process-propagator.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
_extends: opentelemetry-erlang-contrib:.github/release-drafter.yml | ||
name-template: 'Opentelemetry Process Propagator - v$RESOLVED_VERSION' | ||
tag-template: 'opentelemetry-process-propagator-v$RESOLVED_VERSION' | ||
tag-prefix: opentelemetry-process-propagator-v | ||
include-paths: | ||
- propagators/opentelemetry_process_propagator/src/**/* | ||
- propagators/opentelemetry_process_propagator/rebar.* | ||
- propagators/opentelemetry_process_propagator/lib/**/* | ||
- propagators/opentelemetry_process_propagator/lib/mix.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
_extends: opentelemetry-erlang-contrib:.github/release-drafter.yml | ||
name-template: 'Opentelemetry Redix - v$RESOLVED_VERSION' | ||
tag-template: 'opentelemetry-redix-v$RESOLVED_VERSION' | ||
tag-prefix: opentelemetry-redix-v | ||
include-paths: | ||
- instrumentation/opentelemetry_redix/lib/**/* | ||
- instrumentation/opentelemetry_redix/lib/mix.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
_extends: opentelemetry-erlang-contrib:.github/release-drafter.yml | ||
name-template: 'Opentelemetry Req - v$RESOLVED_VERSION' | ||
tag-template: 'opentelemetry-req-v$RESOLVED_VERSION' | ||
tag-prefix: opentelemetry-req-v | ||
include-paths: | ||
- instrumentation/opentelemetry_req/lib/**/* | ||
- instrumentation/opentelemetry_req/lib/mix.* |
9 changes: 9 additions & 0 deletions
9
.github/release-drafter-templates/opentelemetry-telemetry.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
_extends: opentelemetry-erlang-contrib:.github/release-drafter.yml | ||
name-template: 'Opentelemetry Telemetry - v$RESOLVED_VERSION' | ||
tag-template: 'opentelemetry-telemetry-v$RESOLVED_VERSION' | ||
tag-prefix: opentelemetry-telemetry-v | ||
include-paths: | ||
- utilities/opentelemetry_telemetry/src/**/* | ||
- utilities/opentelemetry_telemetry/rebar.* | ||
- utilities/opentelemetry_telemetry/lib/**/* | ||
- utilities/opentelemetry_telemetry/lib/mix.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
_extends: opentelemetry-erlang-contrib:.github/release-drafter.yml | ||
name-template: 'Opentelemetry Tesla - v$RESOLVED_VERSION' | ||
tag-template: 'opentelemetry-tesla-v$RESOLVED_VERSION' | ||
tag-prefix: opentelemetry-tesla-v | ||
include-paths: | ||
- instrumentation/opentelemetry_tesla/lib/**/* | ||
- instrumentation/opentelemetry_tesla/lib/mix.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
categories: | ||
- title: '🚀 Features' | ||
labels: | ||
- 'feature' | ||
- 'enhancement' | ||
- 'release' | ||
- title: '🐛 Bug Fixes' | ||
labels: | ||
- 'bug' | ||
- title: '🧰 Maintenance' | ||
label: 'chore' | ||
change-template: '- $TITLE @$AUTHOR (#$NUMBER)' | ||
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. | ||
version-resolver: | ||
major: | ||
labels: | ||
- 'major' | ||
minor: | ||
labels: | ||
- 'minor' | ||
patch: | ||
labels: | ||
- 'patch' | ||
default: patch | ||
exclude-labels: | ||
- 'skip-changelog' | ||
template: | | ||
## Changes | ||
$CHANGES |
Oops, something went wrong.