Skip to content

Commit 52ff7bd

Browse files
authored
feat: Update opentelemetry-instrumentation-confluent-kafka to support confluent-kafka <=2.7.0 (#3100)
1 parent 6fcaa0a commit 52ff7bd

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Added
1515

16+
- `opentelemetry-instrumentation-confluent-kafka` Add support for confluent-kafka <=2.7.0
17+
([#3100](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3100))
1618
- Add support to database stability opt-in in `_semconv` utilities and add tests
1719
([#3111](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3111))
1820

instrumentation/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
| [opentelemetry-instrumentation-cassandra](./opentelemetry-instrumentation-cassandra) | cassandra-driver ~= 3.25,scylla-driver ~= 3.25 | No | experimental
1717
| [opentelemetry-instrumentation-celery](./opentelemetry-instrumentation-celery) | celery >= 4.0, < 6.0 | No | experimental
1818
| [opentelemetry-instrumentation-click](./opentelemetry-instrumentation-click) | click >= 8.1.3, < 9.0.0 | No | experimental
19-
| [opentelemetry-instrumentation-confluent-kafka](./opentelemetry-instrumentation-confluent-kafka) | confluent-kafka >= 1.8.2, <= 2.4.0 | No | experimental
19+
| [opentelemetry-instrumentation-confluent-kafka](./opentelemetry-instrumentation-confluent-kafka) | confluent-kafka >= 1.8.2, <= 2.7.0 | No | experimental
2020
| [opentelemetry-instrumentation-dbapi](./opentelemetry-instrumentation-dbapi) | dbapi | No | experimental
2121
| [opentelemetry-instrumentation-django](./opentelemetry-instrumentation-django) | django >= 1.10 | Yes | experimental
2222
| [opentelemetry-instrumentation-elasticsearch](./opentelemetry-instrumentation-elasticsearch) | elasticsearch >= 6.0 | No | experimental

instrumentation/opentelemetry-instrumentation-confluent-kafka/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dependencies = [
3232

3333
[project.optional-dependencies]
3434
instruments = [
35-
"confluent-kafka >= 1.8.2, <= 2.4.0",
35+
"confluent-kafka >= 1.8.2, <= 2.7.0",
3636
]
3737

3838
[project.entry-points.opentelemetry_instrumentor]

instrumentation/opentelemetry-instrumentation-confluent-kafka/src/opentelemetry/instrumentation/confluent_kafka/package.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# limitations under the License.
1414

1515

16-
_instruments = ("confluent-kafka >= 1.8.2, <= 2.4.0",)
16+
_instruments = ("confluent-kafka >= 1.8.2, <= 2.7.0",)

instrumentation/opentelemetry-instrumentation-confluent-kafka/test-requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
asgiref==3.8.1
2-
confluent-kafka==2.4.0
2+
confluent-kafka==2.6.1
33
Deprecated==1.2.14
44
iniconfig==2.0.0
55
packaging==24.0

opentelemetry-instrumentation/src/opentelemetry/instrumentation/bootstrap_gen.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"instrumentation": "opentelemetry-instrumentation-click==0.51b0.dev",
7878
},
7979
{
80-
"library": "confluent-kafka >= 1.8.2, <= 2.4.0",
80+
"library": "confluent-kafka >= 1.8.2, <= 2.7.0",
8181
"instrumentation": "opentelemetry-instrumentation-confluent-kafka==0.51b0.dev",
8282
},
8383
{

0 commit comments

Comments
 (0)