Skip to content

Commit 32d523f

Browse files
azure-sdkrads-1996
andauthored
Increment version for monitor releases (#42903)
* Increment package version after release of azure-monitor-opentelemetry * Fix mypy errors --------- Co-authored-by: Radhika Gupta <[email protected]>
1 parent 1a17624 commit 32d523f

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

sdk/monitor/azure-monitor-opentelemetry/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Release History
22

3+
## 1.8.1 (Unreleased)
4+
5+
### Features Added
6+
7+
### Breaking Changes
8+
9+
### Bugs Fixed
10+
11+
### Other Changes
12+
313
## 1.8.0 (2025-09-08)
414

515
### Features Added

sdk/monitor/azure-monitor-opentelemetry/azure/monitor/opentelemetry/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7-
VERSION = "1.8.0"
7+
VERSION = "1.8.1"

sdk/monitor/azure-monitor-opentelemetry/samples/metrics/live_metrics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
trace and exception telemetry to demonstrate the capabilities and collection set of live metrics.
66
"""
77
import logging
8-
import requests
8+
import requests # type: ignore[import-untyped]
99
import time
1010

1111
from azure.monitor.opentelemetry import configure_azure_monitor

sdk/monitor/azure-monitor-opentelemetry/samples/tracing/filter_spans.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7-
import requests
7+
import requests # type: ignore[import-untyped]
88
from azure.monitor.opentelemetry import configure_azure_monitor
99
from opentelemetry.sdk.trace import SpanProcessor
1010
from opentelemetry.trace import get_tracer, SpanContext, SpanKind, TraceFlags

sdk/monitor/azure-monitor-opentelemetry/samples/tracing/http_requests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# --------------------------------------------------------------------------
66
import logging
77

8-
import requests
8+
import requests # type: ignore[import-untyped]
99
from azure.monitor.opentelemetry import configure_azure_monitor
1010
from opentelemetry import trace
1111

0 commit comments

Comments
 (0)