Skip to content

Commit

Permalink
Stop publishing opentelemetry-extension-aws artifact (#4945)
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-berg committed Nov 17, 2022
1 parent 6c7637b commit 08e19e3
Show file tree
Hide file tree
Showing 14 changed files with 9 additions and 879 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -20,7 +20,7 @@
#### API Extensions

* DEPRECATION: the `opentelemetry-extension-aws` module containing
various `AwsXrayPropagator` implementations has been deprecated for removal in next major version.
various `AwsXrayPropagator` implementations has been deprecated for removal in next minor version.
A copy of the code will instead be maintained
in [opentelemetry-java-contrib/aws-xray-propagator](https://github.com/open-telemetry/opentelemetry-java-contrib/tree/main/aws-xray-propagator)
and published under
Expand Down
1 change: 0 additions & 1 deletion README.md
Expand Up @@ -232,7 +232,6 @@ dependency as follows, replacing `{{artifact-id}}` with the value from the "Arti

| Component | Description | Artifact ID | Version |
|---------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------|-------------------------------------------------------------|
| [AWS Extension](./extensions/aws) | AWS Xray propagator (deprecated, moved to [opentelemetry-java-contrib/aws-xray-propagator](https://github.com/open-telemetry/opentelemetry-java-contrib/tree/main/aws-xray-propagator)) | `opentelemetry-extension-aws` | <!--VERSION_STABLE-->1.20.1<!--/VERSION_STABLE--> |
| [Kotlin Extension](./extensions/kotlin) | Context extension for coroutines | `opentelemetry-extension-kotlin` | <!--VERSION_STABLE-->1.20.1<!--/VERSION_STABLE--> |
| [Trace Propagators Extension](./extensions/trace-propagators) | Trace propagators, including B3, Jaeger, OT Trace | `opentelemetry-extension-trace-propagators` | <!--VERSION_STABLE-->1.20.1<!--/VERSION_STABLE--> |
| [Incubator Extension](./extensions/incubator) | API incubator, including pass through propagator, and extended tracer | `opentelemetry-extension-incubator` | <!--VERSION_UNSTABLE-->1.20.1-alpha<!--/VERSION_UNSTABLE--> |
Expand Down
1 change: 1 addition & 0 deletions all/build.gradle.kts
Expand Up @@ -48,6 +48,7 @@ dependencies {
testImplementation("io.grpc:grpc-protobuf")
testImplementation("io.grpc:grpc-stub")
testImplementation("io.opentelemetry:opentelemetry-extension-annotations")
testImplementation("io.opentelemetry:opentelemetry-extension-aws")
testImplementation("io.opentelemetry:opentelemetry-sdk-extension-resources")
testImplementation("io.opentelemetry:opentelemetry-sdk-extension-aws")

Expand Down
Expand Up @@ -56,6 +56,12 @@ void sdkExtensionAws() {
classAvailable("io.opentelemetry.sdk.extension.aws.trace.AwsXrayIdGenerator");
}

@Test
void extensionAws() {
classAvailable("io.opentelemetry.extension.aws.AwsConfigurablePropagator");
classAvailable("io.opentelemetry.extension.aws.AwsXrayPropagator");
}

private static void classAvailable(String fqcn) {
Assertions.assertThatCode(() -> Class.forName(fqcn)).doesNotThrowAnyException();
}
Expand Down
1 change: 1 addition & 0 deletions bom/build.gradle.kts
Expand Up @@ -13,3 +13,4 @@ otelBom.addFallback("opentelemetry-exporter-jaeger-proto", "1.17.0")
otelBom.addFallback("opentelemetry-extension-annotations", "1.18.0")
otelBom.addFallback("opentelemetry-sdk-extension-resources", "1.19.0")
otelBom.addFallback("opentelemetry-sdk-extension-aws", "1.19.0")
otelBom.addFallback("opentelemetry-extension-aws", "1.20.0")

This file was deleted.

12 changes: 0 additions & 12 deletions extensions/aws/README.md

This file was deleted.

14 changes: 0 additions & 14 deletions extensions/aws/build.gradle.kts

This file was deleted.

This file was deleted.

0 comments on commit 08e19e3

Please sign in to comment.