File tree Expand file tree Collapse file tree 7 files changed +24
-26
lines changed Expand file tree Collapse file tree 7 files changed +24
-26
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @journeyapps/react-native-quick-sqlite ' : patch
3
+ ---
4
+
5
+ Updated UUID dependency.
Original file line number Diff line number Diff line change 49
49
"devDependencies" : {
50
50
"@changesets/cli" : " ^2.26.2" ,
51
51
"@types/lodash" : " ^4.14.200" ,
52
- "@types/uuid" : " 3.4.0 " ,
52
+ "@types/uuid" : " ^9.0.1 " ,
53
53
"react" : " 18.2.0" ,
54
54
"react-native" : " 0.71.0" ,
55
55
"react-native-builder-bob" : " ^0.18.2" ,
82
82
},
83
83
"dependencies" : {
84
84
"lodash" : " ^4.17.21" ,
85
- "uuid" : " 3.4.0 "
85
+ "uuid" : " ^9.0.1 "
86
86
}
87
87
}
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import {
12
12
QueryResult
13
13
} from './types' ;
14
14
15
- import uuid from 'uuid' ;
15
+ import { v4 } from 'uuid' ;
16
16
import _ from 'lodash' ;
17
17
import { enhanceQueryResult } from './utils' ;
18
18
import { DBListenerManagerInternal } from './DBListenerManager' ;
@@ -106,7 +106,7 @@ export function setupOpen(QuickSQLite: ISQLite) {
106
106
options ?: LockOptions ,
107
107
hooks ?: LockHooks
108
108
) : Promise < T > => {
109
- const id = uuid . v4 ( ) ; // TODO maybe do this in C++
109
+ const id = v4 ( ) ; // TODO maybe do this in C++
110
110
// Wrap the callback in a promise that will resolve to the callback result
111
111
return new Promise < T > ( ( resolve , reject ) => {
112
112
// Add callback to the queue for timing
@@ -236,4 +236,4 @@ export function setupOpen(QuickSQLite: ISQLite) {
236
236
} ;
237
237
}
238
238
} ;
239
- }
239
+ }
Original file line number Diff line number Diff line change @@ -930,7 +930,7 @@ PODS:
930
930
- React-debug
931
931
- react-native-get-random-values (1.9.0):
932
932
- React-Core
933
- - react-native-quick-sqlite (1.1.2 ):
933
+ - react-native-quick-sqlite (1.1.3 ):
934
934
- powersync-sqlite-core (~> 0.1.6)
935
935
- React
936
936
- React-callinvoker
@@ -1365,7 +1365,7 @@ SPEC CHECKSUMS:
1365
1365
React-logger: 0a57b68dd2aec7ff738195f081f0520724b35dab
1366
1366
React-Mapbuffer: 63913773ed7f96b814a2521e13e6d010282096ad
1367
1367
react-native-get-random-values: dee677497c6a740b71e5612e8dbd83e7539ed5bb
1368
- react-native-quick-sqlite: a31ed88c8c78722f9eb6f959161ffb783bc6436e
1368
+ react-native-quick-sqlite: 2b663b5762b255d2047545fc95f58b0c246c265c
1369
1369
react-native-safe-area-context: 0ee144a6170530ccc37a0fd9388e28d06f516a89
1370
1370
React-nativeconfig: d7af5bae6da70fa15ce44f045621cf99ed24087c
1371
1371
React-NativeModulesApple: 0123905d5699853ac68519607555a9a4f5c7b3ac
Original file line number Diff line number Diff line change 33
33
"tailwindcss" : " ^3.2.4" ,
34
34
"typeorm" : " ^0.3.11" ,
35
35
"util" : " ^0.12.5" ,
36
- "uuid" : " 3.4.0 "
36
+ "uuid" : " ^9.0.1 "
37
37
},
38
38
"devDependencies" : {
39
39
"@babel/core" : " ^7.20.0" ,
Original file line number Diff line number Diff line change @@ -6267,10 +6267,10 @@ react-native-quick-base64@^2.0.5:
6267
6267
base64-js "^1.5.1"
6268
6268
6269
6269
react-native-quick-sqlite@./.. :
6270
- version "1.1.2 "
6270
+ version "1.1.3 "
6271
6271
dependencies :
6272
6272
lodash "^4.17.21"
6273
- uuid "3.4.0 "
6273
+ uuid "^9.0.1 "
6274
6274
6275
6275
react-native-safe-area-context@4.8.2 :
6276
6276
version "4.8.2"
@@ -7411,11 +7411,6 @@ utils-merge@1.0.1:
7411
7411
resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
7412
7412
integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==
7413
7413
7414
- uuid@3.4.0 :
7415
- version "3.4.0"
7416
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
7417
- integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
7418
-
7419
7414
uuid@^7.0.3 :
7420
7415
version "7.0.3"
7421
7416
resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.3.tgz#c5c9f2c8cf25dc0a372c4df1441c41f5bd0c680b"
@@ -7426,7 +7421,7 @@ uuid@^8.0.0, uuid@^8.3.2:
7426
7421
resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
7427
7422
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
7428
7423
7429
- uuid@^9.0.0 :
7424
+ uuid@^9.0.0, uuid@^9.0.1 :
7430
7425
version "9.0.1"
7431
7426
resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30"
7432
7427
integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==
Original file line number Diff line number Diff line change 1810
1810
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8"
1811
1811
integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==
1812
1812
1813
- " @types/uuid@3.4.0 " :
1814
- version "3.4.0"
1815
- resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-3.4.0.tgz#91639516fbb892ed3737a2bdc1b030d02b4a09c1"
1816
- integrity sha512-Vd+WmnrQKrrfVJ+9LWyOWqlBQJFsfi8rhKRm3ag3ZrOjY5SmzZkGmxbkgRIk9jpZt4dpvE21cmbBSp1dCV7/fw==
1817
- dependencies :
1818
- " @types/node" " *"
1813
+ " @types/uuid@^9.0.1 " :
1814
+ version "9.0.8"
1815
+ resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-9.0.8.tgz#7545ba4fc3c003d6c756f651f3bf163d8f0f29ba"
1816
+ integrity sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==
1819
1817
1820
1818
" @types/yargs-parser@* " :
1821
1819
version "21.0.3"
@@ -5872,10 +5870,10 @@ utils-merge@1.0.1:
5872
5870
resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
5873
5871
integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==
5874
5872
5875
- uuid@3.4.0 :
5876
- version "3.4.0 "
5877
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0. tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee "
5878
- integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A ==
5873
+ uuid@^9.0.1 :
5874
+ version "9.0.1 "
5875
+ resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1. tgz#e188d4c8853cc722220392c424cd637f32293f30 "
5876
+ integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA ==
5879
5877
5880
5878
validate-npm-package-license@^3.0.1 :
5881
5879
version "3.0.4"
You can’t perform that action at this time.
0 commit comments