Skip to content

Commit 0976df1

Browse files
authored
chore: Updated changelog, version and pyproject.toml for release (#5706)
1 parent f0a4618 commit 0976df1

File tree

14 files changed

+68
-15
lines changed

14 files changed

+68
-15
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
# 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+
211
## v3.7.0 (2026-03-25)
312

413
### Fixes

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.7.0
1+
3.7.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.7.0,<3.0.0",
37-
"sagemaker-train>=1.7.0,<2.0.0",
38-
"sagemaker-serve>=1.7.0,<2.0.0",
39-
"sagemaker-mlops>=1.7.0,<2.0.0",
36+
"sagemaker-core>=2.7.1,<3.0.0",
37+
"sagemaker-train>=1.7.1,<2.0.0",
38+
"sagemaker-serve>=1.7.1,<2.0.0",
39+
"sagemaker-mlops>=1.7.1,<2.0.0",
4040
]
4141

4242
[project.optional-dependencies]

sagemaker-core/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
# 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+
213
## v2.7.0 (2026-03-25)
314

415
### Bug fixes and Other Changes

sagemaker-core/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.0
1+
2.7.1

sagemaker-mlops/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
# Changelog
2+
## v1.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+
213
## v1.7.0 (2026-03-25)
314

415
- Update module dependencies

sagemaker-mlops/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.7.0
1+
1.7.1

sagemaker-mlops/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ classifiers = [
2323
"Programming Language :: Python :: 3.12",
2424
]
2525
dependencies = [
26-
"sagemaker-core>=2.7.0",
27-
"sagemaker-train>=1.7.0",
28-
"sagemaker-serve>=1.7.0",
26+
"sagemaker-core>=2.7.1",
27+
"sagemaker-train>=1.7.1",
28+
"sagemaker-serve>=1.7.1",
2929
"boto3>=1.42.2,<2.0",
3030
"botocore>=1.42.2,<2.0",
3131
]

sagemaker-serve/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
# Changelog
2+
## v1.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+
213
## v1.7.0 (2026-03-25)
314

415
### Bug fixes and Other Changes

sagemaker-serve/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.7.0
1+
1.7.1

0 commit comments

Comments
 (0)