zeekay / bebop

🎷 Jazzy build tool for sophisticated front-end development.
MIT License
18 stars 5 forks source link

Update ws to the latest version 🚀 #74

Closed greenkeeper[bot] closed 6 years ago

greenkeeper[bot] commented 6 years ago

Version 4.0.0 of ws was just published.

Dependency ws
Current Version 3.3.3
Type dependency

The version 4.0.0 is not covered by your current version range.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of ws.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


Release Notes 4.0.0

Breaking changes

  • The close status code is now set to 1005 if the received close frame contains
    no status code (a31b1f6).
  • Error messages and types have been updated (695c5ea).
  • The onerror event handler now receives an ErrorEvent instead of JavaScript
    error (63e275e).
  • The third argument of WebSocket.prototype.ping() and
    WebSocket.prototype.pong() is no longer a boolean but an optional callback
    (30c9f71).
  • The non-standard protocolVersion and bytesReceived attributes have been
    removed (7f8ebc6...ee9b5f3).
  • The extensions attribute is no longer an object but a string representing
    the extensions selected by the server (fdec524).
  • The 'headers' event on the client has been renamed to 'upgrade'. Listeners
    of this event now receive only the response argument (1c783c2).
  • The WebSocket.prototype.pause() and WebSocket.prototype.resume() methods
    have been removed to prevent the user from interfering with the state of the
    underlying net.Socket stream (a206e98).
Commits

The new version differs by 19 commits.

  • a04d985 [dist] 4.0.0
  • d03ada2 [minor] Rename some variables for clarity
  • a206e98 [major] Remove WebSocket#pause() and WebSocket#resume()
  • 1c783c2 [major] Rename the 'headers' event to 'upgrade'
  • 9bbc978 [test] Reorganize tests
  • fdec524 [fix] Fix extentions property type
  • 46461a9 [minor] Refactor server client initialization
  • ee9b5f3 [major] Remove non-standard bytesReceived attribute
  • 7f8ebc6 [major] Remove non-standard protocolVersion attribute
  • 30c9f71 [major] Make WebSocket#p{i,o}ng() accept an optional callback
  • 63e275e [fix] Pass an ErrorEvent to the onerror event handler
  • 3936f3a [major] Rename modules files
  • 63ce954 [major] Remove ErrorCodes module
  • 695c5ea [major] Improve error messages and use specific error types
  • a31b1f6 [fix] Use 1005 status code if close frame payload length is 0

There are 19 commits in total.

See the full diff

FAQ and help There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).

Your Greenkeeper bot :palm_tree:

greenkeeper[bot] commented 6 years ago

Version 4.1.0 just got published.

Update to this version instead 🚀

Release Notes 4.1.0

Features

  • Added WebSocketServer.prototype.address() (#1294).
  • Added zlib{Deflate,Inflate}Options options (#1306).
Commits

The new version differs by 30 commits.

  • d390dc5 [dist] 4.1.0
  • a70bd65 [test] Fix typo
  • d8da1b2 [doc] Add missing zlibInflateOptions option
  • 053a322 [minor] Add zlib{Deflate,Inflate}Options options (#1306)
  • f2b5105 chore(package): update eslint-plugin-import to version 2.9.0 (#1309)
  • 84fa837 chore(package): update eslint-config-standard to version 11.0.0 (#1307)
  • 36f249d chore(package): update eslint to version 4.18.0 (#1304)
  • 563edbd [test] Use WebSocketServer#address()
  • 75b6397 [fix] Ensure that the status code is not incorrectly overwritten
  • c8408c0 [doc] Fix docs for onerror listener
  • 9194770 [doc] Fix typo
  • 98d1955 [doc] Add a link to isomorphic-ws (#1298)
  • 8281940 chore(package): update eslint-plugin-node to version 6.0.0 (#1295)
  • 8d61fa0 [api] Add WebSocketServer.prototype.address() (#1294)
  • 66b0d55 [minor] Use do...while in Receiver#startLoop()

There are 30 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 5.0.0 just got published.

Update to this version instead 🚀

Release Notes 5.0.0

Breaking changes

  • Dropped support for Node.js < 4.5.0 (#1313).
  • The connection is no longer closed if the server does not agree to any of
    the client's requested subprotocols (#1312).
  • net.Socket errors are no longer re-emitted (a4050db).

Features

  • Read backpressure is now properly handled when permessage-deflate is enabled
    (#1302).
Commits

The new version differs by 10 commits.

  • d3af506 [dist] 5.0.0
  • 7abe823 [minor] Rename abortConnection to abortHandshake
  • 7fb82a3 [fix] Rename the 'close' event to 'conclude'
  • fb05059 [test] Fix faulty test
  • 3f80ab7 [major] Drop support for Node.js < 4.5.0 (#1313)
  • 14538db [major] Fix subprotocol handling (#1312)
  • 3913c59 [benchmark] Fix parser benchmark
  • a4050db [major] Do not re-emit net.Socket errors
  • aa2c423 [minor] Do not use Readable.prototype.pipe()
  • 70fff53 [minor] Make Receiver inherit from stream.Writable

See the full diff

greenkeeper[bot] commented 6 years ago

Version 5.1.0 just got published.

Update to this version instead 🚀

Release Notes 5.1.0

Features

  • The address argument of the WebSocket constructor can now be a URL
    instance (#1329).
  • The options argument of the WebSocket constructor now accepts any TLS
    option that is also accepted by https.request() (#1332).
Commits

The new version differs by 7 commits.

  • 7c74567 [dist] 5.1.0
  • 9e152f9 [feature] Allow all options accepted by http{,s}.request() (#1332)
  • 938cdde chore(package): update eslint to version 4.19.0 (#1330)
  • 1504d67 [fix] Allow URL instances as URL in WebSocket constructor (#1329)
  • 57d3dbb chore(package): update nyc to version 11.6.0 (#1326)
  • 23f5957 [fix] Remove buffer noAssert argument (#1324)
  • 2a55dda chore(package): update eslint-plugin-promise to version 3.7.0 (#1321)

See the full diff