Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

push2cloud-cf-adapter

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

push2cloud-cf-adapter - npm Package Compare versions

Comparing version 1.4.6 to 1.5.0

3

CHANGELOG.md

@@ -0,1 +1,4 @@

## [v1.5.0](https://github.com/push2cloud/cf-adapter/compare/v1.4.6...v1.5.0)
- use doppler_logging_endpoint when present
## [v1.4.6](https://github.com/push2cloud/cf-adapter/compare/v1.4.5...v1.4.6)

@@ -2,0 +5,0 @@ - update some dependencies

@@ -20,3 +20,8 @@ const WebSocket = require('ws');

var ws = new WebSocket(`${api.targetInfo.logging_endpoint}/tail/?app=${options.appGuid}`, {
var url = `${api.targetInfo.logging_endpoint}/tail/?app=${options.appGuid}`;
if (api.targetInfo.doppler_logging_endpoint) {
url = `${api.targetInfo.doppler_logging_endpoint}/apps/${options.appGuid}/stream`;
}
var ws = new WebSocket(url, {
headers : {

@@ -23,0 +28,0 @@ Authorization: `${api.token.token_type} ${api.token.access_token}`

16

package.json
{
"name": "push2cloud-cf-adapter",
"version": "1.4.6",
"version": "1.5.0",
"description": "abstracts cloud foundry api",

@@ -23,16 +23,16 @@ "main": "index.js",

"dependencies": {
"archiver": "1.1.0",
"async": "2.1.1",
"debug": "2.2.0",
"archiver": "1.3.0",
"async": "2.1.5",
"debug": "2.6.3",
"filewalker": "0.1.3",
"gitignore-parser": "0.0.2",
"lodash": "4.16.4",
"request": "2.75.0",
"lodash": "4.17.4",
"request": "2.81.0",
"semver": "5.3.0",
"ws": "1.1.1"
"ws": "2.2.1"
},
"devDependencies": {
"eslint": "3.7.1",
"eslint": "3.17.1",
"expect.js": "0.3.1"
}
}
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