Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove opentelemetry-instrumentation-test package from bootstrap_gen #2969

Merged
merged 6 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Added

### Fixed

### Breaking changes

- Drop `opentelemetry-instrumentation-test` package from default instrumentation list
([#2969](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2969))

## Version 1.28.0/0.49b0 (2024-11-05)

### Added
Expand All @@ -30,7 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- `opentelemetry-instrumentation-aiokafka` Wrap `AIOKafkaConsumer.getone()` instead of `AIOKafkaConsumer.__anext__`
([#2874](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2874))
- `opentelemetry-instrumentation-confluent-kafka` Fix to allow `topic` to be extracted from `kwargs` in `produce()`
- `opentelemetry-instrumentation-confluent-kafka` Fix to allow `topic` to be extracted from `kwargs` in `produce()`
([#2901])(https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2901)
- `opentelemetry-instrumentation-system-metrics` Update metric units to conform to UCUM conventions.
([#2922](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2922))
Expand Down
1 change: 0 additions & 1 deletion instrumentation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
| [opentelemetry-instrumentation-sqlite3](./opentelemetry-instrumentation-sqlite3) | sqlite3 | No | experimental
| [opentelemetry-instrumentation-starlette](./opentelemetry-instrumentation-starlette) | starlette ~= 0.13.0 | Yes | experimental
| [opentelemetry-instrumentation-system-metrics](./opentelemetry-instrumentation-system-metrics) | psutil >= 5 | No | experimental
| [opentelemetry-instrumentation-test](./opentelemetry-instrumentation-test) | test | No | migration
| [opentelemetry-instrumentation-threading](./opentelemetry-instrumentation-threading) | threading | No | experimental
| [opentelemetry-instrumentation-tornado](./opentelemetry-instrumentation-tornado) | tornado >= 5.1.1 | Yes | experimental
| [opentelemetry-instrumentation-tortoiseorm](./opentelemetry-instrumentation-tortoiseorm) | tortoise-orm >= 0.17.0 | No | experimental
Expand Down
201 changes: 0 additions & 201 deletions instrumentation/opentelemetry-instrumentation-test/LICENSE

This file was deleted.

25 changes: 0 additions & 25 deletions instrumentation/opentelemetry-instrumentation-test/README.rst

This file was deleted.

49 changes: 0 additions & 49 deletions instrumentation/opentelemetry-instrumentation-test/pyproject.toml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Empty file.
1 change: 0 additions & 1 deletion opentelemetry-contrib-instrumentations/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ dependencies = [
"opentelemetry-instrumentation-sqlite3==0.50b0.dev",
"opentelemetry-instrumentation-starlette==0.50b0.dev",
"opentelemetry-instrumentation-system-metrics==0.50b0.dev",
"opentelemetry-instrumentation-test==1.0.0b.dev",
"opentelemetry-instrumentation-threading==0.50b0.dev",
"opentelemetry-instrumentation-tornado==0.50b0.dev",
"opentelemetry-instrumentation-tortoiseorm==0.50b0.dev",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@
"opentelemetry-instrumentation-dbapi==0.50b0.dev",
"opentelemetry-instrumentation-logging==0.50b0.dev",
"opentelemetry-instrumentation-sqlite3==0.50b0.dev",
"opentelemetry-instrumentation-test==1.0.0b.dev",
"opentelemetry-instrumentation-threading==0.50b0.dev",
"opentelemetry-instrumentation-urllib==0.50b0.dev",
"opentelemetry-instrumentation-wsgi==0.50b0.dev",
Expand Down
Loading