## Arches 7.6.15 Release Notes

### Bug Fixes and Enhancements

-   Fix JSON-LD importer case where a matching branch could not be found [#12354](https://github.com/archesproject/arches/issues/12354)
-   Ensure all datatypes return a string from `get_display_value()` [#12349](https://github.com/archesproject/arches/issues/12349)
-   Fix failure to export tile excel template if card name contained slash [#11953](https://github.com/archesproject/arches/issues/11953)
-   Fix search thumbnails pointing at invalid locations [#12368](https://github.com/archesproject/arches/issues/12368)

### Dependency changes:

```
Python:
    Upgraded:
        None
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.15

    ```
    pip install --upgrade arches==7.6.15
    ```

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
    ```
