From b5ac8564438b21faaac12b8b62897ced90e1c176 Mon Sep 17 00:00:00 2001 From: James Coglan Date: Mon, 10 Jun 2019 12:24:00 +0100 Subject: [PATCH] Bump version to 0.7.1 --- CHANGELOG.md | 10 ++++++++++ LICENSE.md | 2 +- package.json | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 47c8d23..df36485 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +### 0.7.1 / 2019-06-10 + +- Catch any exceptions produced while generating a handshake response and send a + `400 Bad Request` response to the client +- Pick the RFC-6455 protocol version if the request contains any of the headers + used by that version +- Use the `Buffer.alloc()` and `Buffer.from()` functions instead of the unsafe + `Buffer()` constructor +- Handle errors encountered while handling malformed draft-76 requests + ### 0.7.0 / 2017-09-11 - Add `ping` and `pong` to the set of events users can listen to diff --git a/LICENSE.md b/LICENSE.md index d18ebc8..08707a6 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,4 +1,4 @@ -Copyright 2010-2017 James Coglan +Copyright 2010-2019 James Coglan Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the diff --git a/package.json b/package.json index 77efff2..1f9af1b 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "websocket" ], "license": "Apache-2.0", - "version": "0.7.0", + "version": "0.7.1", "engines": { "node": ">=0.8.0" },