Skip to content

Commit c038acd

Browse files
authored
Merge branch 'master' into fix/sagemaker-session-region-not-being-used
2 parents cf770dd + f2f695a commit c038acd

File tree

4 files changed

+33
-2
lines changed

4 files changed

+33
-2
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## v2.211.0 (2024-03-05)
4+
5+
### Features
6+
7+
* pin dll version to support python3.11 to the sdk
8+
* instance specific jumpstart host requirements
9+
* Add TensorFlow 2.14 image configs
10+
* Add AutoMLV2 support
11+
* Support selective pipeline execution between function step and regular step
12+
* Add new Triton DLC URIs
13+
14+
### Bug Fixes and Other Changes
15+
16+
* Skip No Canvas regions for test_deploy_best_candidate
17+
* make sure gpus are found in local_gpu run
18+
* Bump Apache Airflow version to 2.8.2
19+
* properly close sagemaker config file after loading config
20+
* remove enable_network_isolation from the python doc
21+
22+
### Documentation Changes
23+
24+
* Add doc for new feature processor APIs and classes
25+
326
## v2.210.0 (2024-02-28)
427

528
### Features

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.210.1.dev0
1+
2.211.1.dev0

tests/integ/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,13 @@
139139
"af-south-1",
140140
"eu-south-1",
141141
]
142+
NO_CANVAS_REGIONS = [
143+
"ca-central-1",
144+
"eu-north-1",
145+
"eu-west-2",
146+
"sa-east-1",
147+
"us-west-1",
148+
]
142149
NO_MODEL_MONITORING_REGIONS = ["me-south-1", "af-south-1", "eu-south-1"]
143150
DRIFT_CHECK_BASELINES_SUPPORTED_REGIONS = [
144151
"us-east-2",

tests/integ/test_auto_ml_v2.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,8 @@ def test_best_candidate(
330330

331331

332332
@pytest.mark.skipif(
333-
tests.integ.test_region() in tests.integ.NO_AUTO_ML_REGIONS,
333+
tests.integ.test_region() in tests.integ.NO_AUTO_ML_REGIONS
334+
or tests.integ.test_region() in tests.integ.NO_CANVAS_REGIONS,
334335
reason="AutoML is not supported in the region yet.",
335336
)
336337
@pytest.mark.release

0 commit comments

Comments
 (0)