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

forceios

Package Overview
Dependencies
Maintainers
3
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

forceios - npm Package Compare versions

Comparing version 10.2.0 to 11.0.0

2

package.json
{
"name": "forceios",
"version": "10.2.0",
"version": "11.0.0",
"description": "Utilities for creating mobile apps based on the Salesforce Mobile SDK for iOS",

@@ -5,0 +5,0 @@ "keywords": [ "mobilesdk", "ios", "salesforce", "mobile", "sdk" ],

@@ -31,3 +31,3 @@ /*

var VERSION= '10.2.0';
var VERSION= '11.0.0';

@@ -65,6 +65,6 @@ module.exports = {

// pluginRepoUri: 'https://github.com/forcedotcom/SalesforceMobileSDK-CordovaPlugin#dev', // dev
minVersion: '11.0.0',
minVersion: '12.0.0',
pluginRepoUri: 'salesforce-mobilesdk-cordova-plugin@v' + VERSION, // GA
platformVersion: {
ios: '6.2.0',
ios: '6.3.0',
android: '11.0.0'

@@ -71,0 +71,0 @@ }

@@ -112,3 +112,3 @@ /*

if (config.platform === 'ios') {
if (config.platform.split(',').indexOf('ios') != -1) {
if (utils.getToolVersion('xcodebuild -version') < 14000000) {

@@ -177,5 +177,14 @@ // Use legacy build for xcode 13 and older

" end\n" +
"end" +
"\n" +
"post_install do |installer|\n" +
" installer.pods_project.targets.each do |target|\n" +
" if target.deployment_target.to_i < 9\n" +
" target.build_configurations.each do |config|\n" +
" config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'\n" +
" end\n" +
" end\n" +
" end\n" +
"end"
utils.logInfo('Updating Podfile for project ' + config.appname);

@@ -182,0 +191,0 @@ fs.writeFileSync(podfilePath, originalPodfileContent.replace("use_frameworks!","") + preInstallCode);

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