New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

pusher-platform-node

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pusher-platform-node - npm Package Compare versions

Comparing version 0.12.0 to 0.12.1

6

CHANGELOG.md

@@ -9,2 +9,8 @@ # Change Log

## [v0.12.1] 2018-04-05
### Fixes
- Issuer check in refresh token validation now checks that the issuer starts with `api_keys/`, not `keys/`
## [v0.12.0] 2018-03-29

@@ -11,0 +17,0 @@

2

package.json
{
"name": "pusher-platform-node",
"version": "0.12.0",
"version": "0.12.1",
"main": "./target/index.js",

@@ -5,0 +5,0 @@ "types": "./target/index.d.ts",

@@ -12,3 +12,3 @@ # pusher-platform-node

"dependencies": {
"pusher-platform-node": "~0.12.0"
"pusher-platform-node": "~0.12.1"
}

@@ -15,0 +15,0 @@ }

@@ -72,3 +72,3 @@ import {IncomingMessage} from "http";

decoded = jwt.verify(oldRefreshToken, this.instanceKeySecret, {
issuer: `keys/${this.instanceKeyId}`,
issuer: `api_keys/${this.instanceKeyId}`,
});

@@ -75,0 +75,0 @@ } catch (e) {

@@ -56,3 +56,3 @@ "use strict";

decoded = jwt.verify(oldRefreshToken, this.instanceKeySecret, {
issuer: "keys/" + this.instanceKeyId,
issuer: "api_keys/" + this.instanceKeyId,
});

@@ -59,0 +59,0 @@ }

Sorry, the diff of this file is not supported yet

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