## Arches 7.6.16 Release Notes

### Bug Fixes and Enhancements

-   Ensure workflow history response is complete before navigating away from workflow [#12413](https://github.com/archesproject/arches/issues/12413)
-   Fix the issue with the relationship type not showing the label in the related resource pane [#12440](https://github.com/archesproject/arches/issues/12440)
-   Add workaround for PrimeVue theme import issues after upgrading to v1.20+ [#12443](https://github.com/archesproject/arches/issues/12443)
-   Prevent unpublished resource models from appearing in resource model search filter [#12095](https://github.com/archesproject/arches/pull/12095)

### Dependency changes:

```
Python:
    Upgraded:
        None
JavaScript:
    Upgraded:
        primevue: "4.0.7" -> "4.3.7"
    Removed:
        @primevue/themes: "4.0.7"
    Added: 
        @primeuix/themes: "1.2.3"

```


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

    ```
    pip install --upgrade arches==7.6.16
    ```

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