From 8d18ab9317ef1027a62eca3f8110b90676003e32 Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Mon, 29 Jul 2024 08:15:33 -0400 Subject: [PATCH] Add breaking change notice re #10288 --- releases/7.6.0.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/releases/7.6.0.md b/releases/7.6.0.md index 98d791fc222..83bacb4bbd8 100644 --- a/releases/7.6.0.md +++ b/releases/7.6.0.md @@ -170,6 +170,14 @@ Minor incompatibilities: ``` def delete_instances(self, userid=None, verbose=False): ``` +- The signature of `arches.app.utils.module_importer.get_class_from_modulename` changed from: + ``` + def get_class_from_modulename(modulename, classname, directory_list) + ``` + to: + ``` + def get_class_from_modulename(modulename, classname, extension_type: ExtensionType) + ``` - `BaseImportModule.cumulative_excel_files_size` became `BaseImportModule.cumulative_files_size` (and a similar change was made to the JSON return value of `BaseImportModule.read`.)