Skip to content

Commit f123264

Browse files
authored
Merge branch 'main' into main
2 parents 92c4ef6 + 6bb6d38 commit f123264

File tree

91 files changed

+548
-110
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+548
-110
lines changed

.github/component_owners.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,8 @@ components:
6161
instrumentation/opentelemetry-instrumentation-psycopg:
6262
- federicobond
6363

64+
instrumentation/opentelemetry-instrumentation-aiokafka:
65+
- dimastbk
66+
6467
processor/opentelemetry-processor-baggage:
6568
- codeboten

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
([#2082](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2082))
1616
- `opentelemetry-instrumentation-fastapi` Add path parameter rendering feature.
1717
([#2879](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2879))
18+
- `opentelemetry-instrumentation-redis` Add additional attributes for methods create_index and search, rename those spans
19+
([#2635](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2635))
1820

19-
## Version 1.27.0/0.48b0 ()
21+
### Fixed
22+
23+
- `opentelemetry-instrumentation-aiokafka` Wrap `AIOKafkaConsumer.getone()` instead of `AIOKafkaConsumer.__anext__`
24+
([#2874](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2874))
25+
26+
## Version 1.27.0/0.48b0 (2024-08-28)
2027

2128
### Added
2229

exporter/opentelemetry-exporter-prometheus-remote-write/test-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pytest==7.4.4
1616
python-snappy==0.7.1
1717
requests==2.32.3
1818
tomli==2.0.1
19-
typing_extensions==4.10.0
19+
typing_extensions==4.12.2
2020
urllib3==2.2.2
2121
wrapt==1.16.0
2222
zipp==3.19.2

exporter/opentelemetry-exporter-richconsole/test-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Pygments==2.17.2
1212
pytest==7.4.4
1313
rich==13.7.1
1414
tomli==2.0.1
15-
typing_extensions==4.10.0
15+
typing_extensions==4.12.2
1616
wrapt==1.16.0
1717
zipp==3.19.2
1818
-e exporter/opentelemetry-exporter-richconsole

instrumentation/opentelemetry-instrumentation-aio-pika/test-requirements-0.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pluggy==1.5.0
1212
py-cpuinfo==9.0.0
1313
pytest==7.4.4
1414
tomli==2.0.1
15-
typing_extensions==4.9.0
15+
typing_extensions==4.12.2
1616
wrapt==1.16.0
1717
yarl==1.9.4
1818
zipp==3.19.2

instrumentation/opentelemetry-instrumentation-aio-pika/test-requirements-1.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pluggy==1.5.0
1212
py-cpuinfo==9.0.0
1313
pytest==7.4.4
1414
tomli==2.0.1
15-
typing_extensions==4.9.0
15+
typing_extensions==4.12.2
1616
wrapt==1.16.0
1717
yarl==1.9.4
1818
zipp==3.19.2

instrumentation/opentelemetry-instrumentation-aio-pika/test-requirements-2.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pluggy==1.5.0
1212
py-cpuinfo==9.0.0
1313
pytest==7.4.4
1414
tomli==2.0.1
15-
typing_extensions==4.9.0
15+
typing_extensions==4.12.2
1616
wrapt==1.16.0
1717
yarl==1.9.4
1818
zipp==3.19.2

instrumentation/opentelemetry-instrumentation-aio-pika/test-requirements-3.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pluggy==1.5.0
1212
py-cpuinfo==9.0.0
1313
pytest==7.4.4
1414
tomli==2.0.1
15-
typing_extensions==4.9.0
15+
typing_extensions==4.12.2
1616
wrapt==1.16.0
1717
yarl==1.9.4
1818
zipp==3.19.2

instrumentation/opentelemetry-instrumentation-aiohttp-client/test-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ py-cpuinfo==9.0.0
2323
pytest==7.4.4
2424
requests==2.32.3
2525
tomli==2.0.1
26-
typing_extensions==4.10.0
26+
typing_extensions==4.12.2
2727
urllib3==2.2.2
2828
Werkzeug==3.0.3
2929
wrapt==1.16.0

instrumentation/opentelemetry-instrumentation-aiohttp-server/test-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pytest==7.4.4
1515
pytest-aiohttp==1.0.5
1616
pytest-asyncio==0.23.5
1717
tomli==2.0.1
18-
typing_extensions==4.10.0
18+
typing_extensions==4.12.2
1919
wrapt==1.16.0
2020
yarl==1.9.4
2121
zipp==3.19.2

0 commit comments

Comments
 (0)