Skip to content

Commit bef35eb

Browse files
committed
Merge branch 'main' into cutover-test-runs
2 parents f853d82 + da88eec commit bef35eb

File tree

3,522 files changed

+146992
-116260
lines changed

Some content is hidden

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

3,522 files changed

+146992
-116260
lines changed

.github/CODEOWNERS

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -191,11 +191,11 @@
191191

192192
# ServiceLabel: %Monitor - Distro
193193
# PRLabel: %Monitor - Distro
194-
/sdk/monitor/azure-monitor-opentelemetry/ @lzchen @jeremydvoss @hectorhdzg @rads-1996 @Karlie-777 @MSNev @JacksonWeber
194+
/sdk/monitor/azure-monitor-opentelemetry/ @lzchen @jeremydvoss @hectorhdzg @rads-1996 @MSNev @JacksonWeber
195195

196196
# ServiceLabel: %Monitor - Exporter
197197
# PRLabel: %Monitor - Exporter
198-
/sdk/monitor/azure-monitor-opentelemetry-exporter/ @lzchen @jeremydvoss @hectorhdzg @rads-1996 @Karlie-777 @MSNev @JacksonWeber
198+
/sdk/monitor/azure-monitor-opentelemetry-exporter/ @lzchen @jeremydvoss @hectorhdzg @rads-1996 @MSNev @JacksonWeber
199199

200200
# ServiceLabel: %Consumption
201201
# PRLabel: %Consumption
@@ -261,7 +261,7 @@
261261

262262
# PRLabel: %Voice Live
263263
# ServiceLabel: %Voice Live %Service Attention
264-
/sdk/ai/azure-ai-voicelive/ @rhurey @xitzhang
264+
/sdk/ai/azure-ai-voicelive/ @rhurey @xitzhang @amber-yujueWang
265265

266266

267267
# PRLabel: %HDInsight
@@ -412,12 +412,11 @@
412412
# PRLabel: %Cognitive - Anomaly Detector
413413
/sdk/anomalydetector/ @conhua @mengaims @juaduan @moreOver0
414414

415-
# ServiceOwners: @MikeyMCZ @Han-msft
416415
# ServiceLabel: %Cognitive - Translator
416+
# ServiceOwners: @jrjrguo @SG-MS
417417

418418
# PRLabel: %Cognitive - Translator
419-
/sdk/translation/azure-ai-translation-document/ @Han-msft
420-
/sdk/translation/azure-ai-translation-text/ @MikeyMCZ
419+
/sdk/translation/ @jrjrguo @SG-MS
421420

422421
# PRLabel: %Cognitive - Language
423422
/sdk/cognitivelanguage/ @quentinRobinson @bidisha-c @mikaelsitruk @sarkar-rajarshi @ahmedaashour
@@ -844,6 +843,7 @@
844843
###########
845844
/eng/ @scbedd @weshaggard @benbp
846845
/eng/common/ @Azure/azure-sdk-eng
846+
/eng/tools/ @scbedd @mccoyp
847847
/.github/workflows/ @Azure/azure-sdk-eng
848848
/.github/CODEOWNERS @lmazuel @xiangyan99 @kashifkhan @Azure/azure-sdk-eng
849849
/.github/copilot-instructions.md @l0lawrence @praveenkuttappan @maririos
@@ -853,7 +853,6 @@
853853
/.devcontainer/ @scbedd @mccoyp @benbp @weshaggard
854854
/.vscode/ @scbedd @mccoyp @benbp @weshaggard
855855

856-
/tools/ @scbedd @mccoyp
857856
/scripts/ @scbedd @mccoyp
858857
/scripts/breaking_changes_checker/ @catalinaperalta
859858
/doc/ @scbedd @mccoyp

.github/copilot-instructions.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,11 @@
1414

1515
### RULE 3: VERIFY ENVIRONMENT FIRST
1616
**REQUIRED CONDITIONS:**
17-
- Always run the [`azsdk_verify_setup`](../eng/common/instructions/azsdk-tools/verify-setup.instructions.md) tool to check the user's development environment setup for using SDK MCP tools. DO NOT PROCEED with running other tools before completing this step. Only skip for queries that don't need tools.
1817
- To use Azure MCP tool calls, users must have PowerShell installed. Provide [PowerShell installation instructions](https://learn.microsoft.com/powershell/scripting/install/installing-powershell) if not installed, and recommend restarting the IDE to start the MCP server.
18+
- When using Copilot from Visual Studio or VS Code (not applicable when using Coding Agent on Github.com):
19+
- **Always run** the [`azsdk_verify_setup`](../eng/common/instructions/azsdk-tools/verify-setup.instructions.md) tool first to validate the user's development environment for SDK MCP tools.
20+
- **Do not proceed** with any other tool execution until this step is complete.
21+
- **Skip this check only** for queries that do not require tool execution.
1922

2023
---
2124

.vscode/cspell.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2187,7 +2187,7 @@
21872187
},
21882188
{
21892189
"filename": "sdk/ai/azure-ai-voicelive/**",
2190-
"words": ["viseme","VISEME","ulaw","ULAW","logprobs","pyaudio","PyAudio","libasound"]
2190+
"words": ["viseme","VISEME","ulaw","ULAW","logprobs","pyaudio","PyAudio","libasound","webrtc","WEBRTC"]
21912191
}
21922192
],
21932193
"allowCompoundWords": true
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{% set name = "azure-ai-voicelive" %}
2+
3+
package:
4+
name: "{{ name|lower }}"
5+
version: {{ environ.get('AZURESDK_CONDA_VERSION', '0.0.0') }}
6+
7+
source:
8+
url: {{ environ.get('AGENTS_SOURCE_DISTRIBUTION', '') }}
9+
10+
build:
11+
noarch: python
12+
number: 0
13+
script: "{{ PYTHON }} -m pip install . -vv"
14+
15+
requirements:
16+
host:
17+
- azure-core >={{ environ.get('AZURESDK_CONDA_VERSION', '0.0.0') }}
18+
- azure-identity >={{ environ.get('AZURESDK_CONDA_VERSION', '0.0.0') }}
19+
- cryptography
20+
- pip
21+
- python
22+
- requests-oauthlib >=0.5.0
23+
- aiohttp
24+
- isodate
25+
run:
26+
- azure-core >={{ environ.get('AZURESDK_CONDA_VERSION', '0.0.0') }}
27+
- azure-identity >={{ environ.get('AZURESDK_CONDA_VERSION', '0.0.0') }}
28+
- cryptography
29+
- python
30+
- requests-oauthlib >=0.5.0
31+
- aiohttp
32+
- isodate
33+
34+
test:
35+
imports:
36+
- azure.ai.voicelive
37+
38+
about:
39+
home: "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/ai/azure-ai-voicelive"
40+
license: MIT
41+
license_family: MIT
42+
license_file:
43+
summary: "Azure AI VoiceLive client library for Python"
44+
description: |
45+
This is the Microsoft Azure AI VoiceLive Client Library.
46+
Please see https://aka.ms/azsdk/conda/releases/projects for version details.
47+
doc_url:
48+
dev_url:
49+
50+
extra:
51+
recipe-maintainers:
52+
- xiangyan99

