## Arches 7.6.18 Release Notes

### Bug Fixes and Enhancements

-   Fixes issue with read/edit frontend permissions being incorrectly set on the instance permissions endpoint. [#12483](https://github.com/archesproject/arches/pull/12483)
-   Fixes accessibility issues with tabbed reports. [#12497](https://github.com/archesproject/arches/pull/12497)

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

    ```
    pip install --upgrade arches==7.6.18
    ```

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

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