Skip to content

Commit 776be55

Browse files
committed
Merge branch 'main' into protobuf_val
2 parents fb8421c + 8d04138 commit 776be55

File tree

4 files changed

+29
-2
lines changed

4 files changed

+29
-2
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## [1.7.0](https://www.github.com/googleapis/python-aiplatform/compare/v1.6.2...v1.7.0) (2021-11-06)
4+
5+
6+
### Features
7+
8+
* 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))
9+
* 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))
10+
* 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))
11+
12+
13+
### Bug Fixes
14+
15+
* Correct PipelineJob credentials description ([#816](https://www.github.com/googleapis/python-aiplatform/issues/816)) ([49aaa87](https://www.github.com/googleapis/python-aiplatform/commit/49aaa8719a3daabf7e0d23fa1cd1d64c19159a83))
16+
* Fixed docstrings for Dataset in AutoMLForecastingTrainingJob ([760887b](https://www.github.com/googleapis/python-aiplatform/commit/760887b196884707473896def9e8b69c9fc77423))
17+
18+
19+
### Documentation
20+
21+
* 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))
22+
* 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))
23+
324
### [1.6.2](https://www.github.com/googleapis/python-aiplatform/compare/v1.6.1...v1.6.2) (2021-11-01)
425

526

google/cloud/aiplatform/constants.py

+4
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,22 @@
1818
DEFAULT_REGION = "us-central1"
1919
SUPPORTED_REGIONS = {
2020
"asia-east1",
21+
"asia-east2",
2122
"asia-northeast1",
2223
"asia-northeast3",
24+
"asia-south1",
2325
"asia-southeast1",
2426
"australia-southeast1",
2527
"europe-west1",
2628
"europe-west2",
29+
"europe-west3",
2730
"europe-west4",
2831
"northamerica-northeast1",
2932
"us-central1",
3033
"us-east1",
3134
"us-east4",
3235
"us-west1",
36+
"us-west2",
3337
}
3438

3539
API_BASE_PATH = "aiplatform.googleapis.com"

google/cloud/aiplatform/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
# limitations under the License.
1616
#
1717

18-
__version__ = "1.6.2"
18+
__version__ = "1.7.0"

tests/unit/aiplatform/test_utils.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,8 @@ class TestPipelineUtils:
375375
"list_param": {"type": "STRING"},
376376
}
377377
}
378-
}
378+
},
379+
"schemaVersion":"2.0.0",
379380
},
380381
"runtimeConfig": {
381382
"gcsOutputDirectory": "path/to/my/root",
@@ -390,6 +391,7 @@ class TestPipelineUtils:
390391
def test_pipeline_utils_runtime_config_builder_from_values(self):
391392
my_builder = pipeline_utils.PipelineRuntimeConfigBuilder(
392393
pipeline_root="path/to/my/root",
394+
schema_version="2.0.0",
393395
parameter_types={
394396
"string_param": "STRING",
395397
"int_param": "INT",

0 commit comments

Comments
 (0)