conda/conda-recipes/azure-mgmt/meta.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,11 @@ test:
355355
- azure.mgmt.dnsresolver.aio.operations
356356
- azure.mgmt.dnsresolver.models
357357
- azure.mgmt.dnsresolver.operations
358+
- azure.mgmt.durabletask
359+
- azure.mgmt.durabletask.aio
360+
- azure.mgmt.durabletask.aio.operations
361+
- azure.mgmt.durabletask.models
362+
- azure.mgmt.durabletask.operations
358363
- azure.mgmt.dynatrace
359364
- azure.mgmt.dynatrace.aio
360365
- azure.mgmt.dynatrace.aio.operations
@@ -692,6 +697,11 @@ test:
692697
- azure.mgmt.peering.aio.operations
693698
- azure.mgmt.peering.models
694699
- azure.mgmt.peering.operations
700+
- azure.mgmt.playwright
701+
- azure.mgmt.playwright.aio
702+
- azure.mgmt.playwright.aio.operations
703+
- azure.mgmt.playwright.models
704+
- azure.mgmt.playwright.operations
695705
- azure.mgmt.playwrighttesting
696706
- azure.mgmt.playwrighttesting.aio
697707
- azure.mgmt.playwrighttesting.aio.operations
@@ -939,6 +949,11 @@ test:
939949
- azure.mgmt.signalr.aio.operations
940950
- azure.mgmt.signalr.models
941951
- azure.mgmt.signalr.operations
952+
- azure.mgmt.sitemanager
953+
- azure.mgmt.sitemanager.aio
954+
- azure.mgmt.sitemanager.aio.operations
955+
- azure.mgmt.sitemanager.models
956+
- azure.mgmt.sitemanager.operations
942957
- azure.mgmt.sphere
943958
- azure.mgmt.sphere.aio
944959
- azure.mgmt.sphere.aio.operations
@@ -969,6 +984,11 @@ test:
969984
- azure.mgmt.storagecache.aio.operations
970985
- azure.mgmt.storagecache.models
971986
- azure.mgmt.storagecache.operations
987+
- azure.mgmt.storagediscovery
988+
- azure.mgmt.storagediscovery.aio
989+
- azure.mgmt.storagediscovery.aio.operations
990+
- azure.mgmt.storagediscovery.models
991+
- azure.mgmt.storagediscovery.operations
972992
- azure.mgmt.storagemover
973993
- azure.mgmt.storagemover.aio
974994
- azure.mgmt.storagemover.aio.operations

conda/conda-recipes/conda_env.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
variables:
2-
AZURESDK_CONDA_VERSION: '2025.09.01'
2+
AZURESDK_CONDA_VERSION: '2025.12.01'

conda/conda-releaselogs/azure-ai-agents.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
Azure AI Agents client library for Python (conda)
1+
# Azure AI Agents client library for Python (conda)
2+
3+
## 2025.12.01
4+
5+
### Packages included
6+
7+
- azure-ai-agents-1.1.0
28

39
## 2025.09.01
410

conda/conda-releaselogs/azure-ai-contentsafety.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
Azure AI Content Safety client library for Python (conda)
1+
# Azure AI Content Safety client library for Python (conda)
2+
3+
## 2025.12.01
4+
5+
### Packages included
6+
7+
- azure-ai-contentsafety-1.0.0
28

39
## 2025.09.01
410

conda/conda-releaselogs/azure-ai-documentintelligence.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
Azure AI Document Intelligence client library for Python (conda)
1+
# Azure AI Document Intelligence client library for Python (conda)
2+
3+
## 2025.12.01
4+
5+
### Packages included
6+
7+
- azure-ai-documentintelligence-1.0.2
28

39
## 2025.09.01
410

conda/conda-releaselogs/azure-ai-formrecognizer.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Azure Form Recognizer client library for Python (conda)
22

3+
## 2025.12.01
4+
5+
### Packages included
6+
7+
- azure-ai-formrecognizer-3.3.3
8+
39
## 2024.12.01
410

511
### Packages included

0 commit comments

Comments
 (0)