Skip to content

v3.5.0

Compare
Choose a tag to compare
@phlptp phlptp released this 07 Feb 05:56
· 42 commits to main since this release
a818def

Major release including connector app capability, a refresh of the of the dataBuffer interface, and other bug fixes

Fixed

  • Fixed some issues regarding config files in the apps, where the config file was not being handled consistently
  • Fixed a few more sporadically failing testing cases and a rare bug in the use of wait_for_current_time flag when entering executing mode
  • Fixed a memory growth issue related to find operations in the C interface
  • Resolved some issues with the threadSanitizer and other sporadic failures in the test cases

Changed

  • Test with Boost 1.84 and CMake 3.28
  • Large refactor of the dataBufferAPI, this is now considered stable, all dataBuffer related methods now start with helicsDataBuffer for consistency with other API methods and the XXXToBytes methods are changed to FillFromXXXX to be more consistent with other API's
  • Update 3rd party libraries
  • Update copyright to 2024
  • Autobuild ZMQ now set to 4.3.5

Added

  • Added Connector app to enable automated connections of the federates via a set of matching rules, and allow optional interface generation via a query/command
  • Added helics::systemInfo() to the C++ shared library
  • Added ability to generate translators from config files
  • Added API's to get and send dataBuffers from publications/inputs/endpoints

Deprecated

  • Nearly all methods that use Subscription in the name have been deprecated in favor of an equivalent version for Input to reduce confusion of use of subscription objects (which are just Input objects); these are all 1:1 mappings
    • getSubscription(string target) -> getInputByTarget(string target)
    • getSubscription(int index) -> getInput(int index)
    • helicsSubscriptionGetTarget(inp) -> helicsInputGetTarget(inp)
    • helicsFederateGetSubscription(fed, string target)->helicsFederateGetInputByTarget(fed,string target)