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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# Changelog
## v3.14.0 (2026-06-18)

### Other

- chore: deprecate Python 3.9 support (#5941)
- chore: update SDK to use latest LMI image for v3.x (#5954)

## v3.13.1 (2026-06-04)

### New Features
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.13.1
3.14.0
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = [
"sagemaker-core>=2.13.1,<3.0.0",
"sagemaker-train>=1.13.1,<2.0.0",
"sagemaker-serve>=1.13.1,<2.0.0",
"sagemaker-mlops>=1.13.1,<2.0.0",
"sagemaker-core>=2.14.0,<3.0.0",
"sagemaker-train>=1.14.0,<2.0.0",
"sagemaker-serve>=1.14.0,<2.0.0",
"sagemaker-mlops>=1.14.0,<2.0.0",
]

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

### Other

- Update SDK to use latest LMI image for v3.x (#5954)
- chore: deprecate Python 3.9 support (#5941)

## v2.13.1 (2026-06-04)
### Other
- Update version
Expand Down
2 changes: 1 addition & 1 deletion sagemaker-core/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.13.1
2.14.0
7 changes: 7 additions & 0 deletions sagemaker-mlops/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# Changelog
## v1.14.0 (2026-06-18)

### Other

- Update module dependencies
- chore: deprecate Python 3.9 support (#5941)

## v1.13.1 (2026-06-04)

- Update module dependencies
Expand Down
2 changes: 1 addition & 1 deletion sagemaker-mlops/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.13.1
1.14.0
6 changes: 3 additions & 3 deletions sagemaker-mlops/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = [
"sagemaker-core>=2.13.1",
"sagemaker-train>=1.13.1",
"sagemaker-serve>=1.13.1",
"sagemaker-core>=2.14.0",
"sagemaker-train>=1.14.0",
"sagemaker-serve>=1.14.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.14.0 (2026-06-18)

### Bug Fixes

- fix: repair HuggingFace -> JumpStart redirect in ModelBuilder (#5958)

### Other

- chore: deprecate Python 3.9 support (#5941)

## v1.13.1 (2026-06-04)

### Features
Expand Down
2 changes: 1 addition & 1 deletion sagemaker-serve/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.13.1
1.14.0
4 changes: 2 additions & 2 deletions sagemaker-serve/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = [
"sagemaker-core>=2.13.1",
"sagemaker-train>=1.13.1",
"sagemaker-core>=2.14.0",
"sagemaker-train>=1.14.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.14.0 (2026-06-18)

### Bug Fixes

- fix: fall back to SageMakerPublicHub when model not found in private hub (#5959)
- fix: always use SageMakerPublicHub for base model ARN in evaluations (#5959)
- fix: fall back to subscription recipes for models without base recipes (#5946)

### Other

- chore: deprecate Python 3.9 support (#5941)

## v1.13.1 (2026-06-04)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion sagemaker-train/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.13.1
1.14.0
2 changes: 1 addition & 1 deletion sagemaker-train/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = [
"sagemaker-core>=2.13.1",
"sagemaker-core>=2.14.0",
"graphene>=3,<4",
"typing_extensions>=4.9.0",
"tblib>=1.7.0",
Expand Down
Loading