Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
# Changelog
## v3.13.0 (2026-06-02)
### New Features

- **feat: Model customization** - Add new finetuning Trainer - MultiTurnRLTrainer(Multi-Turn Reinforcement Learning)
- **feat: Model customization** - Add new evaluator - MultiTurnRLEvaluator
- **feat: Deployment** - Add MTRL support for BedrockModelBuilder and ModelBuilder.

### Documentation

- Add details for MTRL trainer along with other finetuning interfaces under Model customization Section - https://sagemaker.readthedocs.io/en/stable/model_customization/model_customization.html
- Add details for MTRL evaluator along with existing evaluators.

### Bug Fixes

- fix: set sagemaker_config=None on mock session in test_from_jumpstart_config_applies_volume_size
- Restore BatchTransformInput.destination attribute in v3

## v3.12.0 (2026-05-19)

### New Features
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.12.0
3.13.0
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = [
"sagemaker-core>=2.12.0,<3.0.0",
"sagemaker-train>=1.12.0,<2.0.0",
"sagemaker-serve>=1.12.0,<2.0.0",
"sagemaker-mlops>=1.12.0,<2.0.0",
"sagemaker-core>=2.13.0,<3.0.0",
"sagemaker-train>=1.13.0,<2.0.0",
"sagemaker-serve>=1.13.0,<2.0.0",
"sagemaker-mlops>=1.13.0,<2.0.0",
]

[project.optional-dependencies]
Expand Down
6 changes: 6 additions & 0 deletions sagemaker-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Changelog
## v2.13.0 (2026-06-02)

### Bug Fixes

- Fix: Restore BatchTransformInput.destination attribute in v3 (#5865)

## v2.12.0 (2026-05-19)

### New Features
Expand Down
2 changes: 1 addition & 1 deletion sagemaker-core/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.12.0
2.13.0
4 changes: 4 additions & 0 deletions sagemaker-mlops/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
## v1.13.0 (2026-06-02)

- Update module dependencies

## v1.12.0 (2026-05-19)

### New Features
Expand Down
2 changes: 1 addition & 1 deletion sagemaker-mlops/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.12.0
1.13.0
6 changes: 3 additions & 3 deletions sagemaker-mlops/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = [
"sagemaker-core>=2.12.0",
"sagemaker-train>=1.12.0",
"sagemaker-serve>=1.12.0",
"sagemaker-core>=2.13.0",
"sagemaker-train>=1.13.0",
"sagemaker-serve>=1.13.0",
"cryptography>=46.0.0",
"boto3>=1.42.2,<2.0",
"botocore>=1.42.2,<2.0",
Expand Down
10 changes: 10 additions & 0 deletions sagemaker-serve/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# Changelog
## v1.13.0 (2026-06-02)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we also add ModelBuilder and BedrockModelBuilder support for MTRL ?

### Features

- **feat: Deployment** - Add MTRL support for BedrockModelBuilder and ModelBuilder.

### Bug Fixes

- fix: set sagemaker_config=None on mock session in test_from_jumpstart_config_applies_volume_size (#5882)

## v1.12.0 (2026-05-19)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion sagemaker-serve/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.12.0
1.13.0
4 changes: 2 additions & 2 deletions sagemaker-serve/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = [
"sagemaker-core>=2.12.0",
"sagemaker-train>=1.12.0",
"sagemaker-core>=2.13.0",
"sagemaker-train>=1.13.0",
"boto3>=1.42.2,<2.0",
"botocore>=1.35.75,<2.0",
"deepdiff",
Expand Down
12 changes: 12 additions & 0 deletions sagemaker-train/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
# Changelog

## v1.13.0 (2026-06-02)

### New Features

- **feat: Model customization** - Add new finetuning Trainer - MultiTurnRLTrainer(Multi-Turn Reinforcement Learning)
- **feat: Model customization** - Add new evaluator - MultiTurnRLEvaluator

### Bug Fixes

- fix: apply gpu_intensive mark at test-level instead of module-level (#5896)

Comment on lines +2 to +13
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lets callout the MTRL changes as Feature

## v1.12.0 (2026-05-19)

### Other
Expand Down
2 changes: 1 addition & 1 deletion sagemaker-train/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.12.0
1.13.0
2 changes: 1 addition & 1 deletion sagemaker-train/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = [
"sagemaker-core>=2.12.0",
"sagemaker-core>=2.13.0",
"graphene>=3,<4",
"typing_extensions>=4.9.0",
"tblib>=1.7.0",
Expand Down
Loading