|
74 | 74 |
|
75 | 75 | * add KFP Processing component
|
76 | 76 |
|
| 77 | +## v2.0.0.rc1 (2020-07-08) |
| 78 | + |
| 79 | +### Breaking Changes |
| 80 | + |
| 81 | + * Move StreamDeserializer to sagemaker.deserializers |
| 82 | + * Move StringDeserializer to sagemaker.deserializers |
| 83 | + * rename record_deserializer to RecordDeserializer |
| 84 | + * remove "train_" where redundant in parameter/variable names |
| 85 | + * Add BytesDeserializer |
| 86 | + * rename image to image_uri |
| 87 | + * rename image_name to image_uri |
| 88 | + * create new inference resources during model.deploy() and model.transformer() |
| 89 | + * rename session parameter to sagemaker_session in S3 utility classes |
| 90 | + * rename distributions to distribution in TF/MXNet estimators |
| 91 | + * deprecate update_endpoint arg in deploy() |
| 92 | + * create new inference resources during estimator.deploy() or estimator.transformer() |
| 93 | + * deprecate delete_endpoint() for estimators and HyperparameterTuner |
| 94 | + * refactor Predictor attribute endpoint to endpoint_name |
| 95 | + * make instance_type optional for Airflow model configs |
| 96 | + * refactor name of RealTimePredictor to Predictor |
| 97 | + * remove check for Python 2 string in sagemaker.predictor._is_sequence_like() |
| 98 | + * deprecate sagemaker.utils.to_str() |
| 99 | + * drop Python 2 support |
| 100 | + |
| 101 | +### Features |
| 102 | + |
| 103 | + * add BaseSerializer and BaseDeserializer |
| 104 | + * add Predictor.update_endpoint() |
| 105 | + |
| 106 | +### Bug Fixes and Other Changes |
| 107 | + |
| 108 | + * handle "train_*" renames in v2 migration tool |
| 109 | + * handle image_uri rename for Session methods in v2 migration tool |
| 110 | + * Update BytesDeserializer accept header |
| 111 | + * handle image_uri rename for estimators and models in v2 migration tool |
| 112 | + * handle image_uri rename in Airflow model config functions in v2 migration tool |
| 113 | + * update migration tool for S3 utility functions |
| 114 | + * set _current_job_name and base_tuning_job_name in HyperparameterTuner.attach() |
| 115 | + * infer base name from job name in estimator.attach() |
| 116 | + * ensure generated names are < 63 characters when deploying compiled models |
| 117 | + * add TF migration documentation to error message |
| 118 | + |
| 119 | +### Documentation Changes |
| 120 | + |
| 121 | + * update documentation with v2.0.0.rc1 changes |
| 122 | + * remove 'train_*' prefix from estimator parameters |
| 123 | + * update documentation for image_name/image --> image_uri |
| 124 | + |
| 125 | +### Testing and Release Infrastructure |
| 126 | + |
| 127 | + * refactor matching logic in v2 migration tool |
| 128 | + * add cli modifier for RealTimePredictor and derived classes |
| 129 | + * change coverage settings to reduce intermittent errors |
| 130 | + * clean up pickle.load logic in integ tests |
| 131 | + * use fixture for Python version in framework integ tests |
| 132 | + * remove assumption of Python 2 unit test runs |
| 133 | + |
77 | 134 | ## v1.68.0 (2020-07-07)
|
78 | 135 |
|
79 | 136 | ### Features
|
|
165 | 222 | * set logs to False if wait is False in AutoML
|
166 | 223 | * workflow passing spot training param to training job
|
167 | 224 |
|
| 225 | +## v2.0.0.rc0 (2020-06-17) |
| 226 | + |
| 227 | +### Breaking Changes |
| 228 | + |
| 229 | + * remove estimator parameters for TF legacy mode |
| 230 | + * remove legacy `TensorFlowModel` and `TensorFlowPredictor` classes |
| 231 | + * force image URI to be passed for legacy TF images |
| 232 | + * rename `sagemaker.tensorflow.serving` to `sagemaker.tensorflow.model` |
| 233 | + * require `framework_version` and `py_version` for framework estimator and model classes |
| 234 | + * change `Model` parameter order to make `model_data` optional |
| 235 | + |
| 236 | +### Bug Fixes and Other Changes |
| 237 | + |
| 238 | + * add v2 migration tool |
| 239 | + |
| 240 | +### Documentation Changes |
| 241 | + |
| 242 | + * update TF documentation to reflect breaking changes and how to upgrade |
| 243 | + * start v2 usage and migration documentation |
| 244 | + |
| 245 | +### Testing and Release Infrastructure |
| 246 | + |
| 247 | + * remove scipy from dependencies |
| 248 | + * remove TF from optional dependencies |
| 249 | + |
168 | 250 | ## v1.64.1 (2020-06-16)
|
169 | 251 |
|
170 | 252 | ### Bug Fixes and Other Changes
|
|
0 commit comments