Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
([#3819](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3819))
- `opentelemetry-instrumentation-system-metrics`: Add support for the `OTEL_PYTHON_SYSTEM_METRICS_EXCLUDED_METRICS` environment variable
([#3959](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3959))
- `opentelemetry-instrumentation-httpx`: add ability to capture custom headers
- `opentelemetry-instrumentation-httpx`: add ability to capture custom headers
([#4047](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4047))
- `opentelemetry-instrumentation-confluent-kafka`: Increase confluent-kafka upper bound to support newer versions
Comment thread
emdneto marked this conversation as resolved.
Outdated
([#4099](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4099))

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion docs-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ botocore~=1.0
boto3~=1.0
cassandra-driver~=3.25
celery>=4.0
confluent-kafka>= 1.8.2,<= 2.11.0
confluent-kafka>= 1.8.2,<= 2.13.0
elasticsearch>=6.0,<9.0
flask~=2.0
falcon~=2.0
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
| [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-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.11.0 | No | development
| [opentelemetry-instrumentation-confluent-kafka](./opentelemetry-instrumentation-confluent-kafka) | confluent-kafka >= 1.8.2, <= 2.13.0 | No | development
| [opentelemetry-instrumentation-dbapi](./opentelemetry-instrumentation-dbapi) | dbapi | No | development
| [opentelemetry-instrumentation-django](./opentelemetry-instrumentation-django) | django >= 1.10 | Yes | development
| [opentelemetry-instrumentation-elasticsearch](./opentelemetry-instrumentation-elasticsearch) | elasticsearch >= 6.0 | No | development
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies = [

[project.optional-dependencies]
instruments = [
"confluent-kafka >= 1.8.2, <= 2.11.0",
"confluent-kafka >= 1.8.2, <= 2.13.0",
]

[project.entry-points.opentelemetry_instrumentor]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# limitations under the License.


_instruments = ("confluent-kafka >= 1.8.2, <= 2.11.0",)
_instruments = ("confluent-kafka >= 1.8.2, <= 2.13.0",)
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
asgiref==3.8.1
confluent-kafka==2.11.0
confluent-kafka==2.13.0
Deprecated==1.2.14
iniconfig==2.0.0
packaging==24.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"instrumentation": "opentelemetry-instrumentation-click==0.61b0.dev",
},
{
"library": "confluent-kafka >= 1.8.2, <= 2.11.0",
"library": "confluent-kafka >= 1.8.2, <= 2.13.0",
"instrumentation": "opentelemetry-instrumentation-confluent-kafka==0.61b0.dev",
},
{
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.