Skip to content

Commit 3319240

Browse files
authored
Merge branch 'master' into migration-md
2 parents d54e134 + 0fce827 commit 3319240

35 files changed

+660
-5988
lines changed

.readthedocs.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ formats:
1818
python:
1919
install:
2020
- requirements: docs/requirements.txt
21+
- method: pip
22+
path: ./sagemaker-core
23+
- method: pip
24+
path: ./sagemaker-train
25+
- method: pip
26+
path: ./sagemaker-serve
27+
- method: pip
28+
path: ./sagemaker-mlops
2129
- method: pip
2230
path: .
2331
extra_requirements:

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
11
# Changelog
2+
## v3.4.1 (2026-02-10)
3+
4+
### Fixes
5+
- **Pipelines**: Correct Tag class usage in pipeline creation (#5526)
6+
- **ModelTrainer**: Support PipelineVariables in hyperparameters (#5519)
7+
- **HyperparameterTuner**: Include ModelTrainer internal channels (#5516)
8+
- **Experiments**: Don't apply default experiment config for pipelines in non-Eureka GA
9+
regions (#5500)
10+
11+
### Features
12+
- **JumpStart**: Added ISO regions support (#5505)
13+
- **JumpStart**: Added version 1.4 and 1.5 (#5538)
14+
15+
### Chores
16+
- Added unit and integration tests for JumpStart search functionality (#5544)
17+
- Removed java-kotlin from CodeQL workflow (#5517)
18+
219
## v3.4.0 (2026-01-22)
320

421
### Features

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.0
1+
3.4.1

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ classifiers = [
3333
"Programming Language :: Python :: 3.12",
3434
]
3535
dependencies = [
36-
"sagemaker-core>=2.4.0,<3.0.0",
37-
"sagemaker-train>=1.4.0,<2.0.0",
38-
"sagemaker-serve>=1.4.0,<2.0.0",
39-
"sagemaker-mlops>=1.4.0,<2.0.0",
36+
"sagemaker-core>=2.4.1,<3.0.0",
37+
"sagemaker-train>=1.4.1,<2.0.0",
38+
"sagemaker-serve>=1.4.1,<2.0.0",
39+
"sagemaker-mlops>=1.4.1,<2.0.0",
4040
]
4141

4242
[project.optional-dependencies]

sagemaker-core/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Changelog
2+
## v2.4.1 (2026-02-10)
3+
4+
### Bug fixes and Other Changes
5+
6+
- fix: Support PipelineVariables in ModelTrainer hyperparameters (#5519)
7+
- enhancement: Added ISO regions for JumpStart (#5505)
8+
- enhancement: Added AutoGluon versions 1.4 and 1.5 (#5538)
9+
- test: Added unit and integration tests for JumpStart search functionality (#5544)
210

311
## v2.4.0 (2026-01-22)
412

sagemaker-core/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
2.4.0
1+
2.4.1
22

sagemaker-core/example_notebooks/get_started.ipynb

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,13 @@
187187
"metadata": {},
188188
"outputs": [],
189189
"source": [
190-
"image = '141502667606.dkr.ecr.eu-west-1.amazonaws.com/sagemaker-xgboost:1.7-1'"
190+
"from sagemaker.core import image_uris\n",
191+
"\n",
192+
"image = image_uris.retrieve(\n",
193+
" framework=\"xgboost\",\n",
194+
" region=region,\n",
195+
" version='1.7-1'\n",
196+
")"
191197
]
192198
},
193199
{
@@ -687,7 +693,7 @@
687693
],
688694
"metadata": {
689695
"kernelspec": {
690-
"display_name": "Python 3 (ipykernel)",
696+
"display_name": "temp_env",
691697
"language": "python",
692698
"name": "python3"
693699
},

sagemaker-core/example_notebooks/inference_and_resource_chaining.ipynb

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -241,11 +241,13 @@
241241
"metadata": {},
242242
"outputs": [],
243243
"source": [
244-
"# Image name is hardcoded here\n",
245-
"# Image name can be programatically got by using sagemaker package and calling image_uris.retrieve\n",
246-
"# Since that is a high level abstraction that has multiple dependencies, the image URIs functionalities will live in sagemaker (V2)\n",
244+
"from sagemaker.core import image_uris\n",
247245
"\n",
248-
"image = \"433757028032.dkr.ecr.us-west-2.amazonaws.com/xgboost:latest\""
246+
"image = image_uris.retrieve(\n",
247+
" framework=\"xgboost\",\n",
248+
" region=region,\n",
249+
" version='latest'\n",
250+
")"
249251
]
250252
},
251253
{

sagemaker-core/example_notebooks/intelligent_defaults_and_logging.ipynb

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -269,11 +269,13 @@
269269
"metadata": {},
270270
"outputs": [],
271271
"source": [
272-
"# Image name is hardcoded here\n",
273-
"# Image name can be programatically got by using sagemaker package and calling image_uris.retrieve\n",
274-
"# Since that is a high level abstraction that has multiple dependencies, the image URIs functionalities will live in sagemaker (V2)\n",
272+
"from sagemaker.core import image_uris\n",
275273
"\n",
276-
"image = \"433757028032.dkr.ecr.us-west-2.amazonaws.com/xgboost:latest\""
274+
"image = image_uris.retrieve(\n",
275+
" framework=\"xgboost\",\n",
276+
" region=region,\n",
277+
" version='latest'\n",
278+
")"
277279
]
278280
},
279281
{

sagemaker-core/example_notebooks/sagemaker_core_overview.ipynb

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -255,11 +255,13 @@
255255
"metadata": {},
256256
"outputs": [],
257257
"source": [
258-
"# Image name is hardcoded here\n",
259-
"# Image name can be programatically got by using sagemaker package and calling image_uris.retrieve\n",
260-
"# Since that is a high level abstraction that has multiple dependencies, the image URIs functionalities will live in sagemaker (V2)\n",
258+
"from sagemaker.core import image_uris\n",
261259
"\n",
262-
"image = \"433757028032.dkr.ecr.us-west-2.amazonaws.com/xgboost:latest\""
260+
"image = image_uris.retrieve(\n",
261+
" framework=\"xgboost\",\n",
262+
" region=region,\n",
263+
" version='latest'\n",
264+
")"
263265
]
264266
},
265267
{

0 commit comments

Comments
 (0)