feat: Update opentelemetry-instrumentation-confluent-kafka to support confluent-kafka <=2.11.0 (#3685)
* feat: Update opentelemetry-instrumentation-confluent-kafka to support confluent-kafka <=2.11.0 * changelog * cr * fixes + uv lock
This commit is contained in:
parent
8c3bf3e497
commit
c6b14fcd4d
|
|
@ -16,6 +16,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- `opentelemetry-instrumentation`: Avoid calls to `context.detach` with `None` token.
|
- `opentelemetry-instrumentation`: Avoid calls to `context.detach` with `None` token.
|
||||||
([#3673](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3673))
|
([#3673](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3673))
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- `opentelemetry-instrumentation-confluent-kafka` Add support for confluent-kafka <=2.11.0
|
||||||
|
([#3685](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3685))
|
||||||
|
|
||||||
## Version 1.36.0/0.57b0 (2025-07-29)
|
## Version 1.36.0/0.57b0 (2025-07-29)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
@ -116,7 +121,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
### Deprecated
|
### Deprecated
|
||||||
|
|
||||||
- Drop support for Python 3.8, bump baseline to Python 3.9.
|
- Drop support for Python 3.8, bump baseline to Python 3.9.
|
||||||
([#3399](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3399))
|
([#3399](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3399))
|
||||||
|
|
||||||
## Version 1.33.0/0.54b0 (2025-05-09)
|
## Version 1.33.0/0.54b0 (2025-05-09)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ botocore~=1.0
|
||||||
boto3~=1.0
|
boto3~=1.0
|
||||||
cassandra-driver~=3.25
|
cassandra-driver~=3.25
|
||||||
celery>=4.0
|
celery>=4.0
|
||||||
confluent-kafka>= 1.8.2,<= 2.4.0
|
confluent-kafka>= 1.8.2,<= 2.11.0
|
||||||
elasticsearch>=6.0,<9.0
|
elasticsearch>=6.0,<9.0
|
||||||
flask~=2.0
|
flask~=2.0
|
||||||
falcon~=2.0
|
falcon~=2.0
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
| [opentelemetry-instrumentation-cassandra](./opentelemetry-instrumentation-cassandra) | cassandra-driver ~= 3.25,scylla-driver ~= 3.25 | No | development
|
| [opentelemetry-instrumentation-cassandra](./opentelemetry-instrumentation-cassandra) | cassandra-driver ~= 3.25,scylla-driver ~= 3.25 | No | development
|
||||||
| [opentelemetry-instrumentation-celery](./opentelemetry-instrumentation-celery) | celery >= 4.0, < 6.0 | No | development
|
| [opentelemetry-instrumentation-celery](./opentelemetry-instrumentation-celery) | celery >= 4.0, < 6.0 | No | development
|
||||||
| [opentelemetry-instrumentation-click](./opentelemetry-instrumentation-click) | click >= 8.1.3, < 9.0.0 | No | development
|
| [opentelemetry-instrumentation-click](./opentelemetry-instrumentation-click) | click >= 8.1.3, < 9.0.0 | No | development
|
||||||
| [opentelemetry-instrumentation-confluent-kafka](./opentelemetry-instrumentation-confluent-kafka) | confluent-kafka >= 1.8.2, <= 2.7.0 | No | development
|
| [opentelemetry-instrumentation-confluent-kafka](./opentelemetry-instrumentation-confluent-kafka) | confluent-kafka >= 1.8.2, <= 2.11.0 | No | development
|
||||||
| [opentelemetry-instrumentation-dbapi](./opentelemetry-instrumentation-dbapi) | dbapi | No | development
|
| [opentelemetry-instrumentation-dbapi](./opentelemetry-instrumentation-dbapi) | dbapi | No | development
|
||||||
| [opentelemetry-instrumentation-django](./opentelemetry-instrumentation-django) | django >= 1.10 | Yes | development
|
| [opentelemetry-instrumentation-django](./opentelemetry-instrumentation-django) | django >= 1.10 | Yes | development
|
||||||
| [opentelemetry-instrumentation-elasticsearch](./opentelemetry-instrumentation-elasticsearch) | elasticsearch >= 6.0 | No | development
|
| [opentelemetry-instrumentation-elasticsearch](./opentelemetry-instrumentation-elasticsearch) | elasticsearch >= 6.0 | No | development
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@ dependencies = [
|
||||||
|
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
instruments = [
|
instruments = [
|
||||||
"confluent-kafka >= 1.8.2, <= 2.7.0",
|
"confluent-kafka >= 1.8.2, <= 2.11.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[project.entry-points.opentelemetry_instrumentor]
|
[project.entry-points.opentelemetry_instrumentor]
|
||||||
|
|
|
||||||
|
|
@ -13,4 +13,4 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
|
|
||||||
_instruments = ("confluent-kafka >= 1.8.2, <= 2.7.0",)
|
_instruments = ("confluent-kafka >= 1.8.2, <= 2.11.0",)
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
asgiref==3.8.1
|
asgiref==3.8.1
|
||||||
confluent-kafka==2.6.1
|
confluent-kafka==2.11.0
|
||||||
Deprecated==1.2.14
|
Deprecated==1.2.14
|
||||||
iniconfig==2.0.0
|
iniconfig==2.0.0
|
||||||
packaging==24.0
|
packaging==24.0
|
||||||
|
|
|
||||||
|
|
@ -85,7 +85,7 @@ libraries = [
|
||||||
"instrumentation": "opentelemetry-instrumentation-click==0.58b0.dev",
|
"instrumentation": "opentelemetry-instrumentation-click==0.58b0.dev",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"library": "confluent-kafka >= 1.8.2, <= 2.7.0",
|
"library": "confluent-kafka >= 1.8.2, <= 2.11.0",
|
||||||
"instrumentation": "opentelemetry-instrumentation-confluent-kafka==0.58b0.dev",
|
"instrumentation": "opentelemetry-instrumentation-confluent-kafka==0.58b0.dev",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue