cordova-sqlite-storage
Advanced tools
Comparing version 2.1.5 to 2.2.0
# 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 @@ |
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19500
1193390
1642
+ Addedcordova-sqlite-storage-dependencies@1.1.0(transitive)
- Removedcordova-sqlite-storage-dependencies@1.0.4(transitive)