+++ /dev/null
-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.
+++ /dev/null
-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.
-
-
+++ /dev/null
-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]
-