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

alexa-remote2

Package Overview
Dependencies
Maintainers
2
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

alexa-remote2 - npm Package Compare versions

Comparing version

to
6.0.1

15

alexa-http2push.js

@@ -33,6 +33,17 @@ const http2 = require('http2');

let host = 'bob-dispatch-prod-eu.amazon.com';
if (this._options.amazonPage === 'amazon.com') {
host = 'bob-dispatch-prod-na.amazon.com';
} else if (this._options.amazonPage === 'amazon.co.jp') {
host = 'bob-dispatch-prod-fe.amazon.co.jp';
} else if (this._options.amazonPage === 'amazon.com.au') {
host = 'bob-dispatch-prod-fe.amazon.com.au';
}
this._options.logger && this._options.logger(`Alexa-Remote HTTP2-PUSH: Use host ${host}`);
const http2_options = {
':method': 'GET',
':path': '/v20160207/directives',
':authority': 'bob-dispatch-prod-eu.amazon.com',
':authority': host,
':scheme': 'https',

@@ -84,3 +95,3 @@ 'authorization': `Bearer ${this.access_token}`,

const retryDelay = (immediateReconnect || this.errorRetryCounter === 1) ? 0 : Math.min(60, this.errorRetryCounter * 5);
const retryDelay = (immediateReconnect || this.errorRetryCounter === 1) ? 1 : Math.min(60, this.errorRetryCounter * 5);
this._options.logger && this._options.logger('Alexa-Remote HTTP2-PUSH: Retry Connection in ' + retryDelay + 's');

@@ -87,0 +98,0 @@ this.emit('disconnect', true, 'Retry Connection in ' + retryDelay + 's');

4

package.json
{
"name": "alexa-remote2",
"version": "6.0.0",
"version": "6.0.1",
"description": "Remote Control for amazon echo devices",

@@ -35,3 +35,3 @@ "author": {

"querystring": "^0.2.1",
"ws": "^8.13.0",
"ws": "^8.14.0",
"extend": "^3.0.2",

@@ -38,0 +38,0 @@ "uuid": "^9.0.0"

@@ -40,2 +40,6 @@ # alexa-remote2

## Changelog:
### 6.0.1 (2023-09-08)
* (Apollon77) Optimize reconnection timing
* (Apollon77) Added support for NA/JP and potentially AU regions
### 6.0.0 (2023-09-08)

@@ -42,0 +46,0 @@ * IMPORTANT: Node.js 16 is now required minimum Node.js version!