File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
88
99### Fixed
1010
11- - Fixed error when "Properties to ignore" field is empty (or contains empty lines)
11+ - Fixed error when "Properties to ignore" field is empty (or contains empty lines)
12+
13+ ### Changed
14+
15+ - Default value for "Fetch namespace prefixes from prefix.cc" is now False
1216
1317## [ 3.0.0] 2025-03-05
1418
Original file line number Diff line number Diff line change @@ -122,7 +122,6 @@ def str2bool(value: str) -> bool:
122122 description = "Attempt to fetch namespace prefixes from prefix.cc instead of from the "
123123 "local database. If this fails, fall back on local database. Prefixes defined in the "
124124 "Corporate Memory project will override prefixes defined in the external database." ,
125- default_value = False ,
126125 advanced = True ,
127126 ),
128127 PluginParameter (
@@ -151,7 +150,7 @@ def __init__( # noqa: PLR0913
151150 label : str = "" ,
152151 existing_graph : str = "stop" ,
153152 import_shapes : bool = False ,
154- prefix_cc : bool = True ,
153+ prefix_cc : bool = False ,
155154 ignore_properties : str = "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" ,
156155 plugin_provenance : bool = False ,
157156 ) -> None :
You can’t perform that action at this time.
0 commit comments