-
Notifications
You must be signed in to change notification settings - Fork 452
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
111 additions
and
28 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,3 +1,11 @@ | ||
# Changelog | ||
|
||
## v0.3.0 | ||
|
||
### Changed | ||
|
||
- Update to opentelemetry v0.15.0 | ||
|
||
## v0.2.0 | ||
|
||
### Changed | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "opentelemetry-aws" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = ["OpenTelemetry Authors <[email protected]>"] | ||
description = "AWS exporters and propagators for OpenTelemetry" | ||
homepage = "https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-aws" | ||
|
@@ -23,7 +23,7 @@ default = ["trace"] | |
trace = ["opentelemetry/trace"] | ||
|
||
[dependencies] | ||
opentelemetry = { version = "0.14", path = "../opentelemetry", features = ["trace"] } | ||
opentelemetry = { version = "0.15", path = "../opentelemetry", features = ["trace"] } | ||
lazy_static = "1.4" | ||
|
||
[dev-dependencies] | ||
|
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,5 +1,11 @@ | ||
# Changelog | ||
|
||
## v0.7.0 | ||
|
||
### Changed | ||
|
||
- Update to opentelemetry v0.15.0 | ||
|
||
## v0.6.0 | ||
|
||
### Changed | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "opentelemetry-contrib" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
authors = ["OpenTelemetry Authors <[email protected]>"] | ||
description = "Rust contrib repo for OpenTelemetry" | ||
homepage = "https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-contrib" | ||
|
@@ -24,7 +24,7 @@ base64_format = ["base64", "binary_propagator"] | |
binary_propagator = [] | ||
|
||
[dependencies] | ||
opentelemetry = { version = "0.14", path = "../opentelemetry", features = ["trace"] } | ||
opentelemetry = { version = "0.15", path = "../opentelemetry", features = ["trace"] } | ||
base64 = { version = "0.13", optional = true } | ||
lazy_static = "1.4" | ||
|
||
|
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,5 +1,11 @@ | ||
# Changelog | ||
|
||
## v0.3.0 | ||
|
||
### Changed | ||
|
||
- Update to opentelemetry v0.15.0 | ||
|
||
## v0.2.0 | ||
|
||
### Changed | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "opentelemetry-datadog" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = ["OpenTelemetry Authors <[email protected]>"] | ||
description = "Datadog exporters and propagators for OpenTelemetry" | ||
homepage = "https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-datadog" | ||
|
@@ -26,8 +26,8 @@ surf-client = ["surf", "opentelemetry-http/surf"] | |
[dependencies] | ||
async-trait = "0.1" | ||
indexmap = "1.6" | ||
opentelemetry = { version = "0.14", path = "../opentelemetry", features = ["trace"] } | ||
opentelemetry-http = { version = "0.3", path = "../opentelemetry-http" } | ||
opentelemetry = { version = "0.15", path = "../opentelemetry", features = ["trace"] } | ||
opentelemetry-http = { version = "0.4", path = "../opentelemetry-http" } | ||
rmp = "0.8" | ||
reqwest = { version = "0.11", default-features = false, optional = true } | ||
surf = { version = "2.0", default-features = false, optional = true } | ||
|
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,5 +1,11 @@ | ||
# Changelog | ||
|
||
## v0.4.0 | ||
|
||
### Changed | ||
|
||
- Update to opentelemetry v0.15.0 | ||
|
||
## v0.3.0 | ||
|
||
### Changed | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "opentelemetry-http" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["OpenTelemetry Authors <[email protected]>"] | ||
description = "Helper implementations for exchange of traces and metrics over HTTP" | ||
homepage = "https://github.com/open-telemetry/opentelemetry-rust" | ||
|
@@ -15,6 +15,6 @@ bytes = "1" | |
futures-util = { version = "0.3", default-features = false, features = ["io"] } | ||
http = "0.2" | ||
isahc = { version = "1.4", default-features = false, optional = true } | ||
opentelemetry = { version = "0.14", path = "../opentelemetry", features = ["trace"] } | ||
opentelemetry = { version = "0.15", path = "../opentelemetry", features = ["trace"] } | ||
reqwest = { version = "0.11", default-features = false, features = ["blocking"], optional = true } | ||
surf = { version = "2.0", default-features = false, optional = true } |
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,5 +1,11 @@ | ||
# Changelog | ||
|
||
## v0.14.0 | ||
|
||
### Changed | ||
|
||
- Update to opentelemetry v0.15.0 | ||
|
||
## v0.13.0 | ||
|
||
### Changed | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "opentelemetry-jaeger" | ||
version = "0.13.0" | ||
version = "0.14.0" | ||
authors = ["OpenTelemetry Authors <[email protected]>"] | ||
description = "Jaeger exporter for OpenTelemetry" | ||
homepage = "https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-jaeger" | ||
|
@@ -27,8 +27,8 @@ futures-util = { version = "0.3", optional = true } | |
http = { version = "0.2", optional = true } | ||
isahc = { version = "1.4", default-features = false, optional = true } | ||
js-sys = { version = "0.3", optional = true } | ||
opentelemetry = { version = "0.14", default-features = false, features = ["trace"], path = "../opentelemetry" } | ||
opentelemetry-http = { version = "0.3", path = "../opentelemetry-http", optional = true } | ||
opentelemetry = { version = "0.15", default-features = false, features = ["trace"], path = "../opentelemetry" } | ||
opentelemetry-http = { version = "0.4", path = "../opentelemetry-http", optional = true } | ||
pin-project = { version = "1.0", optional = true } | ||
thrift = "0.13" | ||
tokio = { version = "1.0", features = ["net", "sync"], optional = true } | ||
|
@@ -43,7 +43,7 @@ surf = { version = "2.0", default-features = false, optional = true } | |
[dev-dependencies] | ||
bytes = "1" | ||
futures = "0.3" | ||
opentelemetry = { version = "0.14", default-features = false, features = ["trace", "testing"], path = "../opentelemetry" } | ||
opentelemetry = { default-features = false, features = ["trace", "testing"], path = "../opentelemetry" } | ||
|
||
[dependencies.web-sys] | ||
version = "0.3.4" | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "opentelemetry-otlp" | ||
version = "0.7.0" | ||
version = "0.8.0" | ||
authors = ["OpenTelemetry Authors <[email protected]>"] | ||
description = "Exporter for the OpenTelemetry Collector" | ||
homepage = "https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-otlp" | ||
|
@@ -38,13 +38,13 @@ rustdoc-args = ["--cfg", "docsrs"] | |
async-trait = "0.1" | ||
futures = "0.3" | ||
grpcio = { version = "0.9", optional = true } | ||
opentelemetry = { version = "0.14", default-features = false, features = ["trace"], path = "../opentelemetry" } | ||
opentelemetry = { version = "0.15", default-features = false, features = ["trace"], path = "../opentelemetry" } | ||
prost = { version = "0.7", optional = true } | ||
protobuf = { version = "2.18", optional = true } | ||
thiserror = "1.0" | ||
tonic = { version = "0.4", optional = true } | ||
tokio = { version = "1.0", features = ["full"], optional = true } | ||
opentelemetry-http = { version = "0.3", path = "../opentelemetry-http", optional = true } | ||
opentelemetry-http = { version = "0.4", path = "../opentelemetry-http", optional = true } | ||
reqwest = { version = "0.11", optional = true, default-features = false } | ||
surf = { version = "2.0", optional = true, default-features = false } | ||
http = "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,5 +1,11 @@ | ||
# Changelog | ||
|
||
## v0.8.0 | ||
|
||
### Changed | ||
|
||
- Update to opentelemetry v0.15.0 | ||
|
||
## v0.7.0 | ||
|
||
### Changed | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "opentelemetry-prometheus" | ||
version = "0.7.0" | ||
version = "0.8.0" | ||
authors = ["OpenTelemetry Authors <[email protected]>"] | ||
description = "Prometheus exporter for OpenTelemetry" | ||
homepage = "https://github.com/open-telemetry/opentelemetry-rust" | ||
|
@@ -20,7 +20,7 @@ all-features = true | |
rustdoc-args = ["--cfg", "docsrs"] | ||
|
||
[dependencies] | ||
opentelemetry = { version = "0.14", path = "../opentelemetry", default-features = false, features = ["metrics"] } | ||
opentelemetry = { version = "0.15", path = "../opentelemetry", default-features = false, features = ["metrics"] } | ||
prometheus = "0.12" | ||
protobuf = "2.14" | ||
|
||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "opentelemetry-semantic-conventions" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
authors = ["OpenTelemetry Authors <[email protected]>"] | ||
description = "Semantic conventions for OpenTelemetry" | ||
homepage = "https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-semantic-conventions" | ||
|
@@ -20,7 +20,7 @@ all-features = true | |
rustdoc-args = ["--cfg", "docsrs"] | ||
|
||
[dependencies] | ||
opentelemetry = { version = "0.14", default-features = false, path = "../opentelemetry" } | ||
opentelemetry = { version = "0.15", default-features = false, path = "../opentelemetry" } | ||
|
||
[dev-dependencies] | ||
opentelemetry = { version = "0.14", default-features = false, features = ["trace"], path = "../opentelemetry" } | ||
opentelemetry = { default-features = false, features = ["trace"], path = "../opentelemetry" } |
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,5 +1,11 @@ | ||
# Changelog | ||
|
||
## v0.11.0 | ||
|
||
### Changed | ||
|
||
- Update to opentelemetry v0.15.0 | ||
|
||
## v0.10.0 | ||
|
||
### Changed | ||
|
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 |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# Changelog | ||
|
||
## v0.13.0 | ||
|
||
### Changed | ||
|
||
- Update to opentelemetry v0.15.0 | ||
|
||
## v0.12.0 | ||
|
||
### Changed | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "opentelemetry-zipkin" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
authors = ["OpenTelemetry Authors <[email protected]>"] | ||
description = "Zipkin exporter for OpenTelemetry" | ||
homepage = "https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-zipkin" | ||
|
@@ -28,8 +28,8 @@ surf-client = ["surf", "opentelemetry-http/surf"] | |
|
||
[dependencies] | ||
async-trait = "0.1" | ||
opentelemetry = { version = "0.14", path = "../opentelemetry", features = ["trace"] } | ||
opentelemetry-http = { version = "0.3", path = "../opentelemetry-http", optional = true } | ||
opentelemetry = { version = "0.15", path = "../opentelemetry", features = ["trace"] } | ||
opentelemetry-http = { version = "0.4", path = "../opentelemetry-http", optional = true } | ||
serde_json = "1.0" | ||
serde = { version = "1.0", features = ["derive"] } | ||
typed-builder = "0.9" | ||
|
@@ -43,4 +43,4 @@ thiserror = { version = "1.0"} | |
bytes = "1" | ||
futures-util = "0.3" | ||
isahc = "1.4" | ||
opentelemetry = { version = "0.14", default-features = false, features = ["trace", "testing"], path = "../opentelemetry" } | ||
opentelemetry = { default-features = false, features = ["trace", "testing"], path = "../opentelemetry" } |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "opentelemetry" | ||
version = "0.14.0" | ||
version = "0.15.0" | ||
authors = ["OpenTelemetry Authors <[email protected]>"] | ||
description = "A metrics collection and distributed tracing framework" | ||
homepage = "https://github.com/open-telemetry/opentelemetry-rust" | ||
|