From b003e62607176d387bffaf3109685f7b6f2ec830 Mon Sep 17 00:00:00 2001 From: Ken Lauer Date: Tue, 5 Jul 2022 15:27:21 -0700 Subject: [PATCH 1/2] DOC: JSON file location relative to config --- docs/source/releases.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/source/releases.rst b/docs/source/releases.rst index 63ab5d45..aee0be29 100644 --- a/docs/source/releases.rst +++ b/docs/source/releases.rst @@ -30,6 +30,7 @@ Features - Significant performance increase for JSON-backed happi clients. - Makes ``SearchResult`` hashable - Uses hashable ``SearchResult`` in happi search cli command +- JSON database paths may now be relative to the configuration file. Bugfixes -------- @@ -58,6 +59,7 @@ Maintenance Contributors ------------ +- JJL772 - klauer - tangkong - zllentz From c00817e7c1c1d8472f288f7f9a2ee1ccf709372c Mon Sep 17 00:00:00 2001 From: Ken Lauer Date: Tue, 5 Jul 2022 15:48:03 -0700 Subject: [PATCH 2/2] DOC: release notes from #264 --- docs/source/releases.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/source/releases.rst b/docs/source/releases.rst index aee0be29..b903bb56 100644 --- a/docs/source/releases.rst +++ b/docs/source/releases.rst @@ -31,6 +31,8 @@ Features - Makes ``SearchResult`` hashable - Uses hashable ``SearchResult`` in happi search cli command - JSON database paths may now be relative to the configuration file. +- Added ``happi benchmark`` for identifying which items are slow to load. +- Added ``happi profile`` for identifying why particular items are slow to load. Bugfixes -------- @@ -56,6 +58,7 @@ Maintenance - Clean up fixture usage and separate ``three_valves`` fixture into ``three_valves`` and ``client_with_three_valves`` - add pre-release notes scripts - More documentation about the happi container registry was added. +- Refactored CLI slightly to re-use searching logic. Contributors ------------