mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-28 20:52:57 +08:00
feat: Update opentelemetry-instrumentation-confluent-kafka to support confluent-kafka <=2.7.0 (#3100)
This commit is contained in:
@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
### Added
|
||||
|
||||
- `opentelemetry-instrumentation-confluent-kafka` Add support for confluent-kafka <=2.7.0
|
||||
([#3100](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3100))
|
||||
- Add support to database stability opt-in in `_semconv` utilities and add tests
|
||||
([#3111](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3111))
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
| [opentelemetry-instrumentation-cassandra](./opentelemetry-instrumentation-cassandra) | cassandra-driver ~= 3.25,scylla-driver ~= 3.25 | No | experimental
|
||||
| [opentelemetry-instrumentation-celery](./opentelemetry-instrumentation-celery) | celery >= 4.0, < 6.0 | No | experimental
|
||||
| [opentelemetry-instrumentation-click](./opentelemetry-instrumentation-click) | click >= 8.1.3, < 9.0.0 | No | experimental
|
||||
| [opentelemetry-instrumentation-confluent-kafka](./opentelemetry-instrumentation-confluent-kafka) | confluent-kafka >= 1.8.2, <= 2.4.0 | No | experimental
|
||||
| [opentelemetry-instrumentation-confluent-kafka](./opentelemetry-instrumentation-confluent-kafka) | confluent-kafka >= 1.8.2, <= 2.7.0 | No | experimental
|
||||
| [opentelemetry-instrumentation-dbapi](./opentelemetry-instrumentation-dbapi) | dbapi | No | experimental
|
||||
| [opentelemetry-instrumentation-django](./opentelemetry-instrumentation-django) | django >= 1.10 | Yes | experimental
|
||||
| [opentelemetry-instrumentation-elasticsearch](./opentelemetry-instrumentation-elasticsearch) | elasticsearch >= 6.0 | No | experimental
|
||||
|
@ -32,7 +32,7 @@ dependencies = [
|
||||
|
||||
[project.optional-dependencies]
|
||||
instruments = [
|
||||
"confluent-kafka >= 1.8.2, <= 2.4.0",
|
||||
"confluent-kafka >= 1.8.2, <= 2.7.0",
|
||||
]
|
||||
|
||||
[project.entry-points.opentelemetry_instrumentor]
|
||||
|
@ -13,4 +13,4 @@
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
_instruments = ("confluent-kafka >= 1.8.2, <= 2.4.0",)
|
||||
_instruments = ("confluent-kafka >= 1.8.2, <= 2.7.0",)
|
||||
|
@ -1,5 +1,5 @@
|
||||
asgiref==3.8.1
|
||||
confluent-kafka==2.4.0
|
||||
confluent-kafka==2.6.1
|
||||
Deprecated==1.2.14
|
||||
iniconfig==2.0.0
|
||||
packaging==24.0
|
||||
|
@ -77,7 +77,7 @@ libraries = [
|
||||
"instrumentation": "opentelemetry-instrumentation-click==0.51b0.dev",
|
||||
},
|
||||
{
|
||||
"library": "confluent-kafka >= 1.8.2, <= 2.4.0",
|
||||
"library": "confluent-kafka >= 1.8.2, <= 2.7.0",
|
||||
"instrumentation": "opentelemetry-instrumentation-confluent-kafka==0.51b0.dev",
|
||||
},
|
||||
{
|
||||
|
Reference in New Issue
Block a user