Arches 7.5.1 Release Notes
--------------------------

### Bug Fixes and Enhancements

- Adds 'default' user to timewheel cache config ('CACHE_BY_USER') to cache timewheel for all users #10461
- Stops processing indicator in bulk edit status page when process is complete #10465
- Select bulk process, not the previous one, when bulk edit is complete #10465
- Set bulk edit language to active language by default #10465
- Fix missing month/year options in search datepicker #10449
- Fix duplicate concepts from appearing in concept select dropdown #10494
- Fix bug in display of map coordinate editor #10080
- Fix error when adding new resource relations #10383
- Fix text entry after switching language in rich-text widget #10483
- Surface card help panel in main file widget area #10477
- z-index issue: When Adding Geometry, The Edit toolbar is still visible when opening the Help Option #10432
- Handle empty node values in map report #10473


### Dependency changes:
```
Python:
    Upgraded:
        Django 4.2.8 > 4.2.10
```

### Upgrading Arches

1. Upgrade to version 7.5.0 before proceeding. If upgrading from an earlier version, refer to the upgrade process in the [Version 7.5.0 release notes](https://github.com/archesproject/arches/blob/dev/7.5.x/releases/7.5.0.md)

2. Upgrade to Arches 7.5.1
    ```
    pip install --upgrade arches==7.5.1
    ```

3. Update the JavaScript dependencies and devDependencies:
    In the project's `package.json` file change arches from `stable/7.5.0` to `stable/7.5.1`:
    ```    
        "dependencies": {
            "arches": "archesproject/arches#stable/7.5.1",
        },
        "devDependencies": {
            "arches-dev-dependencies": "archesproject/arches-dev-dependencies#stable/7.5.1"
        }
    ```
    In in your terminal navigate to the directory with your project's package.json file. Then run:

        yarn install


4. Start your application server in a separate terminal if it's not already running. Your webpack build will not complete without your application server running.

5. In a different terminal navigate to the directory with your project's package.json file, run `yarn start` or `yarn build_development`. This will generate your `media/build` directory.
   - If running your project in development:
     -  `yarn start` will build the frontend of the application and then start a webpack development server
      - `yarn build_development` will build a development bundle for the frontend assests of the application -- this should complete in less than 2 minutes
    - If running your project in production:
      - `yarn build_production` This builds a production bundle. **takes up to 2hrs depending on resources**
      - Alternatively you can `cd ..` up a directory and run `python manage.py build_production`. This will create a production bundle of frontend assessts and also call `collectstatic`.
  

6. If you are running Arches on Apache, be sure to run:

    ```
    collectstatic
    ```
    and restart your server:
    ```
    sudo service apache2 reload
    ```

