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
6
6
7
7
Versioning will have the following format: {majorVersion}.{minorVersion}.{pointVersion}
8
8
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
+
9
20
### Supported OpenTracing Versions
10
21
11
22
* 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 {
30
30
}
31
31
32
32
dependencies {
33
- // implementation 'software.amazon.awssdk:bom:2.31.43'
34
-
35
33
implementation ' software.amazon.awssdk:s3:2.31.43'
36
34
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'
39
35
40
36
implementation ' com.amazonaws:aws-lambda-java-core:1.2.3'
41
- // 2.2.7 is earliest version that has all needed event sources
42
37
implementation ' com.amazonaws:aws-lambda-java-events:3.15.0'
43
38
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
-
49
39
implementation(' io.opentracing:opentracing-api:0.33.0' )
50
40
implementation(' io.opentracing:opentracing-util:0.33.0' )
51
41
implementation(' io.opentracing:opentracing-noop:0.33.0' )
Original file line number Diff line number Diff line change 1
1
group = 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