Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ADS release 2.8.10 #355

Merged
merged 2 commits into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitleaks.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ useDefault = true
'''example-password''',
'''this-is-not-the-secret''',
'''<redacted>''',
'''security_token''',
# NVIDIA_GPGKEY_SUM from public documentation:
# https://gitlab.com/nvidia/container-images/cuda/-/blob/master/dist/10.1/centos7/base/Dockerfile
'''d0664fbbdb8c32356d45de36c5984617217b2d0bef41b93ccecd326ba3b80c87'''
Expand Down
12 changes: 12 additions & 0 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ build-backend = "flit_core.buildapi"

# Required
name = "oracle_ads" # the install (PyPI) name; name for local build in [tool.flit.module] section below
version = "2.8.9"
version = "2.8.10"

# Optional
description = "Oracle Accelerated Data Science SDK"
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down