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

roku-deploy

Package Overview
Dependencies
Maintainers
0
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

roku-deploy - npm Package Compare versions

Comparing version 3.12.1 to 3.12.2

6

CHANGELOG.md

@@ -9,2 +9,8 @@ # Changelog

## [3.12.2](https://github.com/rokucommunity/roku-deploy/compare/v3.12.1...v3.12.2) - 2024-10-18
### Fixed
- updated regex to find a signed package on `/plugin_package` page ([#176](https://github.com/rokucommunity/roku-deploy/pull/176))
## [3.12.1](https://github.com/rokucommunity/roku-deploy/compare/v3.12.0...v3.12.1) - 2024-07-19

@@ -11,0 +17,0 @@ ### Changed

8

dist/RokuDeploy.js

@@ -568,6 +568,12 @@ "use strict";

}
let pkgSearchMatches = /<a href="(pkgs\/[^\.]+\.pkg)">/.exec(results.body);
//grab the package url from the JSON on the page if it exists (https://regex101.com/r/1HUXgk/1)
let pkgSearchMatches = /"pkgPath"\s*:\s*"(.*?)"/.exec(results.body);
if (pkgSearchMatches) {
return pkgSearchMatches[1];
}
//for some reason we couldn't find the pkgPath from json, look in the <a> tag
pkgSearchMatches = /<a href="(pkgs\/[^\.]+\.pkg)">/.exec(results.body);
if (pkgSearchMatches) {
return pkgSearchMatches[1];
}
throw new errors.UnknownDeviceResponseError('Unknown error signing package', results);

@@ -574,0 +580,0 @@ }

2

package.json
{
"name": "roku-deploy",
"version": "3.12.1",
"version": "3.12.2",
"description": "Package and publish a Roku application using Node.js",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

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