Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

uuid type conversion error to fix #11536 #11539

Merged
merged 2 commits into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions arches/app/models/resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -887,8 +887,8 @@ def get_relations(
)
filtered_instances = filtered_instances if user is not None else []

resourceid_to_permission = resourceid_to not in filtered_instances
resourceid_from_permission = resourceid_from not in filtered_instances
resourceid_to_permission = str(resourceid_to) not in filtered_instances
resourceid_from_permission = str(resourceid_from) not in filtered_instances

if exclusive_set:
resourceid_to_permission = not (resourceid_to_permission)
Expand Down
32 changes: 32 additions & 0 deletions releases/7.6.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
## Arches 7.6.2 Release Notes

### Bug Fixes and Enhancements

- Fixes bug in which resource relationships fail to appear in visualize mode if using default deny as a non-superuser #[11539](https://github.com/archesproject/arches/pull/11539)

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

```
pip install --upgrade arches==7.6.2
```

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