apollo-client-ws
Advanced tools
Comparing version 2.4.0 to 2.5.0
/* | ||
** Apollo-Client-WS -- GraphQL WebSocket Network Link for Apollo Client | ||
** Copyright (c) 2017-2018 Ralf S. Engelschall <rse@engelschall.com> | ||
** Copyright (c) 2017-2019 Dr. Ralf S. Engelschall <rse@engelschall.com> | ||
** | ||
@@ -5,0 +5,0 @@ ** Permission is hereby granted, free of charge, to any person obtaining |
/* | ||
** Apollo-Client-WS -- GraphQL WebSocket Network Link for Apollo Client | ||
** Copyright (c) 2017-2018 Ralf S. Engelschall <rse@engelschall.com> | ||
** Copyright (c) 2017-2019 Dr. Ralf S. Engelschall <rse@engelschall.com> | ||
** | ||
@@ -48,3 +48,3 @@ ** Permission is hereby granted, free of charge, to any person obtaining | ||
** Apollo-Client-WS -- GraphQL WebSocket Network Link for Apollo Client | ||
** Copyright (c) 2017-2018 Ralf S. Engelschall <rse@engelschall.com> | ||
** Copyright (c) 2017-2019 Dr. Ralf S. Engelschall <rse@engelschall.com> | ||
** | ||
@@ -51,0 +51,0 @@ ** Permission is hereby granted, free of charge, to any person obtaining |
{ | ||
"name": "apollo-client-ws", | ||
"version": "2.4.0", | ||
"version": "2.5.0", | ||
"description": "GraphQL WebSocket Network Interface for Apollo Client", | ||
@@ -14,3 +14,3 @@ "keywords": [ "graphql", "websocket", "network", "interface", "transport", "apollo", "client" ], | ||
"author": { | ||
"name": "Ralf S. Engelschall", | ||
"name": "Dr. Ralf S. Engelschall", | ||
"email": "rse@engelschall.com", | ||
@@ -29,10 +29,10 @@ "url": "http://engelschall.com" | ||
"dependencies": { | ||
"graphql": "0.13.2", | ||
"graphql-query-compress": "1.2.0", | ||
"websocket-framed": "1.2.0", | ||
"eventemitter3": "3.1.0", | ||
"latching": "1.0.4", | ||
"es6-promise": "4.2.5", | ||
"graphql": "14.3.1", | ||
"graphql-query-compress": "1.2.1", | ||
"websocket-framed": "1.2.1", | ||
"eventemitter3": "3.1.2", | ||
"latching": "1.0.5", | ||
"es6-promise": "4.2.8", | ||
"ducky": "2.7.0", | ||
"ws": "6.1.2" | ||
"ws": "7.0.0" | ||
}, | ||
@@ -46,6 +46,6 @@ "optionalDependencies": { | ||
"apollo-link": ">=1.0.7", | ||
"grunt": "1.0.3", | ||
"grunt": "1.0.4", | ||
"grunt-cli": "1.3.2", | ||
"grunt-contrib-clean": "2.0.0", | ||
"grunt-eslint": "21.0.0", | ||
"grunt-eslint": "21.1.0", | ||
"grunt-browserify": "5.3.0", | ||
@@ -55,4 +55,4 @@ "browserify": "16.2.3", | ||
"babelify": "10.0.0", | ||
"@babel/core": "7.2.2", | ||
"@babel/preset-env": "7.2.3", | ||
"@babel/core": "7.4.5", | ||
"@babel/preset-env": "7.4.5", | ||
"uglifyify": "5.0.1", | ||
@@ -63,8 +63,8 @@ "browserify-header": "1.0.0", | ||
"babel-eslint": "10.0.1", | ||
"eslint": "5.11.0", | ||
"eslint": "5.16.0", | ||
"eslint-config-standard": "12.0.0", | ||
"eslint-plugin-standard": "4.0.0", | ||
"eslint-plugin-promise": "4.0.1", | ||
"eslint-plugin-import": "2.14.0", | ||
"eslint-plugin-node": "8.0.0" | ||
"eslint-plugin-promise": "4.1.1", | ||
"eslint-plugin-import": "2.17.3", | ||
"eslint-plugin-node": "9.1.0" | ||
}, | ||
@@ -71,0 +71,0 @@ "engines": { |
@@ -158,3 +158,3 @@ | ||
Copyright (c) 2017-2018 Ralf S. Engelschall (http://engelschall.com/) | ||
Copyright (c) 2017-2019 Dr. Ralf S. Engelschall (http://engelschall.com/) | ||
@@ -161,0 +161,0 @@ Permission is hereby granted, free of charge, to any person obtaining |
@@ -6,23 +6,23 @@ { | ||
"dependencies": { | ||
"graphql": "0.13.2", | ||
"graphql-tag": "2.10.0", | ||
"graphql-tools": "4.0.3", | ||
"hapi": "17.8.1", | ||
"graphql": "14.3.1", | ||
"graphql-tag": "2.10.1", | ||
"graphql-tools": "4.0.4", | ||
"hapi": "18.1.0", | ||
"hapi-plugin-websocket": "2.0.16", | ||
"boom": "7.3.0", | ||
"apollo-client": "2.4.8", | ||
"apollo-client": "2.6.2", | ||
"apollo-client-ws": "file:../", | ||
"apollo-cache-inmemory": "1.3.12" | ||
"apollo-cache-inmemory": "1.6.2" | ||
}, | ||
"devDependencies": { | ||
"grunt": "1.0.3", | ||
"grunt": "1.0.4", | ||
"grunt-cli": "1.3.2", | ||
"grunt-contrib-clean": "2.0.0", | ||
"grunt-eslint": "21.0.0", | ||
"grunt-eslint": "21.1.0", | ||
"grunt-browserify": "5.3.0", | ||
"browserify": "16.2.3", | ||
"babelify": "10.0.0", | ||
"@babel/core": "7.2.2", | ||
"@babel/preset-env": "7.2.3", | ||
"rimraf": "2.6.2" | ||
"@babel/core": "7.4.5", | ||
"@babel/preset-env": "7.4.5", | ||
"rimraf": "2.6.3" | ||
}, | ||
@@ -29,0 +29,0 @@ "scripts": { |
/* | ||
** Apollo-Client-WS -- GraphQL WebSocket Network Link for Apollo Client | ||
** Copyright (c) 2017-2018 Ralf S. Engelschall <rse@engelschall.com> | ||
** Copyright (c) 2017-2019 Dr. Ralf S. Engelschall <rse@engelschall.com> | ||
** | ||
@@ -5,0 +5,0 @@ ** Permission is hereby granted, free of charge, to any person obtaining |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
240591
2010
+ Addedes6-promise@4.2.8(transitive)
+ Addedeventemitter3@3.1.2(transitive)
+ Addedgraphql@14.3.1(transitive)
+ Addedgraphql-query-compress@1.2.1(transitive)
+ Addedlatching@1.0.5(transitive)
+ Addedtokenizr@1.5.2(transitive)
+ Addedwebsocket-framed@1.2.1(transitive)
+ Addedws@7.0.0(transitive)
- Removedes6-promise@4.2.5(transitive)
- Removedeventemitter3@3.1.0(transitive)
- Removedgraphql@0.13.2(transitive)
- Removedgraphql-query-compress@1.2.0(transitive)
- Removedlatching@1.0.4(transitive)
- Removedtokenizr@1.4.0(transitive)
- Removedwebsocket-framed@1.2.0(transitive)
- Removedws@6.1.2(transitive)
Updatedes6-promise@4.2.8
Updatedeventemitter3@3.1.2
Updatedgraphql@14.3.1
Updatedgraphql-query-compress@1.2.1
Updatedlatching@1.0.5
Updatedwebsocket-framed@1.2.1
Updatedws@7.0.0