## Arches 7.6.14 Release Notes

### Bug Fixes and Enhancements

-   Handle for null value in compatibility check [#12312](https://github.com/archesproject/arches/pull/12312)
-   Fix error where `createVueApplication` does not allow users to pass props into component [#12315](https://github.com/archesproject/arches/issues/12315)

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

    ```
    pip install --upgrade arches==7.6.14
    ```

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