Skip to content

Commit

Permalink
0.52
Browse files Browse the repository at this point in the history
  • Loading branch information
wbouvy committed Jul 6, 2020
1 parent 400c61c commit 7dab5af
Show file tree
Hide file tree
Showing 7 changed files with 50 additions and 0 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# Changelog Hiber API

### 0.52 (2020-07-06)

This release contains a few minor additions and some bugfixes.

#### Changes

##### AWSIoTService

- Added `created_by`, containing the user id of the user who created this publisher, to `AWSIoTConfiguration`.

##### MQTTService

- Added `created_by`, containing the user id of the user who created this publisher, to `MQTTPublisher`.

##### SlackIntegrationService

- Added `created_by`, containing the user id of the user who created this publisher, to `SlackPublisher`.

##### WebhookService

- Added `created_by`, containing the user id of the user who created this publisher, to `Webhook`.

##### Other

- Added `created_by`, containing the user id of the user who created this publisher, to `Publisher`
(the generic publisher object used in events).

#### Bugfixes

- Fixed a bug where some message would not generate message events, because of a bug in the changes that introduced
the new `ModemMessageBodyReceivedEvent` and `ModemMessageBodyParsedEvent` types.
No data was lost, and the events will be generated by the system after the update.

### 0.51 (2020-06-29)

This release introduces automatic assignment rules for modem message body parsers.
Expand Down
1 change: 1 addition & 0 deletions email_notifications.proto
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ message EmailNotificationPreferences {
string name = 2;
}

/* The organization that owns this publisher */
string organization = 1;

/* Events to receive by email. */
Expand Down
4 changes: 4 additions & 0 deletions integration_aws_iot.proto
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ service AWSIoTService {

message AWSIoTConfiguration {
int64 publisher_id = 1;

/* The uid of the user that created this publisher. */
string created_by = 12;

string url = 2;
Filter.Modems modems = 3;
int64 certificate_id = 4;
Expand Down
4 changes: 4 additions & 0 deletions integration_mqtt.proto
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ service MQTTService {
message MQTTPublisher {
int64 id = 1;
string description = 2;

/* The uid of the user that created this publisher */
string created_by = 10;

Data data = 3;
Filter.Events filter_event_types = 4;
Filter.Modems filter_modem_numbers = 5;
Expand Down
4 changes: 4 additions & 0 deletions integration_slack.proto
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ service SlackIntegrationService {
message SlackPublisher {
int64 id = 1;
string description = 2;

/* The uid of the user that created this publisher */
string created_by = 10;

Data data = 3;
Filter.Events filter_event_types = 4;
Filter.Modems filter_modem_numbers = 5;
Expand Down
3 changes: 3 additions & 0 deletions publisher.proto
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ message Publisher {
Timestamp in_cooldown_until = 8;
bool disabled = 9;

/* Firebase uid of the user that created this publisher */
string created_by = 15;

/* The configuration for its type. */
oneof data {
webhook.Webhook.WebhookData http = 10;
Expand Down
1 change: 1 addition & 0 deletions webhook.proto
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ service WebhookService {
message Webhook {
int64 id = 1;
string organization = 2;
string created_by = 10;
string description = 3;
WebhookData data = 4;
WebhookFilters filters = 5;
Expand Down

0 comments on commit 7dab5af

Please sign in to comment.