@@ -11,6 +11,7 @@ muzzle {
11
11
// client, which is not target of instrumentation anyways.
12
12
extraDependency(" software.amazon.awssdk:protocol-core" )
13
13
14
+ excludeInstrumentationName(" aws-sdk-2.2-bedrock-runtime" )
14
15
excludeInstrumentationName(" aws-sdk-2.2-sqs" )
15
16
excludeInstrumentationName(" aws-sdk-2.2-sns" )
16
17
excludeInstrumentationName(" aws-sdk-2.2-lambda" )
@@ -43,6 +44,7 @@ muzzle {
43
44
// client, which is not target of instrumentation anyways.
44
45
extraDependency(" software.amazon.awssdk:protocol-core" )
45
46
47
+ excludeInstrumentationName(" aws-sdk-2.2-bedrock-runtime" )
46
48
excludeInstrumentationName(" aws-sdk-2.2-sns" )
47
49
excludeInstrumentationName(" aws-sdk-2.2-lambda" )
48
50
@@ -58,6 +60,7 @@ muzzle {
58
60
// client, which is not target of instrumentation anyways.
59
61
extraDependency(" software.amazon.awssdk:protocol-core" )
60
62
63
+ excludeInstrumentationName(" aws-sdk-2.2-bedrock-runtime" )
61
64
excludeInstrumentationName(" aws-sdk-2.2-sqs" )
62
65
excludeInstrumentationName(" aws-sdk-2.2-lambda" )
63
66
@@ -72,12 +75,25 @@ muzzle {
72
75
// client, which is not target of instrumentation anyways.
73
76
extraDependency(" software.amazon.awssdk:protocol-core" )
74
77
78
+ excludeInstrumentationName(" aws-sdk-2.2-bedrock-runtime" )
75
79
excludeInstrumentationName(" aws-sdk-2.2-sqs" )
76
80
excludeInstrumentationName(" aws-sdk-2.2-sns" )
77
81
78
82
// several software.amazon.awssdk artifacts are missing for this version
79
83
skip(" 2.17.200" )
80
84
}
85
+ pass {
86
+ group.set(" software.amazon.awssdk" )
87
+ module.set(" bedrock-runtime" )
88
+ versions.set(" [2.25.63,)" )
89
+ // Used by all SDK services, the only case it isn't is an SDK extension such as a custom HTTP
90
+ // client, which is not target of instrumentation anyways.
91
+ extraDependency(" software.amazon.awssdk:protocol-core" )
92
+
93
+ excludeInstrumentationName(" aws-sdk-2.2-lambda" )
94
+ excludeInstrumentationName(" aws-sdk-2.2-sqs" )
95
+ excludeInstrumentationName(" aws-sdk-2.2-sns" )
96
+ }
81
97
}
82
98
83
99
dependencies {
@@ -127,8 +143,8 @@ testing {
127
143
if (findProperty(" testLatestDeps" ) as Boolean ) {
128
144
implementation(" software.amazon.awssdk:bedrockruntime:+" )
129
145
} else {
130
- // First .0 release with Converse API
131
- implementation(" software.amazon.awssdk:bedrockruntime:2.26.0 " )
146
+ // First release with Converse API
147
+ implementation(" software.amazon.awssdk:bedrockruntime:2.25.63 " )
132
148
}
133
149
}
134
150
}
0 commit comments