Skip to content

Commit

Permalink
0.54
Browse files Browse the repository at this point in the history
  • Loading branch information
wbouvy committed Aug 10, 2020
1 parent f82bc4d commit c102aed
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Changelog Hiber API

### 0.54.2 (2020-08-10)

This is a minor release with a few more performance improvements and some bug fixes.

#### Changes

##### ModemService

- Dead, damaged and lost modems are now filtered out by default.

##### ModemTransferService

- Fixed a bug that would cause some transfer to be stuck in transit, returning an error when trying to receive them.

### 0.54 (2020-08-06)

This release contains a lot of performance improvements.

You may see some calls return a time out error if they would take a long time before.
This allows us to conserve resources and trace which calls need to be optimized.

#### Changes

##### EventService

- Some event bundles now have an approximated count, to avoid them timing out.
In the next few releases, we will optimize this to provide accurate counts whenever possible within the timeout.

### 0.53 (2020-07-27)

#### Changes
Expand Down
5 changes: 5 additions & 0 deletions event.proto
Original file line number Diff line number Diff line change
Expand Up @@ -697,6 +697,11 @@ message BundledEvent {
string title = 3;
string description = 4;
Timestamp last_event = 5;

/* Indicates that the amount is an approximation, and not an exact value.
* Some events will be approximated to avoid a large number of events affecting the request time.
*/
bool approximated_amount = 6;
}

/* Selection object for Event list and stream. Filter events on modem, webhook, time and error state, and
Expand Down

0 comments on commit c102aed

Please sign in to comment.