You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+43-51Lines changed: 43 additions & 51 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# CHANGELOG
2
2
3
-
## UNRELEASED
3
+
## 6.0.4
4
4
5
5
- Fix failing functional/smoke tests
6
6
- Update to node v24
@@ -109,41 +109,38 @@
109
109
110
110
- Add `teardown` method for easy cleanup
111
111
112
-
_Breaking Changes_
113
-
114
-
- Instantiate new instances of framebus
115
-
116
-
```js
117
-
// v4
118
-
var bus =require("framebus");
119
-
bus.on(/* args */);
120
-
bus.emit(/* args */);
121
-
122
-
// v5
123
-
var Framebus =require("framebus");
124
-
var bus =newFramebus();
125
-
bus.on(/* args */);
126
-
bus.emit(/* args */);
127
-
```
128
-
129
-
- Instantiating a framebus with `target` method with an `origin` param
130
-
now requires an options object (same object that is used to
131
-
instantiate the instance)
132
-
133
-
```js
134
-
// v4
135
-
var bus =require("framebus");
136
-
var anotherBus =bus.target("example.com");
137
-
138
-
// v5
139
-
var Framebus =require("framebus");
140
-
var bus =Framebus.target({
141
-
origin:"example.com",
142
-
});
143
-
var anotherBus =bus.target({
144
-
origin:"example.com",
145
-
});
146
-
```
112
+
- BREAKING CHANGES
113
+
- Instantiate new instances of framebus
114
+
115
+
```js
116
+
// v4
117
+
var bus =require("framebus");
118
+
bus.on(/* args */);
119
+
bus.emit(/* args */);
120
+
121
+
// v5
122
+
var Framebus =require("framebus");
123
+
var bus =newFramebus();
124
+
bus.on(/* args */);
125
+
bus.emit(/* args */);
126
+
```
127
+
128
+
- Instantiating a framebus with`target` method with an `origin` param now requires an options object (same object that is used to instantiate the instance)
129
+
130
+
```js
131
+
// v4
132
+
var bus = require("framebus");
133
+
var anotherBus = bus.target("example.com");
134
+
135
+
// v5
136
+
var Framebus = require("framebus");
137
+
var bus = Framebus.target({
138
+
origin: "example.com",
139
+
});
140
+
var anotherBus = bus.target({
141
+
origin: "example.com",
142
+
});
143
+
```
147
144
148
145
## 4.0.5
149
146
@@ -166,15 +163,13 @@ _Breaking Changes_
166
163
167
164
## v4.0.0
168
165
169
-
_Breaking Changes_
170
-
171
-
- Drop support for IE \< 9
172
-
- Drop support for using methods standalone without using the bus
173
-
- Drop `publish`, `pub`, and `trigger` methods. Use `emit`
174
-
- Drop `subscribe` and `sub` methods. Use `on`
175
-
- Drop `unsubscribe` and `unsub` methods. Use `off`
176
-
- Drop support for passing multiple arguments to `emit`, not it only
177
-
supports passing `data` and `reply`
166
+
-BREAKINGCHANGES
167
+
- Drop support forIE \<9
168
+
- Drop support for using methods standalone without using the bus
169
+
- Drop `publish`, `pub`, and `trigger`methods. Use`emit`
170
+
- Drop `subscribe` and `sub`methods. Use`on`
171
+
- Drop `unsubscribe` and `unsub`methods. Use`off`
172
+
- Drop support for passing multiple arguments to `emit`, not it only supports passing `data` and `reply`
178
173
179
174
## 3.0.2
180
175
@@ -188,12 +183,9 @@ _Breaking Changes_
188
183
189
184
## 3.0.0
190
185
191
-
_BREAKING CHANGES_
192
-
193
-
- Module is now CommonJS only, and must be used with npm with a build
194
-
tool (Browserify, Webpack, etc)
195
-
196
-
- Bower support dropped
186
+
-BREAKINGCHANGES
187
+
- Module is now CommonJS only, and must be used with npm with a build tool (Browserify, Webpack, etc)
0 commit comments