Release 2026-08-19 - #69
Open
amazeAmazing wants to merge 2 commits into
Open
Conversation
amazeAmazing
force-pushed
the
2026-08-19
branch
from
August 19, 2026 18:29
42aefab to
2c76075
Compare
- Mark amzn-nova-forge deprecated (pyproject classifier + import-time DeprecationWarning) pointing to sagemaker>=3.19.0; bump to 1.4.142 - Scope SMTJ/Bedrock/Glue and iam:GetRole/PassRole permissions to account- and region-specific ARNs instead of wildcard '*' - Extract get_caller_account_id into util/aws_utils.py and reuse across runtime managers - Validator raises ValueError with a skip-IAM hint when a resource lambda cannot be evaluated (infra is None) - Add unit tests for aws_utils and lambda resource specs Update README and docs/spec + docs/user-guides accordingly.
amazeAmazing
force-pushed
the
2026-08-19
branch
from
August 19, 2026 18:53
2c76075 to
ca19887
Compare
cmahima
previously approved these changes
Aug 19, 2026
eliseharvey
reviewed
Aug 19, 2026
|
|
||
| ### RFT Multiturn Module | ||
| Manages infrastructure for reinforcement fine-tuning with multi-turn conversational tasks. | ||
| evaluator.stream_logs() |
There was a problem hiding this comment.
nit: evaluator is not defined above. not a huge issue since this is a readme change, but other constructs do have some reference included?
edit: it is actually defined lower, is it worth adding above here? or adding a note?
Contributor
Author
There was a problem hiding this comment.
Removed the reference since it's not defined, as the comment already calls out that it can be used on the evaluator
eliseharvey
reviewed
Aug 19, 2026
| ``` | ||
|
|
||
| ### 9. Validation | ||
| ## What's Different (Summary) |
There was a problem hiding this comment.
nit: is it worth adding this at the top?
Contributor
Author
There was a problem hiding this comment.
Moved to the top!
eliseharvey
previously approved these changes
Aug 19, 2026
eliseharvey
previously approved these changes
Aug 19, 2026
…evaluator ref - Move 'What's Different (Summary)' to the top of the migration guide (right after 'Why Migrate'), removing the duplicate at the end - Trim the log-streaming snippet to trainer.stream_logs() so no undefined 'evaluator' is referenced
amazeAmazing
force-pushed
the
2026-08-19
branch
from
August 19, 2026 20:28
6f08ebc to
a2b81ff
Compare
cmahima
approved these changes
Aug 19, 2026
eliseharvey
approved these changes
Aug 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
amzn-nova-forgedeprecated:pyprojectclassifier + import-timeDeprecationWarningpointing tosagemaker>=3.19.0; bump version to 1.4.10.iam:GetRole/iam:PassRolepermissions to account- and region-specific ARNs instead of wildcard*.get_caller_account_idintoutil/aws_utils.pyand reuse it across the runtime managers.Validatornow raisesValueErrorwith a skip-IAM hint (validation_config={'iam': False}) when a resource lambda cannot be evaluated because the runtime manager isNone.README.mdinto a migration guide to the SageMaker Python SDK V3.Testing
pip install -e .succeeds.python -m pytest tests/unit→ 3157 passed, 36 subtests passed, 0 failures.Release notes — amzn-nova-forge 1.4.10
Enhancements
Security / IAM
*— e.g.sagemaker:CreateTrainingJob,bedrock:*ModelCustomizationJob,glue:*Job*, andiam:GetRole/iam:PassRolenow targetarn:aws:...:<account>:<region>:...resources for least-privilege access.Documentation
Bug Fixes
ValueErrorwhen a resource ARN cannot be evaluated (runtime manager isNone), with guidance to skip IAM checks viavalidation_config={'iam': False}, instead of silently recording an error and continuing.