source: rtos_arduino/trunk/arduino_lib/libraries/pubsubclient-2.6/CHANGES.txt@ 209

Last change on this file since 209 was 209, checked in by ertl-honda, 8 years ago

BlueMix用のフィアルを追加

File size: 2.0 KB
Line 
12.4
2 * Add MQTT_SOCKET_TIMEOUT to prevent it blocking indefinitely
3 whilst waiting for inbound data
4 * Fixed return code when publishing >256 bytes
5
62.3
7 * Add publish(topic,payload,retained) function
8
92.2
10 * Change code layout to match Arduino Library reqs
11
122.1
13 * Add MAX_TRANSFER_SIZE def to chunk messages if needed
14 * Reject topic/payloads that exceed MQTT_MAX_PACKET_SIZE
15
162.0
17 * Add (and default to) MQTT 3.1.1 support
18 * Fix PROGMEM handling for Intel Galileo/ESP8266
19 * Add overloaded constructors for convenience
20 * Add chainable setters for server/callback/client/stream
21 * Add state function to return connack return code
22
231.9
24 * Do not split MQTT packets over multiple calls to _client->write()
25 * API change: All constructors now require an instance of Client
26 to be passed in.
27 * Fixed example to match 1.8 api changes - dpslwk
28 * Added username/password support - WilHall
29 * Added publish_P - publishes messages from PROGMEM - jobytaffey
30
311.8
32 * KeepAlive interval is configurable in PubSubClient.h
33 * Maximum packet size is configurable in PubSubClient.h
34 * API change: Return boolean rather than int from various functions
35 * API change: Length parameter in message callback changed
36 from int to unsigned int
37 * Various internal tidy-ups around types
381.7
39 * Improved keepalive handling
40 * Updated to the Arduino-1.0 API
411.6
42 * Added the ability to publish a retained message
43
441.5
45 * Added default constructor
46 * Fixed compile error when used with arduino-0021 or later
47
481.4
49 * Fixed connection lost handling
50
511.3
52 * Fixed packet reading bug in PubSubClient.readPacket
53
541.2
55 * Fixed compile error when used with arduino-0016 or later
56
57
581.1
59 * Reduced size of library
60 * Added support for Will messages
61 * Clarified licensing - see LICENSE.txt
62
63
641.0
65 * Only Quality of Service (QOS) 0 messaging is supported
66 * The maximum message size, including header, is 128 bytes
67 * The keepalive interval is set to 30 seconds
68 * No support for Will messages
Note: See TracBrowser for help on using the repository browser.