File tree 6 files changed +7
-5
lines changed
opentelemetry-instrumentation-confluent-kafka
src/opentelemetry/instrumentation/confluent_kafka
opentelemetry-instrumentation/src/opentelemetry/instrumentation
6 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
27
27
([ #1706 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1706 ) )
28
28
- ` opentelemetry-instrumentation-pymemcache ` Update instrumentation to support pymemcache >4
29
29
([ #1764 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1764 ) )
30
+ - ` opentelemetry-instrumentation-confluent-kafka ` Add support for higher versions of confluent_kafka
31
+ ([ #1815 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1815 ) )
30
32
31
33
### Added
32
34
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ boto~=2.0
26
26
botocore~=1.0
27
27
boto3~=1.0
28
28
celery>=4.0
29
- confluent-kafka>= 1.8.2,< 2.0 .0
29
+ confluent-kafka>= 1.8.2,<= 2.2 .0
30
30
elasticsearch>=2.0,<9.0
31
31
flask~=2.0
32
32
falcon~=2.0
Original file line number Diff line number Diff line change 11
11
| [ opentelemetry-instrumentation-boto3sqs] ( ./opentelemetry-instrumentation-boto3sqs ) | boto3 ~ = 1.0 | No
12
12
| [ opentelemetry-instrumentation-botocore] ( ./opentelemetry-instrumentation-botocore ) | botocore ~ = 1.0 | No
13
13
| [ opentelemetry-instrumentation-celery] ( ./opentelemetry-instrumentation-celery ) | celery >= 4.0, < 6.0 | No
14
- | [ opentelemetry-instrumentation-confluent-kafka] ( ./opentelemetry-instrumentation-confluent-kafka ) | confluent-kafka >= 1.8.2, < 2.0 .0 | No
14
+ | [ opentelemetry-instrumentation-confluent-kafka] ( ./opentelemetry-instrumentation-confluent-kafka ) | confluent-kafka >= 1.8.2, <= 2.2 .0 | No
15
15
| [ opentelemetry-instrumentation-dbapi] ( ./opentelemetry-instrumentation-dbapi ) | dbapi | No
16
16
| [ opentelemetry-instrumentation-django] ( ./opentelemetry-instrumentation-django ) | django >= 1.10 | Yes
17
17
| [ opentelemetry-instrumentation-elasticsearch] ( ./opentelemetry-instrumentation-elasticsearch ) | elasticsearch >= 2.0 | No
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ dependencies = [
31
31
32
32
[project .optional-dependencies ]
33
33
instruments = [
34
- " confluent-kafka >= 1.8.2, < 2.0 .0" ,
34
+ " confluent-kafka >= 1.8.2, <= 2.2 .0" ,
35
35
]
36
36
test = [
37
37
" opentelemetry-instrumentation-confluent-kafka[instruments]" ,
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
16
- _instruments = ("confluent-kafka >= 1.8.2, < 2.0 .0" ,)
16
+ _instruments = ("confluent-kafka >= 1.8.2, <= 2.2 .0" ,)
Original file line number Diff line number Diff line change 53
53
"instrumentation" : "opentelemetry-instrumentation-celery==0.40b0.dev" ,
54
54
},
55
55
"confluent-kafka" : {
56
- "library" : "confluent-kafka >= 1.8.2, < 2.0 .0" ,
56
+ "library" : "confluent-kafka >= 1.8.2, <= 2.2 .0" ,
57
57
"instrumentation" : "opentelemetry-instrumentation-confluent-kafka==0.40b0.dev" ,
58
58
},
59
59
"django" : {
You can’t perform that action at this time.
0 commit comments