Skip to content

Releases: JeffersonLab/jmyapi

v9.0.8

13 Jun 17:55
Compare
Choose a tag to compare
  • Bump GitHub Action java-workflows to V2

Full Changelog: v9.0.7...v9.0.8

v9.0.7

11 Apr 16:21
Compare
Choose a tag to compare

v9.0.6

11 Apr 15:58
Compare
Choose a tag to compare
  • GitHub Action CD Test

Full Changelog: v9.0.5...v9.0.6

v9.0.5

11 Apr 15:33
Compare
Choose a tag to compare
  • GitHub Action CD Test

Full Changelog: v9.0.4...v9.0.5

v9.0.4

11 Apr 15:21
Compare
Choose a tag to compare

What's Changed

Full Changelog: v9.0.3...v9.0.4

v9.0.3

21 Mar 21:18
Compare
Choose a tag to compare
  • Updated GitHub Action workflow

Full Changelog: v9.0.1...v9.0.3

v9.0.1

21 Mar 17:27
Compare
Choose a tag to compare
  • Updated GitHub Action workflow

Full Changelog: v9.0.0...v9.0.1

v9.0.0

30 Nov 20:50
929154e
Compare
Choose a tag to compare

Overview

This release removes the dynamic approach supported in recent releases of jmyapi. The dynamic strategy proved to faster in large part due to the bug in #24. Fixing that bug made the dynamic approach no faster than simply streaming the data.

What's Changed

  • Remove dynamic behavior from MySamplerStream by @apcarp in #25

Full Changelog: v8.1.1...v9.0.0

v8.1.1

30 Nov 20:47
5617dae
Compare
Choose a tag to compare

Overview

Fixes issue where database resources were not always closed when a stream closed.

v8.1.0

14 Nov 21:52
7f4a925
Compare
Choose a tag to compare

Overview

This addresses a major problem with the MySamplerStream approach where it is too slow on busy channels. This release supports the old sampling strategy, but also enables users to construct MySamplerStreams that will repeated query the MYA database for each sampled point, or attempt to stream the data, until the stream appears to have too many updates relative to the number of sampled points.

This also fixes the behavior where samples taken from the future would return the value of the last Event. Now samples from the future return an Event with EventCode.UNDEFINED, similar to samples from before the start of data.

Issues Addressed