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

property value should be a URI, re #11727 #11728

Merged
merged 5 commits into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from 3 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
5 changes: 4 additions & 1 deletion arches/app/utils/activity_stream_jsonld.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,10 @@ def add_resource(editlog_object, perm_level=perm_level):
# Tombstone instead.
obj["formerType"] = obj["type"]
obj["type"] = "Tombstone"
obj["id"] = editlog_object.resourceinstanceid

obj["id"] = self.base_uri_for_arches + reverse(
"resources", args=(editlog_object.resourceinstanceid,)
)

return obj

Expand Down
31 changes: 31 additions & 0 deletions releases/7.6.5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
## Arches 7.6.5 Release Notes

### Bug Fixes and Enhancements

- Fix Activity Stream id value #[11727](https://github.com/archesproject/arches/issues/11727)

### Dependency changes:

```
Python:
Upgraded:
Django == 4.2.17 (or <5.0.0)
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.5

```
pip install --upgrade arches==7.6.5
```

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