Skip to content

Commit a245d45

Browse files
authored
Merge branch 'master' into framework-versioning
2 parents 1b0ecee + 64a91ce commit a245d45

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## v2.25.2 (2021-02-25)
4+
5+
### Bug Fixes and Other Changes
6+
7+
* Use the output path to store the Clarify config file
8+
* feature group should ignore nan values
9+
* ignore failing smdataparallel test
10+
* Add tests for Training job & Transform job in visualizer
11+
* visualizer for pipeline processing job steps
12+
13+
### Documentation Changes
14+
15+
* update doc for Elastic Inference MXNet 1.7.0
16+
317
## v2.25.1 (2021-02-20)
418

519
### Bug Fixes and Other Changes

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.25.2.dev0
1+
2.25.3.dev0

src/sagemaker/lineage/action.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def create(
186186
return super(Action, cls)._construct(
187187
cls._boto_create_method,
188188
action_name=action_name,
189-
source=_api_types.ContextSource(source_uri=source_uri, source_type=source_type),
189+
source=_api_types.ActionSource(source_uri=source_uri, source_type=source_type),
190190
action_type=action_type,
191191
description=description,
192192
status=status,

src/sagemaker/lineage/artifact.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def create(
258258
return super(Artifact, cls)._construct(
259259
cls._boto_create_method,
260260
artifact_name=artifact_name,
261-
source=_api_types.ContextSource(source_uri=source_uri, source_types=source_types),
261+
source=_api_types.ArtifactSource(source_uri=source_uri, source_types=source_types),
262262
artifact_type=artifact_type,
263263
properties=properties,
264264
tags=tags,

0 commit comments

Comments
 (0)