Socket
Socket
Sign inDemoInstall

cf-nodejs-client

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cf-nodejs-client - npm Package Compare versions

Comparing version 0.8.2 to 0.8.3

7

CHANGELOG.md

@@ -0,1 +1,8 @@

## Version 0.8.3 2015-10-19
- Adding the capability to add filters in a Service Binding Search.
39 passing (1m)
15 pending
## Version 0.8.2 2015-10-19

@@ -2,0 +9,0 @@

11

lib/model/ServiceBindings.js

@@ -28,5 +28,11 @@ /*jslint node: true*/

*/
ServiceBindings.prototype.getServiceBindings = function (token_type, access_token) {
ServiceBindings.prototype.getServiceBindings = function (token_type, access_token, filter) {
var url = this.API_URL + "/v2/service_bindings";
var qs = { };
if (filter) {
qs = filter;
}
var options = {

@@ -37,3 +43,4 @@ method: 'GET',

'Authorization': token_type + ' ' + access_token
}
},
qs: qs
};

@@ -40,0 +47,0 @@

12

package.json
{
"name": "cf-nodejs-client",
"version": "0.8.2",
"version": "0.8.3",
"description": "A Cloud Foundry Client for Node.js",

@@ -37,3 +37,3 @@ "author": "Juan Antonio Breña Moral <bren@juanantonio.info>",

"dependencies": {
"request": "2.64.0",
"request": "2.65.0",
"restler": "3.4.0"

@@ -45,9 +45,9 @@ },

"chai-as-promised": "5.1.0",
"istanbul": "0.3.21",
"nconf": "0.8.0",
"istanbul": "0.4.0",
"nconf": "0.8.2",
"random-words": "0.0.1",
"archiver": "0.15.1",
"archiver": "0.16.0",
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-jsdoc": "0.6.10",
"grunt-jsdoc": "1.0.0",
"grunt-connect": "0.2.0",

@@ -54,0 +54,0 @@ "grunt-open": "0.2.3"

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc