Releases: adzialocha/osc-js
Releases · adzialocha/osc-js
v2.0.3
- Update dependencies
- Fixes an issue with incorrect umd global variable detection: #37 (see rollup/rollup#2594)
v2.0.2
v2.0.1
v2.0.0
Updates
- Feature: Listener wildcard pattern matching #31
Now it is possible to use the on
function with pattern matching, for example:
osc.on('/*', message => {
console.log(message);
})
osc.on('/{foo,bar}/*/param', message => {
console.log(message);
})
Breaking changes
- Chore: Use
isomorphic-ws
#33
Webpack users don't need to handle the library different anymore, it should work out of the box in Browsers now. WebsocketBrowserPlugin
was removed.
1.2.2
1.2.1
1.2.0
- Feature: Secure flag for wss protocol #22
- Chore: Host own documentation folder #23 (related to esdoc/esdoc-hosting#20)