|
1 | 1 | # Changelog |
2 | 2 |
|
| 3 | +## v2.0.0.rc1 (2020-07-08) |
| 4 | + |
| 5 | +### Breaking Changes |
| 6 | + |
| 7 | + * Move StreamDeserializer to sagemaker.deserializers |
| 8 | + * Move StringDeserializer to sagemaker.deserializers |
| 9 | + * rename record_deserializer to RecordDeserializer |
| 10 | + * remove "train_" where redundant in parameter/variable names |
| 11 | + * Add BytesDeserializer |
| 12 | + * rename image to image_uri |
| 13 | + * rename image_name to image_uri |
| 14 | + * create new inference resources during model.deploy() and model.transformer() |
| 15 | + * rename session parameter to sagemaker_session in S3 utility classes |
| 16 | + * rename distributions to distribution in TF/MXNet estimators |
| 17 | + * deprecate update_endpoint arg in deploy() |
| 18 | + * create new inference resources during estimator.deploy() or estimator.transformer() |
| 19 | + * deprecate delete_endpoint() for estimators and HyperparameterTuner |
| 20 | + * refactor Predictor attribute endpoint to endpoint_name |
| 21 | + * make instance_type optional for Airflow model configs |
| 22 | + * refactor name of RealTimePredictor to Predictor |
| 23 | + * remove check for Python 2 string in sagemaker.predictor._is_sequence_like() |
| 24 | + * deprecate sagemaker.utils.to_str() |
| 25 | + * drop Python 2 support |
| 26 | + |
| 27 | +### Features |
| 28 | + |
| 29 | + * add BaseSerializer and BaseDeserializer |
| 30 | + * add Predictor.update_endpoint() |
| 31 | + |
| 32 | +### Bug Fixes and Other Changes |
| 33 | + |
| 34 | + * handle "train_*" renames in v2 migration tool |
| 35 | + * handle image_uri rename for Session methods in v2 migration tool |
| 36 | + * Update BytesDeserializer accept header |
| 37 | + * handle image_uri rename for estimators and models in v2 migration tool |
| 38 | + * handle image_uri rename in Airflow model config functions in v2 migration tool |
| 39 | + * update migration tool for S3 utility functions |
| 40 | + * set _current_job_name and base_tuning_job_name in HyperparameterTuner.attach() |
| 41 | + * infer base name from job name in estimator.attach() |
| 42 | + * ensure generated names are < 63 characters when deploying compiled models |
| 43 | + * add TF migration documentation to error message |
| 44 | + |
| 45 | +### Documentation Changes |
| 46 | + |
| 47 | + * update documentation with v2.0.0.rc1 changes |
| 48 | + * remove 'train_*' prefix from estimator parameters |
| 49 | + * update documentation for image_name/image --> image_uri |
| 50 | + |
| 51 | +### Testing and Release Infrastructure |
| 52 | + |
| 53 | + * refactor matching logic in v2 migration tool |
| 54 | + * add cli modifier for RealTimePredictor and derived classes |
| 55 | + * change coverage settings to reduce intermittent errors |
| 56 | + * clean up pickle.load logic in integ tests |
| 57 | + * use fixture for Python version in framework integ tests |
| 58 | + * remove assumption of Python 2 unit test runs |
| 59 | + |
| 60 | +## v1.68.0 (2020-07-07) |
| 61 | + |
| 62 | +### Features |
| 63 | + |
| 64 | + * add spot instance support for AlgorithmEstimator |
| 65 | + |
| 66 | +### Documentation Changes |
| 67 | + |
| 68 | + * add xgboost documentation for inference |
| 69 | + |
| 70 | +## v1.67.1.post0 (2020-07-01) |
| 71 | + |
| 72 | +### Documentation Changes |
| 73 | + |
| 74 | + * add Step Functions SDK info |
| 75 | + |
| 76 | +## v1.67.1 (2020-06-30) |
| 77 | + |
| 78 | +### Bug Fixes and Other Changes |
| 79 | + |
| 80 | + * add deprecation warnings for estimator.delete_endpoint() and tuner.delete_endpoint() |
| 81 | + |
| 82 | +## v1.67.0 (2020-06-29) |
| 83 | + |
| 84 | +### Features |
| 85 | + |
| 86 | + * Apache Airflow integration for SageMaker Processing Jobs |
| 87 | + |
| 88 | +### Bug Fixes and Other Changes |
| 89 | + |
| 90 | + * fix punctuation in warning message |
| 91 | + |
| 92 | +### Testing and Release Infrastructure |
| 93 | + |
| 94 | + * address warnings about pytest custom marks, error message checking, and yaml loading |
| 95 | + * mark long-running cron tests |
| 96 | + * fix tox test dependencies and bump coverage threshold to 86% |
| 97 | + |
| 98 | +## v1.66.0 (2020-06-25) |
| 99 | + |
| 100 | +### Features |
| 101 | + |
| 102 | + * add 3.8 as supported python version |
| 103 | + |
| 104 | +### Testing and Release Infrastructure |
| 105 | + |
| 106 | + * upgrade airflow to latest stable version |
| 107 | + * update feature request issue template |
| 108 | + |
| 109 | +## v1.65.1.post1 (2020-06-24) |
| 110 | + |
| 111 | +### Testing and Release Infrastructure |
| 112 | + |
| 113 | + * add py38 to buildspecs |
| 114 | + |
| 115 | +## v1.65.1.post0 (2020-06-22) |
| 116 | + |
| 117 | +### Documentation Changes |
| 118 | + |
| 119 | + * document that Local Mode + local code doesn't support dependencies arg |
| 120 | + |
| 121 | +### Testing and Release Infrastructure |
| 122 | + |
| 123 | + * upgrade Sphinx to 3.1.1 |
| 124 | + |
| 125 | +## v1.65.1 (2020-06-18) |
| 126 | + |
| 127 | +### Bug Fixes and Other Changes |
| 128 | + |
| 129 | + * remove include_package_data=True from setup.py |
| 130 | + |
| 131 | +### Documentation Changes |
| 132 | + |
| 133 | + * add some clarification to Processing docs |
| 134 | + |
| 135 | +### Testing and Release Infrastructure |
| 136 | + |
| 137 | + * specify what kinds of clients in PR template |
| 138 | + |
| 139 | +## v1.65.0 (2020-06-17) |
| 140 | + |
| 141 | +### Features |
| 142 | + |
| 143 | + * support for describing hyperparameter tuning job |
| 144 | + |
| 145 | +### Bug Fixes and Other Changes |
| 146 | + |
| 147 | + * update distributed GPU utilization warning message |
| 148 | + * set logs to False if wait is False in AutoML |
| 149 | + * workflow passing spot training param to training job |
| 150 | + |
| 151 | +## v2.0.0.rc0 (2020-06-17) |
| 152 | + |
| 153 | +### Breaking Changes |
| 154 | + |
| 155 | + * remove estimator parameters for TF legacy mode |
| 156 | + * remove legacy `TensorFlowModel` and `TensorFlowPredictor` classes |
| 157 | + * force image URI to be passed for legacy TF images |
| 158 | + * rename `sagemaker.tensorflow.serving` to `sagemaker.tensorflow.model` |
| 159 | + * require `framework_version` and `py_version` for framework estimator and model classes |
| 160 | + * change `Model` parameter order to make `model_data` optional |
| 161 | + |
| 162 | +### Bug Fixes and Other Changes |
| 163 | + |
| 164 | + * add v2 migration tool |
| 165 | + |
| 166 | +### Documentation Changes |
| 167 | + |
| 168 | + * update TF documentation to reflect breaking changes and how to upgrade |
| 169 | + * start v2 usage and migration documentation |
| 170 | + |
| 171 | +### Testing and Release Infrastructure |
| 172 | + |
| 173 | + * remove scipy from dependencies |
| 174 | + * remove TF from optional dependencies |
| 175 | + |
| 176 | +## v1.64.1 (2020-06-16) |
| 177 | + |
| 178 | +### Bug Fixes and Other Changes |
| 179 | + |
| 180 | + * include py38 tox env and some dependency upgrades |
| 181 | + |
| 182 | +## v1.64.0 (2020-06-15) |
| 183 | + |
| 184 | +### Features |
| 185 | + |
| 186 | + * add support for SKLearn 0.23 |
| 187 | + |
| 188 | +## v1.63.0 (2020-06-12) |
| 189 | + |
| 190 | +### Features |
| 191 | + |
| 192 | + * Allow selecting inference response content for automl generated models |
| 193 | + * Support for multi variant endpoint invocation with target variant param |
| 194 | + |
| 195 | +### Documentation Changes |
| 196 | + |
| 197 | + * improve docstring and remove unavailable links |
| 198 | + |
| 199 | +## v1.62.0 (2020-06-11) |
| 200 | + |
| 201 | +### Features |
| 202 | + |
| 203 | + * Support for multi variant endpoint invocation with target variant param |
| 204 | + |
| 205 | +### Bug Fixes and Other Changes |
| 206 | + |
| 207 | + * Revert "feature: Support for multi variant endpoint invocation with target variant param (#1571)" |
| 208 | + * make instance_type optional for prepare_container_def |
| 209 | + * docs: workflows navigation |
| 210 | + |
| 211 | +### Documentation Changes |
| 212 | + |
| 213 | + * fix typo in MXNet documentation |
| 214 | + |
| 215 | +## v1.61.0 (2020-06-09) |
| 216 | + |
| 217 | +### Features |
| 218 | + |
| 219 | + * Use boto3 DEFAULT_SESSION when no boto3 session specified. |
| 220 | + |
| 221 | +### Bug Fixes and Other Changes |
| 222 | + |
| 223 | + * remove v2 Session warnings |
| 224 | + * upgrade smdebug-rulesconfig to 0.1.4 |
| 225 | + * explicitly handle arguments in create_model for sklearn and xgboost |
| 226 | + |
3 | 227 | ## v1.60.2 (2020-05-29) |
4 | 228 |
|
5 | 229 | ### Bug Fixes and Other Changes |
|
0 commit comments