Skip to content

Commit 51ff90b

Browse files
committed
Release v2.2.0
1 parent 38122ac commit 51ff90b

File tree

1 file changed

+39
-31
lines changed

1 file changed

+39
-31
lines changed

CHANGELOG.md

Lines changed: 39 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,43 @@
1-
#Change Log
1+
# Change Log
22
## [2.2.0](https://github.com/aws/aws-iot-device-sdk-embedded-C/releases/tag/v2.2.0) (Nov 22, 2017)
3-
Bugfixes/Improvements:
4-
- Bugfixes/Improvements:
5-
- [#49](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/49) - Add support for SHADOW_JSON_STRING as supported value
6-
- [#57](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/57) - remove unistd.h
7-
- [#58](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/58) - Fix return type of _aws_iot_mqtt_internal_is_
8-
- [#59](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/95) - Fix extraneous assignmenttopic_matched
9-
- [#62](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/62) - Clearing SubscriptionList entries in shadowActionAcks after subscription failure
10-
- [#63](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/63) - Stack overflow when IOT_DEBUG is enabled
11-
- [#66](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/66) - Bug in send packet function
12-
- [#69](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/69) - Fix for broken deleteActionHandler in shadow API
13-
- [#71](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/71) - Prevent messages on /update/accepted from incrementing shadowJsonVersionNum in delta
14-
- [#73](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/73) - wait for all messages to be received in subscribe publish sample
15-
- [#96](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/96) - destroy TLS instance even if disconnect send fails
16-
- Fix for aws_iot_mqtt_resubscribe not properly resubscribing to all topics
17-
- Update MbedTLS Network layer Readme to remove specific version link
18-
- Fix for not Passing througheError code on aws_iot_shadow_connect failure
19-
- Allow sending of SHADOW_JSON_OBJECT to the shadow
20-
- Ignore delta token callback for metadata
21-
- Fix infinite publish exiting early in subscribe publish sample
22-
- Improvements:
23-
- Updated jsmn to latest commit
24-
- Pull requests:
25-
- [#29](https://github.com/aws/aws-iot-device-sdk-embedded-C/pull/29) - three small fixes
26-
- [#59](https://github.com/aws/aws-iot-device-sdk-embedded-C/pull/59) - Fixed MQTT header constructing and parsing
27-
- [#88](https://github.com/aws/aws-iot-device-sdk-embedded-C/pull/88) - Fix username and password are confused
28-
- [#78](https://github.com/aws/aws-iot-device-sdk-embedded-C/pull/78) - Fixed compilation warnings
29-
- [#102](https://github.com/aws/aws-iot-device-sdk-embedded-C/pull/102) - Corrected markdown headers
30-
- [#105](https://github.com/aws/aws-iot-device-sdk-embedded-C/pull/105) - Fixed warnings when compiling
31-
- Change default keepalive interval to 600 seconds
32-
- Added SDK metrics string into connect packet
3+
4+
New Features:
5+
6+
- Added SDK metrics string into connect packet
7+
8+
Bugfixes:
9+
10+
- [#49](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/49) - Add support for SHADOW_JSON_STRING as supported value
11+
- [#57](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/57) - remove unistd.h
12+
- [#58](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/58) - Fix return type of aws_iot_mqtt_internal_is_topic_matched
13+
- [#59](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/95) - Fix extraneous assignment
14+
- [#62](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/62) - Clearing SubscriptionList entries in shadowActionAcks after subscription failure
15+
- [#63](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/63) - Stack overflow when IOT_DEBUG is enabled
16+
- [#66](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/66) - Bug in send packet function
17+
- [#69](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/69) - Fix for broken deleteActionHandler in shadow API
18+
- [#71](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/71) - Prevent messages on /update/accepted from incrementing shadowJsonVersionNum in delta
19+
- [#73](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/73) - wait for all messages to be received in subscribe publish sample
20+
- [#96](https://github.com/aws/aws-iot-device-sdk-embedded-C/issues/96) - destroy TLS instance even if disconnect send fails
21+
- Fix for aws_iot_mqtt_resubscribe not properly resubscribing to all topics
22+
- Update MbedTLS Network layer Readme to remove specific version link
23+
- Fix for not Passing througheError code on aws_iot_shadow_connect failure
24+
- Allow sending of SHADOW_JSON_OBJECT to the shadow
25+
- Ignore delta token callback for metadata
26+
- Fix infinite publish exiting early in subscribe publish sample
27+
28+
Improvements:
29+
30+
- Updated jsmn to latest commit
31+
- Change default keepalive interval to 600 seconds
32+
33+
Pull requests:
34+
35+
- [#29](https://github.com/aws/aws-iot-device-sdk-embedded-C/pull/29) - three small fixes
36+
- [#59](https://github.com/aws/aws-iot-device-sdk-embedded-C/pull/59) - Fixed MQTT header constructing and parsing
37+
- [#88](https://github.com/aws/aws-iot-device-sdk-embedded-C/pull/88) - Fix username and password are confused
38+
- [#78](https://github.com/aws/aws-iot-device-sdk-embedded-C/pull/78) - Fixed compilation warnings
39+
- [#102](https://github.com/aws/aws-iot-device-sdk-embedded-C/pull/102) - Corrected markdown headers
40+
- [#105](https://github.com/aws/aws-iot-device-sdk-embedded-C/pull/105) - Fixed warnings when compiling
3341

3442
## [2.1.1](https://github.com/aws/aws-iot-device-sdk-embedded-C/releases/tag/v2.1.1) (Sep 5, 2016)
3543

0 commit comments

Comments
 (0)