File tree Expand file tree Collapse file tree 3 files changed +12
-11
lines changed Expand file tree Collapse file tree 3 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,17 @@ This SDK provides Open Tracing instrumentation for AWS Lambda. Releases for this
66
77Versioning will have the following format: {majorVersion}.{minorVersion}.{pointVersion}
88
9+ ### Version 3.0.0
10+
11+ Version 3.0.0 of this library made changes to the versions of AWS dependencies. The following dependencies are now used:
12+ - ` com.amazonaws:aws-lambda-java-core:1.2.3 ` (previous version: 1.1.0)
13+ - ` com.amazonaws:aws-lambda-java-events:3.15.0 ` (previous version: 2.2.7)
14+ - ` software.amazon.awssdk:s3:2.31.43 ` (replaces com.amazonaws:aws-java-sdk-s3:1.12.771)
15+ - ` software.amazon.awssdk:s3-event-notifications:2.31.43 ` (replaces com.amazonaws:aws-java-sdk-s3:1.12.771)
16+
17+ It is recommended that functions that utilize the New Relic AWS Lamdba OpenTracing Java SDK utilize the same (or higher) versions
18+ of the underlying AWS libraries as noted above. Functions that are unable to upgrade should remain on version 2.2.0 of this library.
19+
920### Supported OpenTracing Versions
1021
1122* OpenTracing 0.31.0: [ com.newrelic.opentracing:java-aws-lambda:1.0.0] ( https://mvnrepository.com/artifact/com.newrelic.opentracing/java-aws-lambda/1.0.0 )
Original file line number Diff line number Diff line change @@ -30,22 +30,12 @@ repositories {
3030}
3131
3232dependencies {
33- // implementation 'software.amazon.awssdk:bom:2.31.43'
34-
3533 implementation ' software.amazon.awssdk:s3:2.31.43'
3634 implementation ' software.amazon.awssdk:s3-event-notifications:2.31.43'
37- // implementation 'software.amazon.awssdk:kinesis:2.31.43'
38- // implementation 'software.amazon.awssdk:dynamodb:2.31.43'
3935
4036 implementation ' com.amazonaws:aws-lambda-java-core:1.2.3'
41- // 2.2.7 is earliest version that has all needed event sources
4237 implementation ' com.amazonaws:aws-lambda-java-events:3.15.0'
4338
44-
45- // implementation 'com.amazonaws:aws-java-sdk-s3:1.12.771'
46- // implementation 'com.amazonaws:aws-java-sdk-kinesis:1.11.163'
47- // implementation 'com.amazonaws:aws-java-sdk-dynamodb:1.11.163'
48-
4939 implementation(' io.opentracing:opentracing-api:0.33.0' )
5040 implementation(' io.opentracing:opentracing-util:0.33.0' )
5141 implementation(' io.opentracing:opentracing-noop:0.33.0' )
Original file line number Diff line number Diff line change 11group = com.newrelic.opentracing
2- version = 2.3 .0
2+ version = 3.0 .0
You can’t perform that action at this time.
0 commit comments