## Arches 7.6.17 Release Notes

### Bug Fixes and Enhancements

-   Fixes search export's UI displaying of email address for logged-in users when `RESTRICT_CELERY_EXPORT_FOR_ANONYMOUS_USER` is set to `True` [#12453](https://github.com/archesproject/arches/issues/12453)
-   Fixed an issue where diacritics were being html encoded and saved to the database when using the rich-text editor
[#12460](https://github.com/archesproject/arches/issues/12460)
-   Moved roadmap into a dedicated repository[#12463](https://github.com/archesproject/arches/pull/12463)

### Dependency changes:

```
Python:
    Upgraded:
        None
JavaScript:
    Upgraded:
        None
```


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.17

    ```
    pip install --upgrade arches==7.6.17
    ```

3.  Rebuild your frontend 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
        ```

3. If you are running Arches on Apache, restart your server:
    ```
    sudo service apache2 reload
    ```
