All Versions
13
Latest Version
Avg Release Cycle
91 days
Latest Release
3462 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v1.3.8 Changes
June 17, 2015- Fix: Correct potential concurrency problem which might have occurred when registering on multiple threads at once.
-
v1.3.7 Changes
May 08, 2015- Fix: Correct concurrency problem which might have occurred when registering on multiple threads at once.
-
v1.3.6 Changes
January 20, 2015- Explicitly prevent registering the same instance twice.
-
v1.3.5 Changes
June 10, 2014- Fix: Ignore synthetic bridge methods created by JDK 8.
-
v1.3.4 Changes
June 24, 2013- Explicitly disallow
null
argument toregister
,unregister
, andpost
.
- Explicitly disallow
-
v1.3.3 Changes
February 18, 2013- Explicitly disallow
void
return type on@Produce
methods. - Avoid producers and subscribers being called after unregistering from inside a subscribe method.
- Explicitly disallow
-
v1.3.2 Changes
October 16, 2012- Avoid potential
IllegalArgumentException
when unregistering in a subscriber callback.
- Avoid potential
-
v1.3.1 Changes
September 17, 2012- Ensure concurrency internally when calling
register
.
- Ensure concurrency internally when calling
-
v1.3.0 Changes
August 08, 2012- Exceptions in handlers and producers are no longer caught and logged.
- Producer methods can return
null
to indicate that there is no initial value to dispatch. No subscriber methods will be called ifnull
is returned. - An exception is now thrown if a class attempts to subscribe or produce on a non-public method.
-
v1.2.1 Changes
July 01, 2012- Producer methods can no longer return
null
.
- Producer methods can no longer return