From 751e4c1299c9d9d10fd65f590c59a574846f790f Mon Sep 17 00:00:00 2001 From: Dan Allan Date: Thu, 3 Nov 2022 13:43:11 -0400 Subject: [PATCH] DOC: Release notes for 1.19.0 --- docs/source/release-history.rst | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/docs/source/release-history.rst b/docs/source/release-history.rst index d98de9fd..6eb5c7a3 100644 --- a/docs/source/release-history.rst +++ b/docs/source/release-history.rst @@ -2,6 +2,25 @@ Release History *************** +v1.19.0 (2022-11-03) +==================== + +Added +----- + +* Add two experimental new document types: a `stream_resource` that manages an + unknown number of contiguous `stream_datum`, with the potential for multiple + streams. This is especially relevant when the data is expected to be ragged + or has no pre-determined shape (number of rows). + +Changed +------- + +* Added ``object_name`` to Event Descriptor schema. The RunEngine has been + adding this for many years. This change merely documents the status quo. +* Use ``importlib`` instead of ``__version__`` to implement logic conditional + on jsonschema version. + v1.18.0 (2022-08-05) ====================