Skip to content

Commit

Permalink
0.86
Browse files Browse the repository at this point in the history
  • Loading branch information
wbouvy committed Aug 30, 2021
1 parent e72c378 commit 5bd154c
Show file tree
Hide file tree
Showing 9 changed files with 38 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.86 (2021-08-30)

This release fixes a few bugs and adds a few missing features.

#### Changes

##### base.proto

- Added `PRESSURE_K_PA` to `UnitOfMeasurement`, for pressure in `kPA`.

##### AlarmsService

- Fixed a bug where a location extracted from the message body using
`ModemMessageBodyParser.MetadataFields.location_fields` was not available to alarms.

##### ModemService

- Fixed a bug where a specific query could negatively affect message list performance.

##### UserService

- `ListInvitationsRequest` not filters out accepted invitations by default.
- Added `ListInvitationsRequest.include_accepted` to include accepted invitations.

##### StatusService

- Fixed a performance issue for the status call when the list of publishers was included.

### 0.85 (2021-08-23)

This release improves the generated API documentation and fixes a few bugs.
Expand Down
1 change: 1 addition & 0 deletions base.proto
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,7 @@ enum UnitOfMeasurement {
PRESSURE_BAR = 12;
PRESSURE_BAR_GROUND = 13;
PRESSURE_PSI = 14;
PRESSURE_K_PA = 17;
VOLTAGE_MILLIVOLT = 15;
PERCENT = 16;
}
1 change: 1 addition & 0 deletions docs/easypulse.md
Original file line number Diff line number Diff line change
Expand Up @@ -961,6 +961,7 @@ Unit of measurement for a numeric value.
| PRESSURE_BAR | none | 12 |
| PRESSURE_BAR_GROUND | none | 13 |
| PRESSURE_PSI | none | 14 |
| PRESSURE_K_PA | none | 17 |
| VOLTAGE_MILLIVOLT | none | 15 |
| PERCENT | none | 16 |

Expand Down
1 change: 1 addition & 0 deletions docs/map.md
Original file line number Diff line number Diff line change
Expand Up @@ -763,6 +763,7 @@ Unit of measurement for a numeric value.
| PRESSURE_BAR | none | 12 |
| PRESSURE_BAR_GROUND | none | 13 |
| PRESSURE_PSI | none | 14 |
| PRESSURE_K_PA | none | 17 |
| VOLTAGE_MILLIVOLT | none | 15 |
| PERCENT | none | 16 |

Expand Down
1 change: 1 addition & 0 deletions docs/modem.md
Original file line number Diff line number Diff line change
Expand Up @@ -1528,6 +1528,7 @@ Unit of measurement for a numeric value.
| PRESSURE_BAR | none | 12 |
| PRESSURE_BAR_GROUND | none | 13 |
| PRESSURE_PSI | none | 14 |
| PRESSURE_K_PA | none | 17 |
| VOLTAGE_MILLIVOLT | none | 15 |
| PERCENT | none | 16 |

Expand Down
1 change: 1 addition & 0 deletions docs/modem_alarm.md
Original file line number Diff line number Diff line change
Expand Up @@ -1452,6 +1452,7 @@ Unit of measurement for a numeric value.
| PRESSURE_BAR | none | 12 |
| PRESSURE_BAR_GROUND | none | 13 |
| PRESSURE_PSI | none | 14 |
| PRESSURE_K_PA | none | 17 |
| VOLTAGE_MILLIVOLT | none | 15 |
| PERCENT | none | 16 |

Expand Down
1 change: 1 addition & 0 deletions docs/modem_message_body_parser.md
Original file line number Diff line number Diff line change
Expand Up @@ -1311,6 +1311,7 @@ Unit of measurement for a numeric value.
| PRESSURE_BAR | none | 12 |
| PRESSURE_BAR_GROUND | none | 13 |
| PRESSURE_PSI | none | 14 |
| PRESSURE_K_PA | none | 17 |
| VOLTAGE_MILLIVOLT | none | 15 |
| PERCENT | none | 16 |

Expand Down
1 change: 1 addition & 0 deletions docs/named_location.md
Original file line number Diff line number Diff line change
Expand Up @@ -766,6 +766,7 @@ Unit of measurement for a numeric value.
| PRESSURE_BAR | none | 12 |
| PRESSURE_BAR_GROUND | none | 13 |
| PRESSURE_PSI | none | 14 |
| PRESSURE_K_PA | none | 17 |
| VOLTAGE_MILLIVOLT | none | 15 |
| PERCENT | none | 16 |

Expand Down
3 changes: 3 additions & 0 deletions user.proto
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@ message ListInvitationsRequest {

/* Search the invited email addresses. */
string search = 2;

/* Whether to include invitations that were already accepted. */
bool include_accepted = 3;
}

/* Accept an invitation to an organization. */
Expand Down

0 comments on commit 5bd154c

Please sign in to comment.