## Arches 7.6.12 Release Notes

### Bug Fixes and Enhancements

-   Add missing entry to arches URLs for `api_instance_permissions` [#12278](https://github.com/archesproject/arches/pulls/12278)
-   Improves permissions performance with search results [#12264](https://github.com/archesproject/arches/issues/12264)
-   Fixes a display descriptors issue when pushing data with the JSON-ld endpoint [#12272](https://github.com/archesproject/arches/issues/12272)
-   Fixes failures in `to_json()` datatype methods given node values of `None` [#12275](https://github.com/archesproject/arches/issues/12275)
-   Fixes rich text formatting in reports [#10909](https://github.com/archesproject/arches/issues/10909)
-   Prevents unpublished graphs from appearing in the resource model search filter [#12092](https://github.com/archesproject/arches/pull/12092)
-   Fixes "Clear Filters" i18 bug

### 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.12

    ```
    pip install --upgrade arches==7.6.12
    ```

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