@@ -15,6 +15,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
1616- Bump ` pylint ` to ` 4.0.5 `
1717 ([ #4244 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4244 ) )
18+ - ` opentelemetry-instrumentation-sqlite3 ` : Add uninstrument, error status, suppress, and no-op tests
19+ ([ #4335 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4335 ) )
20+ - Expand ` AGENTS.md ` with instrumentation/GenAI guidance and add PR review instructions.
21+ ([ #4457 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4457 ) )
22+
23+ ### Fixed
24+
25+ - ` opentelemetry-instrumentation-pika ` Use ` ObjectProxy ` instead of ` BaseObjectProxy ` for ` ReadyMessagesDequeProxy ` to restore iterability with wrapt 2.x
26+ ([ #4461 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4461 ) )
27+ - ` opentelemetry-instrumentation-dbapi ` Use ` ObjectProxy ` instead of ` BaseObjectProxy ` for ` TracedCursorProxy ` to restore iterability with wrapt 2.x
28+ ([ #4427 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4427 ) )
29+ - ` opentelemetry-instrumentation-flask ` : Clean up environ keys in ` _teardown_request ` to prevent duplicate execution
30+ ([ #4341 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4341 ) )
31+ - ` opentelemetry-instrumentation-flask ` : Stop reading the deprecated (from 3.1) ` flask.__version__ ` attribute; resolve the Flask version via ` importlib.metadata `
32+ ([ #4422 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4422 ) )
33+ - ` opentelemetry-instrumentation-celery ` : Coerce non-string values to strings in ` CeleryGetter.get() ` to prevent ` TypeError ` in ` TraceState.from_header() ` when Celery request attributes contain ints
34+ ([ #4360 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4360 ) )
35+ - ` opentelemetry-instrumentation-aiohttp-server ` : Use ` canonical ` attribute of the ` Resource ` as a span name
36+ ([ #3896 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3896 ) )
1837
1938### Breaking changes
2039
@@ -1164,15 +1183,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11641183
11651184### Added
11661185
1167- - Support ` aio_pika ` 9.x (( [ #1670 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1670] )
1186+ - Support ` aio_pika ` 9.x ([ #1670 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1670 ) )
11681187- ` opentelemetry-instrumentation-redis ` Add ` sanitize_query ` config option to allow query sanitization. ([ #1572 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1572 ) )
11691188- ` opentelemetry-instrumentation-elasticsearch ` Add optional db.statement query sanitization.
11701189 ([ #1598 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1598 ) )
11711190- ` opentelemetry-instrumentation-celery ` Record exceptions as events on the span.
11721191 ([ #1573 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1573 ) )
11731192- Add metric instrumentation for urllib
11741193 ([ #1553 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1553 ) )
1175- - ` opentelemetry/sdk/extension/aws ` Implement [ ` aws.ecs.* ` ] ( https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/ resource/semantic_conventions/cloud_provider/ aws/ecs.md ) and [ ` aws.logs.* ` ] ( https://opentelemetry.io/docs/reference/specification /resource/semantic_conventions/cloud_provider /aws/logs/ ) resource attributes in the ` AwsEcsResourceDetector ` detector when the ECS Metadata v4 is available
1194+ - ` opentelemetry/sdk/extension/aws ` Implement [ ` aws.ecs.* ` ] ( https://opentelemetry.io/docs/specs/semconv/ resource/cloud-provider/ aws/ecs/ ) and [ ` aws.logs.* ` ] ( https://opentelemetry.io/docs/specs/semconv /resource/cloud-provider /aws/logs/ ) resource attributes in the ` AwsEcsResourceDetector ` detector when the ECS Metadata v4 is available
11761195 ([ #1212 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1212 ) )
11771196- ` opentelemetry-instrumentation-aio-pika ` Support ` aio_pika ` 8.x
11781197 ([ #1481 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1481 ) )
@@ -1368,7 +1387,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13681387- Add a test for asgi using NoOpTracerProvider
13691388 ([ #1367 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1367 ) )
13701389
1371- ## [ 1.12.0rc2-0.32b0] ( https://github.com/open-telemetry/opentelemetry-python/releases/tag/v1.12.0rc2-0.32b0 ) - 2022-07-01
1390+ ## [ 1.12.0rc2-0.32b0] ( https://github.com/open-telemetry/opentelemetry-python/releases/tag/v1.12.0rc2 ) - 2022-07-01
13721391
13731392- Pyramid: Only categorize 500s server exceptions as errors
13741393 ([ #1037 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/issues/1037 ) )
@@ -2002,7 +2021,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20022021- ` opentelemetry-instrumentation-grpc ` Add tests for grpc span attributes, grpc ` abort() ` conditions
20032022 ([ #236 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/236 ) )
20042023- Add README and example app for Prometheus Remote Write Exporter
2005- ([ #227 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/227] ) )
2024+ ([ #227 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/227 ) )
20062025- ` opentelemetry-instrumentation-botocore ` Adds a field to report the number of retries it take to complete an API call
20072026 ([ #275 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/275 ) )
20082027- ` opentelemetry-instrumentation-requests ` Use instanceof to check if responses are valid Response objects
@@ -2389,8 +2408,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
23892408- ` opentelemetry-ext-http-requests ` Updates for core library changes
23902409
23912410- ` Added support for PyPy3 ` Initial release
2392-
2393- ## [ #1033 ] ( https://github.com/open-telemetryopentelemetry-python-contrib/issues/1033 )
2411+ ([ #1033 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/issues/1033 ) )
23942412
23952413## Version 0.1a0 (2019-09-30)
23962414
0 commit comments