Skip to content

Commit 59e33bc

Browse files
authored
Release 1.0.0b15: Upgrade exporter and otel to latest release (#308)
* otel 1.19 * changelog * Release 1.0.0b15 * Do not use newest importlib-metadata for Py3.7
1 parent 8a5f332 commit 59e33bc

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## Unreleased
44

5+
## [1.0.0b15](https://github.com/microsoft/ApplicationInsights-Python/releases/tag/v1.0.0b15) - 2023-07-17
6+
7+
- Upgrade to exporter 1.0.0b15 and OTel 1.19
8+
([#308](https://github.com/microsoft/ApplicationInsights-Python/pull/308))
9+
510
## [1.0.0b14](https://github.com/microsoft/ApplicationInsights-Python/releases/tag/v1.0.0b14) - 2023-07-12
611

712
- Upgrade to exporter 1.0.0b14 and OTel 1.18

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7-
VERSION = "1.0.0b14"
7+
VERSION = "1.0.0b15"

azure-monitor-opentelemetry/setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,11 @@
8585
python_requires=">=3.7",
8686
install_requires=[
8787
"azure-core-tracing-opentelemetry~=1.0.0b10",
88-
"azure-monitor-opentelemetry-exporter>=1.0.0b14",
89-
"opentelemetry-api==1.18.0",
90-
"opentelemetry-sdk==1.18.0",
88+
"azure-monitor-opentelemetry-exporter>=1.0.0b15",
89+
"opentelemetry-api==1.19.0",
90+
"opentelemetry-sdk==1.19.0",
9191
"wrapt >= 1.0.0, < 2.0.0",
92+
"importlib-metadata~=6.0.0,<=6.7.0; python_version < '3.8'",
9293
],
9394
entry_points={
9495
"opentelemetry_distro": [

0 commit comments

Comments
 (0)