Skip to content

Commit

Permalink
NOJIRA: Updated to latest dependencies, including fix to ws client fo…
Browse files Browse the repository at this point in the history
…r API change for 2.x, Kettle 1.4.0
  • Loading branch information
amb26 committed Feb 18, 2017
1 parent 2070cb6 commit 0a78acc
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
7 changes: 7 additions & 0 deletions History.md
@@ -1,3 +1,10 @@
1.4.0 / 2017-02-18
==================

* KETTLE-57: Fix for failure to properly mark request during action of asynchronous middleware (static serving
middleware was broken prior to this release)
* Updated to latest dependencies (including ws 2.x)

1.3.2 / 2017-01-31
==================

Expand Down
3 changes: 2 additions & 1 deletion lib/test/KettleTestUtils.ws.js
Expand Up @@ -23,7 +23,8 @@ fluid.defaults("kettle.test.request.ws", {
gradeNames: ["kettle.test.request"],
receiveJSON: true, // deserialize all received data as JSON
sendJSON: true, // serialize all sent data as JSON
webSocketsProtocols: null, // forwarded to "protocols" argument of new ws.WebSocket()
// forwarded to "protocols" argument of new ws.WebSocket() - ws 2.x requires this to be [] rather than null
webSocketsProtocols: [],
invokers: {
connect: {
funcName: "kettle.test.request.ws.connect",
Expand Down
14 changes: 7 additions & 7 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "kettle",
"description": "Declarative IoC-based framework for HTTP and WebSockets servers on node.js based on express and ws",
"version": "1.3.2",
"version": "1.4.0",
"author": {
"name": "The Fluid Project"
},
Expand All @@ -13,13 +13,13 @@
},
"homepage": "http://wiki.fluidproject.org/display/fluid/Kettle",
"dependencies": {
"express": "4.14.0",
"body-parser": "1.16.0",
"express": "4.14.1",
"body-parser": "1.16.1",
"cookie-parser": "1.4.3",
"express-session": "1.15.0",
"express-session": "1.15.1",
"serve-static": "1.11.2",
"ws": "1.1.1",
"infusion": "3.0.0-dev.20170131T153243Z.6aab53a",
"ws": "2.0.3",
"infusion": "3.0.0-dev.20170214T161720Z.6126724",
"jsonlint": "1.6.2",
"fluid-resolve": "1.2.0",
"path-to-regexp": "1.7.0",
Expand Down Expand Up @@ -54,6 +54,6 @@
},
"main": "./kettle.js",
"engines": {
"node": ">=4.2.1"
"node": ">=4.5.0"
}
}

0 comments on commit 0a78acc

Please sign in to comment.