From f76cad72da11c192ff33da6d0efe4e9a516fa220 Mon Sep 17 00:00:00 2001 From: lrudenka Date: Wed, 27 Sep 2023 15:41:12 -0500 Subject: [PATCH] ODSC-47991. ADS release 2.8.10 --- .gitleaks.toml | 1 + docs/source/release_notes.rst | 12 ++++++++++++ pyproject.toml | 4 ++-- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/.gitleaks.toml b/.gitleaks.toml index f6dee79c4..ea1e8863d 100644 --- a/.gitleaks.toml +++ b/.gitleaks.toml @@ -13,6 +13,7 @@ useDefault = true '''example-password''', '''this-is-not-the-secret''', '''''', + '''security_token''', # NVIDIA_GPGKEY_SUM from public documentation: # https://gitlab.com/nvidia/container-images/cuda/-/blob/master/dist/10.1/centos7/base/Dockerfile '''d0664fbbdb8c32356d45de36c5984617217b2d0bef41b93ccecd326ba3b80c87''' diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 04e1b9465..70ef1ba61 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -2,12 +2,24 @@ Release Notes ============= +2.8.10 +------ +Release date: September 27, 2023 + +* Improved the ``LargeArtifactUploader`` class to understand OCI paths to upload model artifacts to the model catalog by reference. +* Removed ``ADSDataset`` runtime dependency on ``geopandas``. +* Fixed a bug in the progress bar during model registration. +* Fixed a bug where session variable could be referenced before assignment. +* Fixed a bug with model artifact save. +* Fixed a bug with pipelines step. + 2.8.9 ----- Release date: September 5, 2023 * Upgraded the ``scikit-learn`` dependency to ``>=1.0``. * Upgraded the ``pandas`` dependency to ``>1.2.1,<2.1`` to allow you to use ADS with pandas 2.0. +* Implemented multi-part upload in the ``ArtifactUploader`` to upload model artifacts to the model catalog. * Fixed the "Attribute not found" error, when ``deploy()`` called twice in ``GenericModel``. * Fixed the fetch of the security token, when the relative path for the ``security_token_file`` is provided (used in session token-bases authentication). diff --git a/pyproject.toml b/pyproject.toml index f5700f404..d7e13782b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,7 +57,7 @@ dependencies = [ "asteval>=0.9.25", "cerberus>=1.3.4", "cloudpickle>=1.6.0", - "fsspec>=0.8.7,<2023.9.1", # v2.9.1 introduced issues, releved by unit tests + "fsspec>=0.8.7,<2023.9.1", # v2.9.1 introduced issues, revealed by unit tests "gitpython>=3.1.2", "jinja2>=2.11.2", "matplotlib>=3.1.3", @@ -109,7 +109,7 @@ onnx = [ "lightgbm==3.3.1", "onnx>=1.12.0", "onnxmltools>=1.10.0", - "onnxruntime>=1.10.0,<1.16", # v1.16 introduced issues https://github.com/microsoft/onnxruntime/issues/17631, releved by unit tests + "onnxruntime>=1.10.0,<1.16", # v1.16 introduced issues https://github.com/microsoft/onnxruntime/issues/17631, revealedd by unit tests "oracle_ads[viz]", "protobuf<=3.20", "skl2onnx>=1.10.4",