Skip to content

Commit

Permalink
chore(components): GCPC 2.17.0 Release
Browse files Browse the repository at this point in the history
Signed-off-by: Googler <[email protected]>
PiperOrigin-RevId: 675267134
  • Loading branch information
Googler committed Sep 16, 2024
1 parent b3e75cf commit 581b7e5
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 8 deletions.
2 changes: 1 addition & 1 deletion components/google-cloud/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ RUN pip3 install -U "fsspec>=0.7.4" "gcsfs>=0.6.0" "pandas<=1.3.5" "scikit-learn
RUN pip3 install -U google-cloud-notebooks

# Install main package
RUN pip3 install "git+https://github.com/kubeflow/pipelines.git@google-cloud-pipeline-components-2.16.1#egg=google-cloud-pipeline-components&subdirectory=components/google-cloud"
RUN pip3 install "git+https://github.com/kubeflow/pipelines.git@google-cloud-pipeline-components-2.17.0#egg=google-cloud-pipeline-components&subdirectory=components/google-cloud"

# Note that components can override the container entry ponint.
ENTRYPOINT ["python3","-m","google_cloud_pipeline_components.container.v1.aiplatform.remote_runner"]
8 changes: 8 additions & 0 deletions components/google-cloud/RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
## Upcoming release

## Release 2.17.0
* Fix Gemini batch prediction support to `v1.model_evaluation.autosxs_pipeline` after output schema change.
* Modify the code to support latest bp result format
* Update the StarryNet package metadata.
* Use instance.target_field_name format for text-bison models only, use target_field_name for gemini models.
* Pass model name to eval_runner to process batch prediction's output as per the output schema of model used.
* Use LLM Model Evaluation image version v0.7
* Update AutoSxS and RLHF image tags

## Release 2.16.1
* Fix to model batch explanation component for Structured Data pipelines; image bump.
Expand Down
11 changes: 8 additions & 3 deletions components/google-cloud/docs/source/versions.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
[
{
"version": "https://google-cloud-pipeline-components.readthedocs.io/en/google-cloud-pipeline-components-2.16.1",
"title": "2.16.1",
"aliases": []
"version": "https://google-cloud-pipeline-components.readthedocs.io/en/google-cloud-pipeline-components-2.17.0",
"title": "2.17.0",
"aliases": []
},
{
"version": "https://google-cloud-pipeline-components.readthedocs.io/en/google-cloud-pipeline-components-2.16.1",
"title": "2.16.1",
"aliases": []
},
{
"version": "https://google-cloud-pipeline-components.readthedocs.io/en/google-cloud-pipeline-components-2.16.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
if sys.version_info < (3, 9):
warnings.warn(
(
' Google Cloud Pipeline Components will drop support for Python 3.9'
' on Oct 1, 2025. To use new versions of the GCPC SDK after that'
' date, you will need to upgrade to Python >= 3.10. See'
' Google Cloud Pipeline Components will drop support for Python 3.8'
' on Oct 1, 2024. To use new versions of the GCPC SDK after that'
' date, you will need to upgrade to Python >= 3.9. See'
' https://devguide.python.org/versions/ for more details.'
),
FutureWarning,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# limitations under the License.
"""Google Cloud Pipeline Components version."""

__version__ = "2.16.1"
__version__ = "2.17.0"

0 comments on commit 581b7e5

Please sign in to comment.