From e13dd65fb97d791ce02650e23e4355cf18db580b Mon Sep 17 00:00:00 2001 From: Jane Sandberg Date: Wed, 31 Mar 2021 11:56:56 -0700 Subject: [PATCH] Docs: 3.5.4 release notes Signed-off-by: Jane Sandberg --- docs/RELEASE_NOTES_3_5.adoc | 75 +++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/docs/RELEASE_NOTES_3_5.adoc b/docs/RELEASE_NOTES_3_5.adoc index 9670117133..bf8f09c7b5 100644 --- a/docs/RELEASE_NOTES_3_5.adoc +++ b/docs/RELEASE_NOTES_3_5.adoc @@ -3,6 +3,81 @@ Evergreen 3.5 Release Notes :toc: :numbered: + +== Evergreen 3.5.4 == + +This release contains bug fixes improving on Evergreen 3.5.3, including +a security bug fix. + +=== Bug Fixes === + +Security +^^^^^^^^ + +* Fixes an XSS bug in MARC fields that are rendered as HTML (https://bugs.launchpad.net/bugs/1902965[Bug 1902965]) + +Administration +^^^^^^^^^^^^^^ + +* Angular admin pages now scope to the appropriate library (https://bugs.launchpad.net/bugs/1873322[Bug 1873322]) + +Client +^^^^^^ + +* Angular Staff Client Hamburger Menu is no longer clipped off screen (https://bugs.launchpad.net/bugs/1915323[Bug 1915323]) + +OPAC +^^^^ + +* Terms Governing Use and Reproduction Note Displays Twice in Record Details (https://bugs.launchpad.net/bugs/1917804[Bug 1917804]) + +Staff catalog +^^^^^^^^^^^^^ + +* Angular Catalog: Part column missing from Item table (https://bugs.launchpad.net/bugs/1899405[Bug 1899405]) +* Publication information in angular search results does not display from tag 264 (https://bugs.launchpad.net/bugs/1896840[Bug 1896840]) + +Performance +^^^^^^^^^^^ + +* Search indexes use GIN by default (https://bugs.launchpad.net/bugs/1703658[Bug 1703658]) + +=== Upgrade notes === + +A partial reingest is required to extract the new publisher data for display. +This query may be long-running. + +[source,sql] +-------------------------------------------------------------------------- +WITH affected_bibs AS ( + SELECT DISTINCT(bre.id) AS id + FROM biblio.record_entry bre + JOIN metabib.real_full_rec mrfr + ON (mrfr.record = bre.id AND mrfr.tag = '264') + WHERE NOT bre.deleted +) +SELECT metabib.reingest_metabib_field_entries(id, TRUE, FALSE, TRUE, TRUE) +FROM affected_bibs; +-------------------------------------------------------------------------- + + + +=== Acknowledgements === + +We would like to thank the following individuals who contributed code, +testing and documentation patches to the 3.5.4 point release of Evergreen: + + +* Jason Boyer +* Dan Briem +* Garry Collum +* Jeff Davis +* Bill Erickson +* Galen Charlton +* Michele Morgan +* Jane Sandberg +* Jason Stephenson + Evergreen 3.5.3 --------------- -- 2.43.2