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

@amazon-sumerian-hosts/core

Package Overview
Dependencies
Maintainers
7
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@amazon-sumerian-hosts/core - npm Package Compare versions

Comparing version 2.0.4 to 2.0.5

5

package.json
{
"name": "@amazon-sumerian-hosts/core",
"version": "2.0.4",
"version": "2.0.5",
"description": "",

@@ -23,3 +23,6 @@ "license": "MIT",

"docs": "jsdoc -c jsdoc.conf.json"
},
"dependencies": {
"compare-versions": "^6.0.0-rc.1"
}
}

8

src/core/awspack/AbstractTextToSpeechFeature.js
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: MIT-0
import {compareVersions} from 'compare-versions';
import AbstractHostFeature from '../AbstractHostFeature';

@@ -281,3 +282,3 @@ import AnimationUtils from '../animpack/AnimationUtils';

voice.SupportedEngines.includes('standard') ||
version >= minNeuralSdk
compareVersions(version, minNeuralSdk) >= 0
) {

@@ -374,3 +375,6 @@ availableVoices.push(voice);

engine === undefined ||
this.constructor.AWS_VERSION < this.constructor.POLLY_MIN_NEURAL_VERSION
compareVersions(
this.constructor.AWS_VERSION,
this.constructor.POLLY_MIN_NEURAL_VERSION
) < 0
) {

@@ -377,0 +381,0 @@ engine = this.constructor.POLLY_DEFAULTS.Engine;

@@ -6,3 +6,3 @@ // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

// This line gets replaced by Github actions to the SHA of the git commit
const HOSTS_VERSION = 'v2.0.4';
const HOSTS_VERSION = 'v2.0.5';

@@ -9,0 +9,0 @@ /**

Sorry, the diff of this file is too big to display

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