Skip to content

Commit 9ba9a82

Browse files
authored
Update Python Projects SDK version, and set dependency on beta versions of azure-ai-agents instead of stable (#42421)
1 parent 0381769 commit 9ba9a82

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

sdk/ai/azure-ai-projects/CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Release History
22

3+
## 1.1.0b3 (Unreleased)
4+
5+
### Features added
6+
7+
* File `setup.py` was updated to indicate the dependency `azure-ai-agents>=1.2.0b1`
8+
instead of `azure-ai-agents>=1.0.0`. This means that in a clean environment installing
9+
this version of `azure-ai-projects` will install latest beta version of `azure-ai-agents`
10+
(which has lots of features in preview) instead of latest stable version (which does
11+
not include preview features).
12+
13+
### Breaking changes
14+
15+
### Bugs Fixed
16+
17+
### Sample updates
18+
319
## 1.1.0b2 (2025-08-05)
420

521
### Bugs Fixed
@@ -12,7 +28,7 @@ First beta version following the 1.0.0 stable release. It brings back the Evalua
1228

1329
### Features added
1430

15-
* Added methods `cancel` and `delete` to Evaluations.
31+
* Evaluation and Red-Team operations (in preview) were restored.
1632

1733
## 1.0.0 (2025-07-31)
1834

sdk/ai/azure-ai-projects/azure/ai/projects/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "1.1.0b2"
9+
VERSION = "1.1.0b3"

sdk/ai/azure-ai-projects/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"azure-core>=1.30.0",
7272
"typing-extensions>=4.12.2",
7373
"azure-storage-blob>=12.15.0",
74-
"azure-ai-agents>=1.0.0",
74+
"azure-ai-agents>=1.2.0b1",
7575
],
7676
python_requires=">=3.9",
7777
)

0 commit comments

Comments
 (0)