Skip to content

Commit

Permalink
Prevent TooManyFieldsSent error in graph designer #11615
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls committed Nov 12, 2024
1 parent 88efb3f commit fb2a48f
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 1 deletion.
1 change: 1 addition & 0 deletions arches/app/media/js/viewmodels/graph-settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ define([
$.ajax({
type: "POST",
url: arches.urls.graph_settings(self.graph.graphid()),
contentType: 'application/json',
data: self.jsonData()})
.done(function(response) {
self.jsonCache(self.jsonData());
Expand Down
2 changes: 1 addition & 1 deletion releases/7.6.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- Fix issue in which search results do not load if a saved search has no title or description #[11603](https://github.com/archesproject/arches/pull/11603)
- Fix issue with JSON-LD export failing when geojson features have no "id". #[11587](https://github.com/archesproject/arches/issues/11587)
- Reduce permissions query to 1 query for all related resources in `get_related_resources` to prevent reports from failing to load #[11575](https://github.com/archesproject/arches/issues/11575)
- Fix webpack build for Windows instances #[#11606](https://github.com/archesproject/arches/pull/11606)
- Fix webpack build for Windows instances #[11606](https://github.com/archesproject/arches/pull/11606)


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

### Bug Fixes and Enhancements

- Fix Graph Designer failure when editing large graphs #[11615](https://github.com/archesproject/arches/issues/11615)


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

```
pip install --upgrade arches==7.6.4
```
3. If you are running Arches on Apache, restart your server:
```
sudo service apache2 reload
```

0 comments on commit fb2a48f

Please sign in to comment.