## Arches 7.6.7 Release Notes ### Bug Fixes and Enhancements - ANALYSIS_COORDINATE_SYSTEM_SRID string compatibility [#11714](https://github.com/archesproject/arches/issues/11714) - Resource report returns 404 for missing resources [#11772](https://github.com/archesproject/arches/issues/11772) - Removes need for required cantaloupe directory [#10289](https://github.com/archesproject/arches/issues/10289) - Fixes failure of Bulkloader to import values formatted as date in Excel [#11878](https://github.com/archesproject/arches/issues/11878) - Fixes frontend build for systems using poetry or uv [#11764](https://github.com/archesproject/arches/issues/11764) - Fixes accessibility issues from extra scroll bar caused by CKEditor screen reader css class [#11713](https://github.com/archesproject/arches/issues/11713) - Fixes the loss of map styling when graphs are unpublished [#11633](https://github.com/archesproject/arches/issues/11633) - Fixes issue that prevents a package from being loaded in an initial migration [#11823](https://github.com/archesproject/arches/issues/11823) - Fixes help pages not loading for help files connected to the bulk data manager [#11815](https://github.com/archesproject/arches/issues/11815) - Fixes accessibility issues caused by long resource instance display names [#11711](https://github.com/archesproject/arches/pull/11711) - Fixes permissions lookup in resource edit log view [#11837](https://github.com/archesproject/arches/pull/11837) - Introduce keyboard inputs for moving map overlays in search [#11877](https://github.com/archesproject/arches/pull/11877) - Fixes the behavior of right click on the search results [#11866](https://github.com/archesproject/arches/pull/11866) ### Dependency changes: ``` Python: Upgraded: psycopg2 == 2.9.10 JavaScript: Upgraded: none ``` ### Upgrading Arches 1. Upgrade to version 7.6.0 before proceeding by following the upgrade process in the [Version 7.6.0 release notes](https://github.com/archesproject/arches/blob/dev/7.6.x/releases/7.6.0.md) 2. Upgrade to Arches 7.6.7 ``` pip install --upgrade arches==7.6.7 ``` 3. Build your frontend asset bundle: - If you plan on doing active development, and need to see frontend changes automatically, run: ``` npm start ``` - If you do not plan to do active development, run: ``` npm run build_development ``` - if you are running in production, collect your static files ``` python manage.py collectstatic ``` 4. If you are running Arches on Apache, be sure restart your server: ``` sudo service apache2 reload ```