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

react-native-code-push

Package Overview
Dependencies
Maintainers
2
Versions
117
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-code-push - npm Package Compare versions

Comparing version 1.1.1-beta to 1.1.2-beta

28

CodePush.ios.js

@@ -97,18 +97,20 @@ 'use strict';

if (err) {
reject(err);
return reject(err);
}
if (update) {
update = extend(update, packageMixins.remote);
NativeCodePush.isFailedUpdate(update.packageHash)
.then((isFailedHash) => {
update.failedApply = isFailedHash;
resolve(update);
})
.catch(reject)
.done();
} else {
resolve(update);
// Ignore updates that require a newer app version,
// since the end-user couldn't reliably apply it
if (!update || update.updateAppVersion) {
return resolve(null);
}
update = extend(update, packageMixins.remote);
NativeCodePush.isFailedUpdate(update.packageHash)
.then((isFailedHash) => {
update.failedApply = isFailedHash;
resolve(update);
})
.catch(reject)
.done();
})

@@ -115,0 +117,0 @@ });

{
"name": "react-native-code-push",
"version": "1.1.1-beta",
"version": "1.1.2-beta",
"description": "React Native plugin for the CodePush service",

@@ -5,0 +5,0 @@ "main": "CodePush.ios.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