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

cordova-sqlite-storage

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-sqlite-storage - npm Package Compare versions

Comparing version 2.1.5 to 2.2.0

5

CHANGES.md
# Changes
## cordova-sqlite-storage 2.2.0
- Android-sqlite-native-driver NDK objects in JAR to resolve issue on cordova-android@7
- Fix SQLiteAndroidDatabase implementation for Turkish and other foreign locales
## cordova-sqlite-storage 2.1.5

@@ -4,0 +9,0 @@

4

package.json
{
"name": "cordova-sqlite-storage",
"version": "2.1.5",
"version": "2.2.0",
"description": "Native interface to SQLite for PhoneGap/Cordova",

@@ -33,3 +33,3 @@ "cordova": {

"dependencies": {
"cordova-sqlite-storage-dependencies": "1.0.4"
"cordova-sqlite-storage-dependencies": "1.1.0"
},

@@ -36,0 +36,0 @@ "scripts": {

@@ -130,5 +130,8 @@ /* 'use strict'; */

expect(rs.rows.length).toBe(1);
// TBD different for builtin android.database implementation:
if (!isWindows && isAndroid && isImpl2) // TBD ...
expect(rs.rows.item(0).journal_mode).toBe('persist');
// DEFAULT PRAGMA journal_mode setting is
// DIFFERENT for builtin android.database implementation:
if (!isWindows && isAndroid && isImpl2)
expect(rs.rows.item(0).journal_mode).toBe(
(/Android [2-7]/.test(navigator.userAgent)) ?
'persist' : 'truncate');
else

@@ -135,0 +138,0 @@ expect(rs.rows.item(0).journal_mode).toBe('delete');

Sorry, the diff of this file is not supported yet

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

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