Skip to content

Commit

Permalink
0.137.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wbouvy committed Jan 23, 2023
1 parent cf564bb commit 7c3ef40
Show file tree
Hide file tree
Showing 105 changed files with 7,600 additions and 18,613 deletions.
42 changes: 42 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,61 @@
# Changelog Hiber API

### 0.137 (2023-01-23)

- Removed all satellite-related leftovers:
- Removed `satellite.proto` which contained the unused `SatelliteService`.
- Removed `GroundStation` and `Satellite` from `map.proto`.
- Removed `include_ground_stations` and `include_satellites` from `TileMapRequest`.
- Removed `ground_stations` and `satellites` from `TileMapRequest.Response`.
- Removed `ground_stations` and `satellites` from `StatusRequest.Response`.
- Removed `subscription.proto` and `ModemSelection.with_service_type`.

### 0.136 (2023-01-16)

##### AssignmentService

- Limited (un)assigning parsers to the owners of those parsers.
- Inherited parsers can now only be (un)assigned by their owners, impersonated into the child organization.

##### ModemTransferService

- Deprecated the ModemTransferService to be replaced by the much simpler TransferService.
- Reimplemented the ModemTransferService with the TransferService where possible.
- Some new limitation apply to the ModemTransferService because of this:
- transfers are always marked as received immediately
- returns are no longer supported

##### TransferService

- Introduced the TransferService as simple reimplementation of the transfer logic.
- Instead of marking received / not received, etc, a transfer is now automatic.
- Transfers are only allowed if you have access to the recipient organization.

#### Events

- Message export ready event will now contain modem tags in the description.

##### OrganizationService

- Removed the confirmation flow for organization delete.

### 0.135 (2023-01-02)

##### ModemMessageBodyParserService

- Added possibility to define a filter on modem message metadata.
The parser will only be applied to a message if the metadata matches.

##### ValueService

- Fixed a bug where modem data was merged together when requesting data for multiple modems.
- Fixed a bug where the modem field was never set.

##### ModemClaimService

- Removed the modem claim service.
- The proto is left in place to not break build immediately, but the service itself wil no longer be supported.

##### EasypulseService

- Removed the Easypulse service.
Expand Down
8 changes: 2 additions & 6 deletions base.proto
Original file line number Diff line number Diff line change
Expand Up @@ -261,11 +261,7 @@ enum EventType {
ASSIGNED = 63;
UNASSIGNED = 64;

MODEM_TRANSFER_STARTED = 17;
MODEM_TRANSFER_RECEIVED = 18;
MODEM_TRANSFER_CANCELLED = 19;
MODEM_TRANSFER_NOT_RECEIVED = 20;
MODEM_TRANSFER_RETURN_TRANSFER_STARTED = 21;
TRANSFER = 18;

PUBLISHER_CREATED = 1;
PUBLISHER_UPDATED = 2;
Expand All @@ -289,7 +285,7 @@ enum EventType {
EXPORT_READY = 66;
EXPORT_FAILED = 67;

reserved 6, 7, 13, 14, 16, 22 to 24, 27, 28, 29, 30;
reserved 6, 7, 13, 14, 16, 17, 19 to 24, 27, 28, 29, 30;
}

/* Filters used in many api calls to filter the data sources, results, etc.
Expand Down
2 changes: 1 addition & 1 deletion changelog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ merge conflicts on releases with the changelog file. On a release, all files in
format, will be added to the `CHANGELOG.md` file in the parent directory in lexicographical order.
The format of the filename should be:
```
WEB-<DESCRIPTIVE_NAME>.md
<DESCRIPTIVE_NAME>.md
```
where `<DESCRIPTIVE_NAME>` can be anything that describes the change. A typical format
would be to use `WEB-<TICKET_NUMBER>-<DESCRIPTION>` where `<TICKET_NUMBER>` is the Jira ticket number that this change
Expand Down
Loading

0 comments on commit 7c3ef40

Please sign in to comment.