Skip to content

Commit 0eda3e3

Browse files
authored
Merge branch 'main' into implement-genai-spec
2 parents 0a33edf + 1c4e2bf commit 0eda3e3

6 files changed

Lines changed: 19 additions & 4 deletions

File tree

.github/workflows/event-processor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: azure/login@v3
3636
if: ${{ github.event_name == 'issues' && github.event.action == 'opened' }}
3737
with:
38-
client-id: a6dd2dfe-7352-41a7-9020-05301c3bca1a
38+
client-id: e4cb9fd5-0875-4ca1-bc43-56196f5dfb8f
3939
tenant-id: 72f988bf-86f1-41af-91ab-2d7cd011db47
4040
allow-no-subscriptions: true
4141

eng/pipelines/templates/jobs/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,13 @@ jobs:
145145
os: linux
146146

147147
steps:
148+
- template: /eng/common/pipelines/templates/steps/sparse-checkout.yml
149+
parameters:
150+
${{ if endsWith(variables['Build.Repository.Name'], '-pr') }}:
151+
TokenToUseForAuth: $(azuresdk-github-pat)
152+
Paths:
153+
- '**'
154+
148155
- template: /eng/pipelines/templates/steps/download-package-artifacts.yml
149156

150157
- template: /eng/pipelines/templates/steps/resolve-package-targeting.yml
@@ -177,6 +184,13 @@ jobs:
177184
os: linux
178185

179186
steps:
187+
- template: /eng/common/pipelines/templates/steps/sparse-checkout.yml
188+
parameters:
189+
${{ if endsWith(variables['Build.Repository.Name'], '-pr') }}:
190+
TokenToUseForAuth: $(azuresdk-github-pat)
191+
Paths:
192+
- '**'
193+
180194
- template: /eng/pipelines/templates/steps/download-package-artifacts.yml
181195

182196
- template: /eng/pipelines/templates/steps/resolve-package-targeting.yml

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
([#46700](https://github.com/Azure/azure-sdk-for-python/pull/46700))
1313

1414
### Breaking Changes
15+
- Dropped support for Python 3.9. This package now supports Python 3.10+. [Follows upstream otel dropping support](https://github.com/open-telemetry/opentelemetry-python/pull/5076)
16+
([#46694](https://github.com/Azure/azure-sdk-for-python/pull/46694))
1517

1618
### Bugs Fixed
1719
- Fix `success` field on HTTP request telemetry resolving to an integer instead of a boolean when no status code is present

sdk/monitor/azure-monitor-opentelemetry-exporter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To use this package, you must have:
2323
* Azure subscription - [Create a free account][azure_sub]
2424
* Azure Monitor - [How to use application insights][application_insights_namespace]
2525
* OpenTelemetry SDK - [OpenTelemetry SDK for Python][ot_sdk_python]
26-
* Python 3.8 or later - [Install Python][python]
26+
* Python 3.10 or later - [Install Python][python]
2727

2828
### Instantiate the client
2929

sdk/monitor/azure-monitor-opentelemetry-exporter/dev_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
../../core/azure-core
33
../../core/azure-core-tracing-opentelemetry
44
../../identity/azure-identity
5-
aiohttp>=3.0; python_version >= '3.7'
5+
aiohttp>=3.0; python_version >= '3.10'
66
fixedint<1.0.0,>=0.1.6

sdk/monitor/azure-monitor-opentelemetry-exporter/setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@
5959
"Development Status :: 4 - Beta",
6060
"Programming Language :: Python",
6161
"Programming Language :: Python :: 3",
62-
"Programming Language :: Python :: 3.9",
6362
"Programming Language :: Python :: 3.10",
6463
"Programming Language :: Python :: 3.11",
6564
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)