Skip to content

Commit

Permalink
Merge branch '10781_show_deleted_instances_ct' of https://github.com/…
Browse files Browse the repository at this point in the history
…archesproject/arches into 10781_show_deleted_instances_ct

merges latest changes on remote branch
  • Loading branch information
whatisgalen committed May 3, 2024
2 parents 9bbdaf5 + 9a7f83c commit d1d1bf3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
12 changes: 12 additions & 0 deletions releases/7.6.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,18 @@ JavaScript:

The minimum supported version of Python is now 3.10. Python 3.11 is encouraged, as it is significantly faster.

Minor incompatibilities:

- The signature of `Graph.delete_instances` changed from:
```
def delete_instances(self, verbose=False):
```
to:
```
def delete_instances(self, userid=None, verbose=False):
```
### Upgrading Arches
1. You must be upgraded to at least version 7.5.0 before proceeding. If you are on an earlier version, please 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)
Expand Down
4 changes: 0 additions & 4 deletions tests/bulkdata/bulk_data_delete_tests.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
import os
import uuid
from django.contrib.auth.models import User
from arches.app.models.resource import Resource
from arches.app.models.tile import Tile
from arches.app.models import models
from arches.app.utils.data_management.resource_graphs.importer import import_graph as ResourceGraphImporter
from arches.app.utils.betterJSONSerializer import JSONSerializer, JSONDeserializer
from arches.app.utils.i18n import LanguageSynchronizer
from arches.app.etl_modules.bulk_data_deletion import BulkDataDeletion
from tests.base_test import ArchesTestCase
Expand Down

0 comments on commit d1d1bf3

Please sign in to comment.