diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f957f09..f51d02f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## v3.8.0 (2026-04-16) + +### Features +- Add Recipe Job Init Experience: `hyp init hyp-recipe-job` command for launching HyperPod recipe jobs (#409) +- Introduce `replica_count` parameter for training jobs; deprecate `node_count` in favor of `replica_count` (#401) + +### Bug Fixes +- Exclude `DELETE_COMPLETE` stacks at API level to prevent `ListStacks` throttling (#410) +- Fix `ml.` prefix and wrong MIG profiles for `p6-b200.48xlarge` (#399) +- Fix namespaced-role-and-bindings helm chart bugs (#406) + +### Health Monitoring Agent +- Release Health Monitoring Agent 1.0.1481.0_1.0.392.0 with bug fixes (#405) + ## v3.7.1 (2026-04-08) ### New Instance Type Support diff --git a/hyperpod-pytorch-job-template/CHANGELOG.md b/hyperpod-pytorch-job-template/CHANGELOG.md index fa7ae2c2..df6ea836 100644 --- a/hyperpod-pytorch-job-template/CHANGELOG.md +++ b/hyperpod-pytorch-job-template/CHANGELOG.md @@ -1,3 +1,8 @@ +## v1.5.0 (2026-04-16) + +### Features +- Introduce `replica_count` field for training jobs; deprecate `node_count` and `max_node_count` in favor of `replica_count` and `max_replica_count` (#401) + ## v1.4.1 (2026-04-08) ### Bug Fixes diff --git a/hyperpod-pytorch-job-template/pyproject.toml b/hyperpod-pytorch-job-template/pyproject.toml index ec08bca3..b70306d1 100644 --- a/hyperpod-pytorch-job-template/pyproject.toml +++ b/hyperpod-pytorch-job-template/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "hyperpod-pytorch-job-template" -version = "1.4.1" +version = "1.5.0" readme = "README.md" authors = [{name = "Amazon Web Services"}] license = {text = "Apache-2.0"} diff --git a/pyproject.toml b/pyproject.toml index 0be506d6..4724d3e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] dynamic = ["dependencies"] name = "sagemaker-hyperpod" -version = "3.7.1" +version = "3.8.0" description = "Amazon SageMaker HyperPod SDK and CLI" readme = "README.md" requires-python = ">=3.8" diff --git a/setup.py b/setup.py index db084f35..88a98508 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ setup( data_files=sagemaker_hyperpod_recipes, name="sagemaker-hyperpod", - version="3.7.1", + version="3.8.0", description="Amazon SageMaker HyperPod SDK and CLI", long_description=open("README.md").read(), long_description_content_type="text/markdown",