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
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
# Changelog
## v3.10.0 (2026-05-01)

### New Features
- Make _PipelineExecution a public class
- Add CodeArtifact support for ModelTrainer and FrameworkProcessor requirements.txt installation

### Bug Fixes
- Fix S3 bucket operations
- Fix potential S3 path traversal
- Wire FrameworkProcessor code_location into code upload paths
- Improve subprocess exception handling in git_utils

### Other
- Update service-2.json with latest public botocore service model

## v3.9.0 (2026-04-23)

### New Features
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.9.0
3.10.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.9.0,<3.0.0",
"sagemaker-train>=1.9.0,<2.0.0",
"sagemaker-serve>=1.9.0,<2.0.0",
"sagemaker-mlops>=1.9.0,<2.0.0",
"sagemaker-core>=2.10.0,<3.0.0",
"sagemaker-train>=1.10.0,<2.0.0",
"sagemaker-serve>=1.10.0,<2.0.0",
"sagemaker-mlops>=1.10.0,<2.0.0",
]

[project.optional-dependencies]
Expand Down
17 changes: 17 additions & 0 deletions sagemaker-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
# Changelog
## v2.10.0 (2026-05-01)

### New Features

- Add CodeArtifact support for ModelTrainer and FrameworkProcessor requirements.txt installation

### Bug Fixes

- Fix S3 bucket operations
- Fix potential S3 path traversal
- Wire FrameworkProcessor code_location into code upload paths
- Improve subprocess exception handling in git_utils

### Other

- Update service-2.json with latest public botocore service model

## v2.9.0 (2026-04-23)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion sagemaker-core/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.9.0
2.10.0
10 changes: 10 additions & 0 deletions sagemaker-mlops/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# Changelog
## v1.10.0 (2026-05-01)

### New Features

- Make _PipelineExecution a public class

### Other

- Update service-2.json with latest public botocore service model

## v1.9.0 (2026-04-23)

- 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.9.0
1.10.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.9.0",
"sagemaker-train>=1.9.0",
"sagemaker-serve>=1.9.0",
"sagemaker-core>=2.10.0",
"sagemaker-train>=1.10.0",
"sagemaker-serve>=1.10.0",
"boto3>=1.42.2,<2.0",
"botocore>=1.42.2,<2.0",
"pyiceberg[glue]>=0.8.0",
Expand Down
6 changes: 6 additions & 0 deletions sagemaker-serve/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Changelog
## v1.10.0 (2026-05-01)

### Bug Fixes

- Fix potential S3 path traversal

## v1.9.0 (2026-04-23)

### 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.9.0
1.10.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.9.0",
"sagemaker-train>=1.9.0",
"sagemaker-core>=2.10.0",
"sagemaker-train>=1.10.0",
"boto3>=1.42.2,<2.0",
"botocore>=1.35.75,<2.0",
"deepdiff",
Expand Down
14 changes: 14 additions & 0 deletions sagemaker-train/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
# Changelog
## v1.10.0 (2026-05-01)

### New Features

- Add CodeArtifact support for ModelTrainer and FrameworkProcessor requirements.txt installation

### Bug Fixes

- Fix failing train tests for v3

### Other

- Update service-2.json with latest public botocore service model

## v1.9.0 (2026-04-23)

### New Features
Expand Down
2 changes: 1 addition & 1 deletion sagemaker-train/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.9.0
1.10.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.9.0",
"sagemaker-core>=2.10.0",
"graphene>=3,<4",
"typing_extensions>=4.9.0",
"tblib>=1.7.0",
Expand Down
Loading