Skip to content

Commit

Permalink
merge #11693
Browse files Browse the repository at this point in the history
  • Loading branch information
chrabyrd committed Dec 16, 2024
2 parents 1b149ff + 5ad7a33 commit 3fd5471
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arches/settings_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def list_arches_app_names():

def list_arches_app_paths():
return [
config.module.__path__[0]
os.path.realpath(config.module.__path__[0])
for config in apps.get_app_configs()
if getattr(config, "is_arches_application", False)
]
Expand Down
3 changes: 2 additions & 1 deletion releases/7.6.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -539,9 +539,10 @@ Minor incompatibilities:
{% endblock arches_translations %}
```
13. Within your project, with your Python 3 virtual environment activated run:
13. Within your project, with your Python 3 virtual environment activated migrate your database and reindex:
```
python manage.py migrate
python manage.py es reindex_database
```
14. Then run:
Expand Down
2 changes: 2 additions & 0 deletions releases/7.6.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@
- Remove unnecessary creation of guardian permissions for principal user #[11564](https://github.com/archesproject/arches/issues/11564)
- Fix migration that sets the initial principal users if a user no longer exists #[11664](https://github.com/archesproject/arches/issues/11664)
- Fix Graph Designer failure when editing large graphs #[11615](https://github.com/archesproject/arches/issues/11615)
- Add reindex_database to 7.6.0 upgrade steps [#11690](https://github.com/archesproject/arches/pull/11690)
- Fix failure to download exported search results when using non file-system based storages #[11620](https://github.com/archesproject/arches/issues/11620)
- Cache resource relationship preflabels to improve report load time #[11583](https://github.com/archesproject/arches/issues/11583)
- Fix for bug that prevents saving tab name changes in a tabbed report #[11617](https://github.com/archesproject/arches/issues/11617)
- Fix regression where Arches is no longer overriding Django admin templates #[11668](https://github.com/archesproject/arches/issues/11668)
- Update 7.6.0.md to reference management commands instead of `npm` commands #[11693](https://github.com/archesproject/arches/issues/11693)
- Fix bug causing app resources with symlink in their path to not resolve #[11689](https://github.com/archesproject/arches/issues/11689)
- Fix bug causing the Edit button to not display in the map popup #[11679](https://github.com/archesproject/arches/issues/11679)

### Dependency changes:
Expand Down

0 comments on commit 3fd5471

Please sign in to comment.