mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2026-03-13 08:10:39 +08:00
confluent_kafka: extend instruments version declaration to include 2.4.0 (#2616)
* confluent_kafka: update instruments version declaration to include 2.4.0 * Adjust CHANGELOG.md with actual PR number --------- Co-authored-by: Diego Hurtado <ocelotl@users.noreply.github.com>
This commit is contained in:
@@ -16,6 +16,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
([#2622](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2622))
|
||||
- `opentelemetry-sdk-extension-aws` Add AwsXrayLambdaPropagator
|
||||
([#2573](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2573))
|
||||
- `opentelemetry-instrumentation-confluent-kafka` Add support for version 2.4.0 of confluent_kafka
|
||||
([#2616](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2616))
|
||||
|
||||
### Breaking changes
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ botocore~=1.0
|
||||
boto3~=1.0
|
||||
cassandra-driver~=3.25
|
||||
celery>=4.0
|
||||
confluent-kafka>= 1.8.2,<= 2.3.0
|
||||
confluent-kafka>= 1.8.2,<= 2.4.0
|
||||
elasticsearch>=6.0,<9.0
|
||||
flask~=2.0
|
||||
falcon~=2.0
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
| [opentelemetry-instrumentation-botocore](./opentelemetry-instrumentation-botocore) | botocore ~= 1.0 | No | experimental
|
||||
| [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-confluent-kafka](./opentelemetry-instrumentation-confluent-kafka) | confluent-kafka >= 1.8.2, <= 2.3.0 | No | experimental
|
||||
| [opentelemetry-instrumentation-confluent-kafka](./opentelemetry-instrumentation-confluent-kafka) | confluent-kafka >= 1.8.2, <= 2.4.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.3.0",
|
||||
"confluent-kafka >= 1.8.2, <= 2.4.0",
|
||||
]
|
||||
|
||||
[project.entry-points.opentelemetry_instrumentor]
|
||||
|
||||
@@ -13,4 +13,4 @@
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
_instruments = ("confluent-kafka >= 1.8.2, <= 2.3.0",)
|
||||
_instruments = ("confluent-kafka >= 1.8.2, <= 2.4.0",)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
asgiref==3.7.2
|
||||
confluent-kafka==2.3.0
|
||||
confluent-kafka==2.4.0
|
||||
Deprecated==1.2.14
|
||||
importlib-metadata==6.11.0
|
||||
iniconfig==2.0.0
|
||||
|
||||
@@ -65,7 +65,7 @@ libraries = [
|
||||
"instrumentation": "opentelemetry-instrumentation-celery==0.47b0.dev",
|
||||
},
|
||||
{
|
||||
"library": "confluent-kafka >= 1.8.2, <= 2.3.0",
|
||||
"library": "confluent-kafka >= 1.8.2, <= 2.4.0",
|
||||
"instrumentation": "opentelemetry-instrumentation-confluent-kafka==0.47b0.dev",
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user