Skip to content

Commit

Permalink
Merge branch 'main' into protobuf_val
Browse files Browse the repository at this point in the history
  • Loading branch information
ji-yaqi committed Nov 8, 2021
2 parents fb8421c + 8d04138 commit 776be55
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 2 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,26 @@
# Changelog

## [1.7.0](https://www.github.com/googleapis/python-aiplatform/compare/v1.6.2...v1.7.0) (2021-11-06)


### Features

* Adds support for `google.protobuf.Value` pipeline parameters in the `parameter_values` field ([#807](https://www.github.com/googleapis/python-aiplatform/issues/807)) ([c97199d](https://www.github.com/googleapis/python-aiplatform/commit/c97199dd2cb712ef436ee9cbf6b8add27b42b174))
* Adds support for `google.protobuf.Value` pipeline parameters in the `parameter_values` field ([#808](https://www.github.com/googleapis/python-aiplatform/issues/808)) ([726b620](https://www.github.com/googleapis/python-aiplatform/commit/726b620bea1223c80225c9a3c2b54342e9c14052))
* PipelineJob switch to v1 API from v1beta1 API ([#750](https://www.github.com/googleapis/python-aiplatform/issues/750)) ([8db7e0c](https://www.github.com/googleapis/python-aiplatform/commit/8db7e0ca4e796fea47c1bdf4c0fccd514f2dd8c2))


### Bug Fixes

* Correct PipelineJob credentials description ([#816](https://www.github.com/googleapis/python-aiplatform/issues/816)) ([49aaa87](https://www.github.com/googleapis/python-aiplatform/commit/49aaa8719a3daabf7e0d23fa1cd1d64c19159a83))
* Fixed docstrings for Dataset in AutoMLForecastingTrainingJob ([760887b](https://www.github.com/googleapis/python-aiplatform/commit/760887b196884707473896def9e8b69c9fc77423))


### Documentation

* Fix pydocs README to be consistent with repo README ([#821](https://www.github.com/googleapis/python-aiplatform/issues/821)) ([95dbd60](https://www.github.com/googleapis/python-aiplatform/commit/95dbd6020ee8f3037b0834eb39312b5d7e5fd8e1))
* Update sample with feedback from b/191251050 ([#818](https://www.github.com/googleapis/python-aiplatform/issues/818)) ([6b2d938](https://www.github.com/googleapis/python-aiplatform/commit/6b2d93834734b6789c13ef3782b1b3632f5c6133))

### [1.6.2](https://www.github.com/googleapis/python-aiplatform/compare/v1.6.1...v1.6.2) (2021-11-01)


Expand Down
4 changes: 4 additions & 0 deletions google/cloud/aiplatform/constants.py
Expand Up @@ -18,18 +18,22 @@
DEFAULT_REGION = "us-central1"
SUPPORTED_REGIONS = {
"asia-east1",
"asia-east2",
"asia-northeast1",
"asia-northeast3",
"asia-south1",
"asia-southeast1",
"australia-southeast1",
"europe-west1",
"europe-west2",
"europe-west3",
"europe-west4",
"northamerica-northeast1",
"us-central1",
"us-east1",
"us-east4",
"us-west1",
"us-west2",
}

API_BASE_PATH = "aiplatform.googleapis.com"
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/aiplatform/version.py
Expand Up @@ -15,4 +15,4 @@
# limitations under the License.
#

__version__ = "1.6.2"
__version__ = "1.7.0"
4 changes: 3 additions & 1 deletion tests/unit/aiplatform/test_utils.py
Expand Up @@ -375,7 +375,8 @@ class TestPipelineUtils:
"list_param": {"type": "STRING"},
}
}
}
},
"schemaVersion":"2.0.0",
},
"runtimeConfig": {
"gcsOutputDirectory": "path/to/my/root",
Expand All @@ -390,6 +391,7 @@ class TestPipelineUtils:
def test_pipeline_utils_runtime_config_builder_from_values(self):
my_builder = pipeline_utils.PipelineRuntimeConfigBuilder(
pipeline_root="path/to/my/root",
schema_version="2.0.0",
parameter_types={
"string_param": "STRING",
"int_param": "INT",
Expand Down

0 comments on commit 776be55

Please sign in to comment.