Skip to content

Releases: adzialocha/osc-js

v2.0.3

12 Mar 16:32
Compare
Choose a tag to compare
  • Update dependencies
  • Fixes an issue with incorrect umd global variable detection: #37 (see rollup/rollup#2594)

v2.0.2

02 Nov 09:55
Compare
Choose a tag to compare
  • Correctly check for WebSocket class in browser context 1d0b964

v2.0.1

01 Nov 17:16
Compare
Choose a tag to compare
  • Remove outdated build files 4cb1ebb

v2.0.0

01 Nov 17:09
Compare
Choose a tag to compare

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);
})
  • Chore: Code and README.md cleanup #32
  • Chore: Use ESDoc Hosting again #30

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

19 Jan 08:44
e58e34d
Compare
Choose a tag to compare
  • Chore: Remove bower support #26

1.2.1

19 Jan 08:43
Compare
Choose a tag to compare
  • Chore: Remove rollem and use new rollup API instead #26

1.2.0

10 Nov 13:34
Compare
Choose a tag to compare

1.1.1

05 Nov 18:55
Compare
Choose a tag to compare
  • Fix: Check correctly for undefined variable #21

1.1.0

04 Nov 23:46
Compare
Choose a tag to compare
  • Feature: Support Webpack builds with dedicated no-dependency osc.browser.js library version #20 (Wiki)

1.0.6

01 Nov 00:07
Compare
Choose a tag to compare
  • Fix: Large string support #16
  • Fix: Dispatch enclosed bundles correctly #19