forked from discourse/message_bus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCHANGELOG
More file actions
105 lines (83 loc) · 3.08 KB
/
CHANGELOG
File metadata and controls
105 lines (83 loc) · 3.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
09-07-2015
- Version 1.0.16
- Fix: correct edge cases around keepalive checks on bus
09-07-2015
- Version 1.0.15
- Feature: MessageBus.reliable_pub_sub.max_backlog_age (in secs) configurable (default to 7 days)
- Fix: API for MessageBus.backlog("/bla") was returning global backlog by mistake
- Change: Max global backlog size reduced to 2000 elements
08-06-2015
- Version 1.0.14
- Fix: we can not use Thread#kill best keepalive can do is terminate process cleanly
- Feature: you can opt-out of keepalive with MessageBus.keepalive_timeout = 0
08-06-2015
- Version 1.0.13
- Fix: on global subscribe reconnect replay missed messages
- Feature: keepalive tests for global subscribe, catches hung redis connections
28-05-2015
- Version 1.0.12
- Feature: Support client_id targetted message
06-05-2015
- Version 1.0.11
- Fix: race condition in TimerThread
01-05-2015
- Version: 1.0.10
- Feature: no longer depends on EventMachine (only used for Thin backend)
- Feature: realiable pub sub will queue messages in memory if redis is readonly, configurable
- Fix: if redis is flushed we will continue to deliver messages
23-03-2015
- Version 1.0.9
- Fix: inherit off StandardError not Exception for all exceptions raised
20-03-2015
- Version 1.0.8
- Fix: aggressive short polling in background
16-03-2015
- Version 1.0.7
- Feature: added pause and resume methods
03-02-2015
- Version 1.0.6
- Fix: global backlog not truncating correctly
23-09-2014
- Version 1.0.5
- Fix: missing custom headers from long polls
23-09-2014
- Version 1.0.4
- Change: MessageBus.access_control_allow_origin_lookup to extra_response_headers_lookup
23-09-2014
- Version 1.0.3
- Change: MessageBus.access_control_allow_origin to MessageBus.access_control_allow_origin_lookup
23-09-2014
- Version 1.0.2
- Feature: MessageBus.access_control_allow_origin to control origin header
23-09-2014
- Version 1.0.1
- Feature: $.ajax dependency can be passed in.
- Feature: unsubscribe accepts a second param for the function to unsubscribe.
22-09-2014
- Version 1.0.0
- Feature: add backgroundCallbackInterval - interval to send polls when page is in the background
- Feature: issue a long poll as soon as page moves into the foreground
11-08-2014
- Version 0.9.5
- Fix: release db connection a lot earlier for long polling (rails defer closes)
13-01-2014
- Version 0.9.4
- Added support for /global/ channel to publish messages across a multisite
- Cleaned up test harness so it uses local bus as opposed to global
- Fix bug where we could subscribe to a channel but miss starting messages
- Added method for destroying a local MessageBus instance
- ensure_reactor could say the reactor is running, but it was not, on first call
06-12-2013
- Version 0.9.3.2
- Fix permissions in gem
05-12-2013
- Version 0.9.3.1
- Add MessageBus.diagnostics() for diagnosing bus issues client side
- Add more robustness to JavaScript, if callbacks used to fail they would halt the chain
03-12-2013
- Version 0.9.3
- Remove thin dependency
- Improve robustness under failure conditions
30-09-2013
- Fix failures in Ruby 1.9
- Set up rack hijack by default in light of passengers new setting