From 8e3d04a0c6d4eb3e7330c9d637528250374acf71 Mon Sep 17 00:00:00 2001 From: "Stephen C. Pope" Date: Wed, 17 May 2023 12:38:33 -0700 Subject: [PATCH] Client release v2.0.0rc4 (#11875) GitOrigin-RevId: c559ae1e620678c099173507e9b984d475811abd --- README.md | 14 +++++++++++++- descarteslabs/core/client/version.py | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 70282ece..a2341561 100644 --- a/README.md +++ b/README.md @@ -18,13 +18,25 @@ The documentation for the latest release can be found at [https://docs.descartes Changelog ========= -## [Unreleased] +## [2.0.0rc4] ### Catalog - The defaulting of the `namespace` value for `Blob`s has changed slightly. If no namespace is specified, it will default to `:` with the user's org name and unique user hash. Otherwise, any other value, as before, will be prefixed with the user's org name if it isn't already so. +- `Blob.get` no longer requires a full id. Alternatively, you can give it a `name` and optionally a `namespace` + and a `storage_type`, and it will retrieve the `Blob`. +- Fixed a bug causing summaries of `Blob` searches to fail. + +### Compute + +- `Function.map` and `Function.rerun` now save the created `Job`s before returning. +- `Job.get` return values fixed, and removed an extraneous debug print. + +### General + +- Updated requirements to avoid `urllib3>=2.0.0` which break all kinds of things. ## [2.0.0rc3] diff --git a/descarteslabs/core/client/version.py b/descarteslabs/core/client/version.py index fe5ce42d..62356c59 100644 --- a/descarteslabs/core/client/version.py +++ b/descarteslabs/core/client/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "2.0.0rc3" +__version__ = "2.0.0rc4"