From: Jason Stephenson Date: Fri, 29 Oct 2021 13:09:47 +0000 (-0400) Subject: Remove extraneous release notes documents X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=5a3c8a5beea3e0a716688ecee3e847004be9355a;p=working%2FEvergreen.git Remove extraneous release notes documents Signed-off-by: Jason Stephenson --- diff --git a/docs/RELEASE_NOTES_NEXT/Cataloging/authority-full-rec-value-index.adoc b/docs/RELEASE_NOTES_NEXT/Cataloging/authority-full-rec-value-index.adoc deleted file mode 100644 index 861f8bd92c..0000000000 --- a/docs/RELEASE_NOTES_NEXT/Cataloging/authority-full-rec-value-index.adoc +++ /dev/null @@ -1,17 +0,0 @@ -Fix for Authority Records with Long Subfields -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Importing or updating authority records with long subfields, i.e. in -the vicinity of 5,000 characters or more in length, can cause database -errors that will prevent the update or import from happening. The -error occurs because non-full text indexes in PostgreSQL have a -limited length, and long fields sometimes lead to index entries that -exceed this maximum value. - -In order to rectify this issue, two database indexes on the -`authority.full_rec` table's `value` column have been redefined to -match their counterparts in the `metabib.real_full_rec` table. After -this update, only the first 1024 characters of an authority field or -subfield will be considered by these indexes. - -NOTE: These indexes are not used for authority record search, though -they are used for sorting and paging. diff --git a/docs/RELEASE_NOTES_NEXT/Cataloging/bre_negative_one.adoc b/docs/RELEASE_NOTES_NEXT/Cataloging/bre_negative_one.adoc deleted file mode 100644 index d84ec3f74c..0000000000 --- a/docs/RELEASE_NOTES_NEXT/Cataloging/bre_negative_one.adoc +++ /dev/null @@ -1,6 +0,0 @@ -Bib Record -1 Can No Longer Be Edited -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -Now when retrieving the bibliographic record with the id of -1 the delete button will be missing and save button is disabled. - - diff --git a/docs/RELEASE_NOTES_NEXT/Client/splash_search_fix.adoc b/docs/RELEASE_NOTES_NEXT/Client/splash_search_fix.adoc deleted file mode 100644 index c12294b110..0000000000 --- a/docs/RELEASE_NOTES_NEXT/Client/splash_search_fix.adoc +++ /dev/null @@ -1,14 +0,0 @@ -Fix for Staff Splash Page Multi-Word Search -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -The addition of the Angular Staff Catalog surfaced a double-encoding issue -with redirects in certain Apache versions. This caused searches for multiple -words to have %20 in place of spaces, almost certainly resulting in 0 results. - -In order to apply this fix, change the Angular redirects in eg_vhost.conf from - - RewriteRule ^/eg2/(.*) https://%{HTTP_HOST}/eg2/en-US/$1 [R=307,L] - -to - - RewriteRule ^/eg2/(.*) https://%{HTTP_HOST}/eg2/en-US/$1 [NE,R=307,L] -