From 806c033817dbc33318e57eb48acd22b97b20dfac Mon Sep 17 00:00:00 2001 From: Sean Mackrory Date: Mon, 14 Nov 2022 19:12:48 -0700 Subject: [PATCH] docs: add release notes for 0.19.7 (#5425) --- docs/release-notes.rst | 36 +++++++++++++++++++ docs/release-notes/238-webhooks.txt | 5 --- .../5280-stable-diffusion-example.txt | 6 ---- docs/release-notes/checkpoint-workspaced.rst | 7 ---- docs/release-notes/fix-aggregation.rst | 5 --- 5 files changed, 36 insertions(+), 23 deletions(-) delete mode 100644 docs/release-notes/238-webhooks.txt delete mode 100644 docs/release-notes/5280-stable-diffusion-example.txt delete mode 100644 docs/release-notes/checkpoint-workspaced.rst delete mode 100644 docs/release-notes/fix-aggregation.rst diff --git a/docs/release-notes.rst b/docs/release-notes.rst index 1af3e033695..7b580c64bb2 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -10,6 +10,42 @@ Version 0.19 ************** +Version 0.19.7 +============== + +**Release Date:** November 14, 2022 + +**New Features** + +- WebUI: Adds support for creating and managing webhooks to enable receiving updates regarding + experiment state changes. + +- Checkpoint storage can now be configured at a workspace level. Experiments created in projects + will now inherit checkpoint storage configuration from the project's workspace if set. Experiment + configuration can override the workspace level checkpoint storage configuration. + +- Example: Textual Inversion training and generation using Stable Diffusion with Core API and + Hugging Face's Diffusers. + +- Python SDK now supports reading logs from trials, via the new + :meth:`~determined.experimental.client.TrialReference.logs` method. Additionally, the Python SDK + also supports a new blocking call on an experiment to get the first trial created for an + experiment via the + :meth:`~determined.experimental.client.ExperimentReference.await_first_trial()` method. Users who + have been writing automation around the ``det e create --follow-first-trial`` CLI command may now + use the python SDK instead, by combining ``.await_first_trial()`` and ``.logs()``. + +- RBAC: the enterprise edition of Determined (`HPE Machine Learning Development Environment + `_) + has added preliminary support for Role-Based Access Control. Administrators can now configure + which users or user groups can administer users, create or configure workspaces, run or view + experiments in particular workspaces, or perform other actions. See :ref:`rbac` for more + information. + +**Bug Fixes** + +- Master: Correctly handle pending allocations in historical resource allocation aggregation. + Version 0.19.6 ============== diff --git a/docs/release-notes/238-webhooks.txt b/docs/release-notes/238-webhooks.txt deleted file mode 100644 index 9c3a23f4bb9..00000000000 --- a/docs/release-notes/238-webhooks.txt +++ /dev/null @@ -1,5 +0,0 @@ -:orphan: - -**New Features** - -- WebUI: Adds support for creating and managing webhooks to enable receiving updates regarding experiment state changes. diff --git a/docs/release-notes/5280-stable-diffusion-example.txt b/docs/release-notes/5280-stable-diffusion-example.txt deleted file mode 100644 index 202beefed98..00000000000 --- a/docs/release-notes/5280-stable-diffusion-example.txt +++ /dev/null @@ -1,6 +0,0 @@ -:orphan: - -**New Features** - -- Example: Textual Inversion training and generation using Stable Diffusion with Hugging Face's -Diffusers and Core API. diff --git a/docs/release-notes/checkpoint-workspaced.rst b/docs/release-notes/checkpoint-workspaced.rst deleted file mode 100644 index 0bbe635faa8..00000000000 --- a/docs/release-notes/checkpoint-workspaced.rst +++ /dev/null @@ -1,7 +0,0 @@ -:orphan: - -**New Features** - -- Checkpoint storage can now be configured at a workspace level. Experiments created in projects - will now inherit checkpoint storage configuration from the project's workspace if set. Experiment - configuration can override the workspace level checkpoint storage configuration. diff --git a/docs/release-notes/fix-aggregation.rst b/docs/release-notes/fix-aggregation.rst deleted file mode 100644 index b8ed9d0fcc5..00000000000 --- a/docs/release-notes/fix-aggregation.rst +++ /dev/null @@ -1,5 +0,0 @@ -:orphan: - -**Bug Fixes** - -- Master: Correctly handle pending allocations in historical resource allocation aggregation.