Skip to content

Releases: canjs/can-connect-feathers

v1.1.1

24 Aug 01:34
Compare
Choose a tag to compare
  • Added tests for auth over XHR/REST.

v1.1.0

24 Aug 01:33
Compare
Choose a tag to compare
  • Feature: Can now authenticate directly with socket.io

v1.0.0

24 Aug 01:33
Compare
Choose a tag to compare
  • Adds full socket.io support. Going all-in on socket.io is much faster and more efficient than the hybrid rest/ real-time events setup!
  • Renamed the socketio option to allowSocketIO. Now you pass allowSocketIO: false to disable sockets.
  • Added socketio method to support socket.io as a transport for services.
  • Added integration tests with an actual Feathers server.

v0.6.9

24 Aug 01:32
Compare
Choose a tag to compare
  • Bugfix: Allow socket.io to connect to non-origin servers. (Upgrade steal-socket.io)

v0.6.8

24 Aug 01:32
Compare
Choose a tag to compare
  • Bugfix: Don't send data with DELETE requests. Thanks @kylegifford!

v0.6.7

24 Aug 01:32
Compare
Choose a tag to compare
  • Feature: Allow passing of id into get as an object literal {_id: 1}, in addition to string and number ids. Thanks @obaidott!

v0.6.6

24 Aug 01:32
Compare
Choose a tag to compare
  • Bugfix: disable JSON stringify for params, prevent params from being double stringified. Thanks @obaidott!

v0.6.0

24 Aug 01:31
Compare
Choose a tag to compare
  • it's now possible to turn off socket.io by passing socketio = false to the options. This has been renamed as of version 1.0.0.

v0.5.0

24 Aug 01:31
Compare
Choose a tag to compare
  • The default cookie name is now feathers-jwt to match the Feathers default.

v0.4.0

24 Aug 01:31
Compare
Choose a tag to compare
  • The rest methods now use a Promise instead of a Deferred.
  • Error responses are now converted to feathers-errors.