You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+38Lines changed: 38 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,42 @@
1
1
# Changelog
2
+
## v3.7.1 (2026-03-31)
3
+
4
+
### Features
5
+
-**Telemetry**: Added telemetry emitter to `ScriptProcessor` and `FrameworkProcessor`, enabling SDK usage tracking for processing jobs via the telemetry attribution module (new `PROCESSING` feature enum added to telemetry constants)
6
+
7
+
### Fixes
8
+
-**ModelBuilder**: Fixed `accept_eula` handling in ModelBuilder's LoRA deployment path — previously hardcoded to `True`, now respects the user-provided value and raises a `ValueError` if not explicitly set to `True`
9
+
-**Evaluate**: Fixed Lambda handler name derivation in the Evaluator — hardcoded the handler to `lambda_function.lambda_handler` instead of deriving it from the source filename, which caused invocation failures when the source file had a non-default name
10
+
11
+
## v3.7.0 (2026-03-25)
12
+
13
+
### Fixes
14
+
-**ModelBuilder**: Sync Nova hosting configs with AGISageMakerInference (#5664)
15
+
-**Evaluate**: Remove GPT OSS model evaluation restriction (#5658)
16
+
17
+
### Features
18
+
-**AWS Batch**: Add support for Quota Management job submission and job priority update (#5659)
19
+
-**AWS Batch**: Extend list_jobs_by_share for quota_share_name (#5669)
20
+
-**Evaluate**: Support IAM role for BaseEvaluator (#5671)
21
+
-**Telemetry**: Add telemetry attribution module for SDK usage provenance (#5661)
Copy file name to clipboardExpand all lines: migration.md
+20-24Lines changed: 20 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@
25
25
26
26
## Migration Tool (MCP Server)
27
27
28
-
An AI-powered migration tool is available as an MCP server that can analyze your V2 code, transform it to V3, validate the results, and answer migration questions interactively through your IDE.
28
+
This AI-powered migration tool is available as an MCP server to analyze your V2 code, transform it to V3, validate the results, and answer migration questions interactively through your IDE.
29
29
30
30
### Installation
31
31
@@ -61,32 +61,22 @@ Add the following to your MCP configuration file:
61
61
{
62
62
"mcpServers": {
63
63
"sagemaker-sdk-helper": {
64
-
"command": "sagemaker-sdk-helper",
65
-
"args": ["--log-level", "INFO"]
64
+
"command": "/path/to/installation",
65
+
"args": ["--log-level", "INFO"],
66
+
"autoApprove": [
67
+
"ask_question",
68
+
"transform_code",
69
+
"validate_code",
70
+
"analyze_code"
71
+
]
72
+
}
66
73
}
67
-
}
68
74
}
75
+
69
76
```
70
77
71
78
> **Note**: If you installed in a virtual environment, use the full path to the executable (find it with `which sagemaker-sdk-helper`).
Copy file name to clipboardExpand all lines: sagemaker-core/CHANGELOG.md
+26Lines changed: 26 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,30 @@
1
1
# Changelog
2
+
## v2.7.1 (2026-03-31)
3
+
4
+
### Features
5
+
6
+
-**Telemetry**: Added telemetry emitter to `ScriptProcessor` and `FrameworkProcessor`, enabling SDK usage tracking for processing jobs via the telemetry attribution module (new `PROCESSING` feature enum added to telemetry constants)
7
+
8
+
### Bug Fixes
9
+
10
+
-**ModelBuilder**: Fixed `accept_eula` handling in ModelBuilder's LoRA deployment path — previously hardcoded to `True`, now respects the user-provided value and raises a `ValueError` if not explicitly set to `True`
11
+
-**Evaluate**: Fixed Lambda handler name derivation in the Evaluator — hardcoded the handler to `lambda_function.lambda_handler` instead of deriving it from the source filename, which caused invocation failures when the source file had a non-default name
12
+
13
+
## v2.7.0 (2026-03-25)
14
+
15
+
### Bug fixes and Other Changes
16
+
17
+
-**Enhancement**: Add telemetry attribution module for SDK usage provenance (#5661)
18
+
-**Enhancement**: Updated SDK to use latest LMIv22 image for v3.x (#5640)
19
+
-**Enhancement**: Resources codegen update for eval job links (#5662)
20
+
21
+
## v2.6.0 (2026-03-19)
22
+
23
+
### Bug fixes and Other Changes
24
+
25
+
-**Fix**: resolve PermissionError during local mode cleanup of root-owned Docker files (#5629)
26
+
-**Enhancement**: Add EUSC region config for JumpStart
0 commit comments