@evolu/react-native 9.0.1 → 10.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  import { Config, Sqlite, isSqlMutation, maybeLogSqliteQueryExecutionTime, valuesToSqliteValues, } from "@evolu/common";
2
2
  import * as Effect from "effect/Effect";
3
3
  import * as Layer from "effect/Layer";
4
- import * as ExpoSQLite from "expo-sqlite/next";
4
+ import * as ExpoSQLite from "expo-sqlite";
5
5
  export const SqliteLive = Layer.effect(Sqlite, Effect.gen(function* () {
6
6
  const config = yield* Config;
7
7
  const db = ExpoSQLite.openDatabaseSync(`evolu1-${config.name}.db`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evolu/react-native",
3
- "version": "9.0.1",
3
+ "version": "10.0.0",
4
4
  "description": "Evolu for React Native",
5
5
  "keywords": [
6
6
  "evolu",
@@ -35,21 +35,21 @@
35
35
  },
36
36
  "devDependencies": {
37
37
  "eslint": "^8.57.0",
38
- "expo": "^50.0.17",
39
- "expo-sqlite": "~13.4.0",
40
- "react-native": "0.73.6",
38
+ "expo": "^51.0.0",
39
+ "expo-sqlite": "^14.0.3",
40
+ "react-native": "^0.74.1",
41
41
  "typescript": "^5.4.5",
42
42
  "vitest": "^1.6.0",
43
- "@evolu/common": "5.0.3",
43
+ "@evolu/common": "5.1.0",
44
44
  "@evolu/common-react": "8.0.3",
45
45
  "@evolu/tsconfig": "0.0.2",
46
46
  "eslint-config-evolu": "1.0.0"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "@evolu/common-react": "^8.0.3",
50
- "expo": "^50.0.14",
51
- "expo-sqlite": "~13.4.0",
52
- "react-native": "^0.73.6"
50
+ "expo": "^51.0.0",
51
+ "expo-sqlite": "^14.0.3",
52
+ "react-native": "^0.74.1"
53
53
  },
54
54
  "publishConfig": {
55
55
  "access": "public"
package/src/SqliteLive.ts CHANGED
@@ -8,7 +8,7 @@ import {
8
8
  } from "@evolu/common";
9
9
  import * as Effect from "effect/Effect";
10
10
  import * as Layer from "effect/Layer";
11
- import * as ExpoSQLite from "expo-sqlite/next";
11
+ import * as ExpoSQLite from "expo-sqlite";
12
12
 
13
13
  export const SqliteLive = Layer.effect(
14
14
  Sqlite,