Skip to content

Releases: driplineorg/dripline-python

dripline-python v5.1.2 -- Release Notes

05 Dec 01:28

Choose a tag to compare

Changed

  • Updated dl-cpp version to v2.10.9

dripline-python v5.1.1 -- Release Notes

06 Nov 01:21

Choose a tag to compare

Changed

  • Updated dl-cpp version to v2.10.8

dripline-python v5.1.0 -- Release Notes

26 Aug 17:47

Choose a tag to compare

Added

  • Heartbeat Monitor (implementations.HeartbeatMonitor)
  • New logic for how logging is handled by Entities
    • The log_interval is now the interval with which an entity's value is checked, not necessarily logged
    • Whether a value is logged at the log_interval is controlled by:
      • max_interval: if this time is exceeded since the last log entry, then it will be logged; if 0 (default), then logging occurs every log_interval
      • max_absolute_change: if the value changes by more than this since the last log entry, then it will be logged
      • max_fractional_change: if the value changes fractional change is more than this since the last log entry, then it will be logged
    • The field that's checked for the max_fractional_change and max_absolute_change is given by check_field

Changed

  • Methods for sending and receiving messages are moved to the mixin classes core.RequestHandler and core.RequestSender
    to capture how dl-py handles requests for both services and endpoints
  • Upgrade dl-cpp to v2.10.6
  • Docker build now separates the installation of dependencies into a separate stage

Fixed

  • Postgres syntax
  • Application cancelation -- can use ctrl-c or other system signals to cancel an executable
  • Alerts exchange not hard-coded in the alerts consumer

v5.0.1

18 Apr 18:57

Choose a tag to compare

Adapted to use of signed ints for dl constants

v5.0.0

06 Jan 20:06

Choose a tag to compare

New authentication capabilities and updated class interfaces

v4.7.1

24 Apr 16:40

Choose a tag to compare

Updating dl-cpp to v2.9.1; fixes shared channel issue

v4.7.0

07 Mar 17:55

Choose a tag to compare

dl-cpp update: v2.9.0

v4.6.1

08 Feb 23:11

Choose a tag to compare

Pushing GH releases and containers to GHCR; Apache license; fixing sc…

Dripline3 initial release

14 Jan 21:57
022b456

Choose a tag to compare

Initial release of dripline-python implementing version 3 of dripline (and first version based on binding the C++ library rather than a pure-python implementation).

Includes a sufficient feature set to be usable in basic systems and all core features, but does not yet provide all of the desired general-use implementations.

adding travis build automation

12 Aug 17:55
dd48be7

Choose a tag to compare

Merge pull request #24 from driplineorg/develop

Develop merge