Skip to content

Commit fa6f315

Browse files
authored
ADS release 2.8.10 (#355)
1 parent da6eb53 commit fa6f315

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

.gitleaks.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ useDefault = true
1313
'''example-password''',
1414
'''this-is-not-the-secret''',
1515
'''<redacted>''',
16+
'''security_token''',
1617
# NVIDIA_GPGKEY_SUM from public documentation:
1718
# https://gitlab.com/nvidia/container-images/cuda/-/blob/master/dist/10.1/centos7/base/Dockerfile
1819
'''d0664fbbdb8c32356d45de36c5984617217b2d0bef41b93ccecd326ba3b80c87'''

docs/source/release_notes.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,24 @@
22
Release Notes
33
=============
44

5+
2.8.10
6+
------
7+
Release date: September 27, 2023
8+
9+
* Improved the ``LargeArtifactUploader`` class to understand OCI paths to upload model artifacts to the model catalog by reference.
10+
* Removed ``ADSDataset`` runtime dependency on ``geopandas``.
11+
* Fixed a bug in the progress bar during model registration.
12+
* Fixed a bug where session variable could be referenced before assignment.
13+
* Fixed a bug with model artifact save.
14+
* Fixed a bug with pipelines step.
15+
516
2.8.9
617
-----
718
Release date: September 5, 2023
819

920
* Upgraded the ``scikit-learn`` dependency to ``>=1.0``.
1021
* Upgraded the ``pandas`` dependency to ``>1.2.1,<2.1`` to allow you to use ADS with pandas 2.0.
22+
* Implemented multi-part upload in the ``ArtifactUploader`` to upload model artifacts to the model catalog.
1123
* Fixed the "Attribute not found" error, when ``deploy()`` called twice in ``GenericModel``.
1224
* Fixed the fetch of the security token, when the relative path for the ``security_token_file`` is provided (used in session token-bases authentication).
1325

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ build-backend = "flit_core.buildapi"
1919

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

2424
# Optional
2525
description = "Oracle Accelerated Data Science SDK"
@@ -57,7 +57,7 @@ dependencies = [
5757
"asteval>=0.9.25",
5858
"cerberus>=1.3.4",
5959
"cloudpickle>=1.6.0",
60-
"fsspec>=0.8.7,<2023.9.1", # v2.9.1 introduced issues, releved by unit tests
60+
"fsspec>=0.8.7,<2023.9.1", # v2.9.1 introduced issues, revealed by unit tests
6161
"gitpython>=3.1.2",
6262
"jinja2>=2.11.2",
6363
"matplotlib>=3.1.3",
@@ -109,7 +109,7 @@ onnx = [
109109
"lightgbm==3.3.1",
110110
"onnx>=1.12.0",
111111
"onnxmltools>=1.10.0",
112-
"onnxruntime>=1.10.0,<1.16", # v1.16 introduced issues https://github.com/microsoft/onnxruntime/issues/17631, releved by unit tests
112+
"onnxruntime>=1.10.0,<1.16", # v1.16 introduced issues https://github.com/microsoft/onnxruntime/issues/17631, revealedd by unit tests
113113
"oracle_ads[viz]",
114114
"protobuf<=3.20",
115115
"skl2onnx>=1.10.4",

0 commit comments

Comments
 (0)