diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 2921ac6..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,28 +0,0 @@ - -## [6.0.1](https://github.com/sclausen/ngx-mqtt/compare/1.10.0...6.0.1) (2018-05-06) - -### BREAKING CHANGES - -* ngx-mqtt@^6.0.0 is compatible to angular@^6.0.0 - - - -## [1.10.0](https://github.com/sclausen/ngx-mqtt/compare/1.0.9...1.10.0) (2017-05-19) - -### Features - -* **service:** throw an error, if the the suback contains a rejection ([#22](https://github.com/sclausen/ngx-mqtt/issues/22)) ([683ebdd](https://github.com/sclausen/ngx-mqtt/commit/683ebdd)) - -### BREAKING CHANGES - -* Previously, observing and then subscribing to a topic, which causes the actual MQTT subscription, wouldn't throw an error, if the subscription got rejected. Now, an Error will be thrown, which **must** be caught. - -``` ts - this.mqtt - .observe('forbidden/filter') - .subscribe((msg: MqttMessage) => { - // handle message - }, (e) => { - // error callback - }) -```