Skip to content

Migration guide v3.3.0

Lisrte edited this page Jul 6, 2026 · 1 revision

Remove controllable property and class for load

The BaseLoadControllable class has been removed, use BaseLoad instead. The property CONTROLLABLE in BASE_LOAD category is now ignored, BaseLoad are controllable by default.

MacroConnectionsAdder constructor refactor

MacroConnectionsAdder constructor

MacroConnectionsAdder(
  Function<String, BlackBoxModel> dynamicModelGetter,
  Function<String, BlackBoxModel> pureDynamicModelGetter,
  Consumer<MacroConnect> macroConnectAdder,
  BiConsumer<String, Function<String, MacroConnector>> macroConnectorAdder,
  ReportNode reportNode)

have been replaced with

MacroConnectionsAdder(
  BlackBoxModelSupplier blackBoxModelSupplier,
  Consumer<MacroConnect> macroConnectAdder,
  BiConsumer<String, Function<String, MacroConnector>> macroConnectorAdder,
  ReportNode reportNode)

LoadWithTransformers renaming

LoadWithTransformers renamed LoadWithTransformersModel

Clone this wiki locally