ChangeLog.txt 5.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. Version 0.10:
  2. Version 0.9:
  3. Moved canRead check to topic from publish phase to subscribe (#144)
  4. Added javadoc and src jars creations for JCenter/Maven central
  5. Added persisting of clean session flag for already existing client session (fix issue #145)
  6. Moved the message logic management fo FSM, to better control the concurrency.
  7. Changed default config to use in memory store and not default moquette.mapdb
  8. Version 0.8:
  9. Introduced authenticator and authorizator implementations.
  10. Fixed bug, doesn't close the channel when connect doesn't contains a valid proto name, issue #65
  11. Fixed bug, does not check for zero length topic (filters) in PUBLISH, SUBSCRIBE, and UNSUBSCRIBE, issue #67
  12. Fixed issue #69
  13. Fixed bug #68, UNSUBSCRIBE has to fail on bad topicFilter names
  14. Fixed bug #81, on stop of moquette broker it doesn't shutdown due to no shutdown of ringbuffer used on the back of ProtocolProcessor
  15. Moved config to be not only filesystem based, but also classpath and memory (fix issue #73)
  16. Switched from commit persistence on every change to time based to fix delay in handling many msgs/sec (fix issue #79)
  17. Changed willMessage and password in CONNECT message from String to byte[] (fix issue #94 and #95)
  18. Fixed ugly empty session storage, avoid fake NullObject empty subscription subscription
  19. Added check to avoid creation of LostConnectionEvents for not yet completed connects (fix issue #88)
  20. Removed LMAX ringbuffer to use multi threading with persistent (copy on write) data structures
  21. Fixed bug that on connection stolen dropped also the new connection (fix issue #108)
  22. Refactored the storage part to be more rational and use ClientSession concept
  23. Added config property 'autosave_interval' (issue #97)
  24. Removed leaking ref to parent's node (issue #119 and #126)
  25. Added internal publish once the broker is embedded (issue #113)
  26. Removed client active/not active state from persistence (issue #118)
  27. Avoid deletion of client descriptor in case of multiple clients with same clientID (issues #116 and #124)
  28. Removed a queue per client of inFlightIds (never cleaned) in favor of single atomic generator
  29. Version 0.7:
  30. Fix issue #38, added aligned to MQTT 3.1.1
  31. Refactored big event switch to @Annotation dispatcher
  32. Switched from HawtDB to MapDB
  33. Fixed bug that didn't update client subscription on persistent store so that on server restart there where ghost subscriptions.
  34. Fixed Issue #11, multiple republish of persisted QoS1/2 messages on clients reconnections.
  35. Refactored the publish logic for QoS 1 2 to try to be more readable
  36. Added packetIdentifier storage and generation
  37. Fixed issue #16, bad packetId for will messages with qos > 0
  38. Added store path variable "persistent_store" to configuration file (picked from Steven Warwick fork)
  39. Removed OSGi bundle, developer time burner
  40. Fixed github issue #30, returning error on mapdb file not deleted that corrupt reiterated builds
  41. Added handling of allow_anonymous clients (as in mosquitto issue #34)
  42. Modified the password_file format to use password stored in sha256 and not plain text
  43. Added ACL file for topic read|write operations.
  44. Removed cause of leakage of Netty Sessions (fix issue #39)
  45. Cleaned Netty's stuff reference from Events used in Disruptor (fix issue #40)
  46. Bad assignment of PacketID during publish to subscribed QoS0 topics (fix issue #38)
  47. Fixed duplicated subscription with different QoS same client and topic (fix issue #49)
  48. Fixed UNSUBSCRIBE that missed to remove the subscription from the persistent store (fix issue #50)
  49. Fixed issue on multiple publish for overlapping subscription by the same client (fix issue #52).
  50. Moved the authorization check before dropping an already connected client with same clientID (fix issue #44).
  51. Fixed subscription tree that was unable to update clean session flag on subs with same client, topic and qos (fix issue #55)
  52. Fixed overwriting of published qos in forward publish loop (fix issue #56)
  53. Version 0.6:
  54. Fix issue #42, bad password file path composition
  55. Fix issue #43, missed topic case (finance/+ does has to match finance)
  56. Integrated WebSocket support (issue #37)
  57. Integrated SSL support (issue #41)
  58. Fixed issue #40, check Logging inside the Felix OSGi
  59. Fixed issue #46, implement correct behaviour for Will stuff
  60. Splitted stores to persist messages and sessions into different interfaces
  61. Renamed some methods in sessions store
  62. Moved logging conf and slf4j-log4j deps out of broker to let it use the container's log configuration
  63. Version 0.5:
  64. Fix issue 20 (no flush of message on PINGREQ)
  65. Fix issue 21 (bad channel timeout handler)
  66. Created a self contained distribution package (issue 22)
  67. Fix issue 28, OSGi-fied the broker
  68. Fixed issue #31 missed to insert the hawtdb jars
  69. Added a separate mvn module to host the OSGi bundle declaration
  70. Fixed issue #30
  71. Added password file for identity management on connect (Fix #23)
  72. Version 0.4:
  73. Dropped support for MINA
  74. Fix Issue 15 (bad re-activation of client's subscriptions after a recconection)
  75. Fix Issue 16 (bad re-publish of stored messages after a client reconnection)
  76. Fixed a bug in unsubscribe due to missed clientID check
  77. Fixed Issue 18 (descriptor of a disconnected (not active) client)
  78. Bug fix for override subscriptions to the same /topic but with different QoS (latest wins)
  79. Added test to check the downgrading of QoS of messages sent to registered subscribers (fixed a bug of double delivery of QoS2 messages)
  80. Version 0.3:
  81. Added Netty IO connectors
  82. Dropped tests based on Fuse source client lib moving to Paho java client
  83. Version 0.2:
  84. Fixed issues (10, 11, 12, 13)
  85. Fixed interdependency bug in test