@powersync/service-module-mysql 0.0.0-dev-20250829094737 → 0.0.0-dev-20250903064005
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.
- package/CHANGELOG.md +23 -4
- package/package.json +7 -7
- package/test/src/util.ts +2 -2
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,31 @@
|
|
|
1
1
|
# @powersync/service-module-mysql
|
|
2
2
|
|
|
3
|
-
## 0.0.0-dev-
|
|
3
|
+
## 0.0.0-dev-20250903064005
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
- Updated dependencies [
|
|
9
|
-
|
|
7
|
+
- a700ec9: Reporting mongo storage added to storage engine.
|
|
8
|
+
- Updated dependencies [f1d187b]
|
|
9
|
+
- Updated dependencies [0fad466]
|
|
10
|
+
- Updated dependencies [a700ec9]
|
|
11
|
+
- @powersync/service-core@0.0.0-dev-20250903064005
|
|
12
|
+
- @powersync/service-types@0.0.0-dev-20250903064005
|
|
13
|
+
- @powersync/lib-services-framework@0.0.0-dev-20250903064005
|
|
14
|
+
|
|
15
|
+
## 0.9.2
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [bec7496]
|
|
20
|
+
- @powersync/service-core@1.15.2
|
|
21
|
+
|
|
22
|
+
## 0.9.1
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies [6352283]
|
|
27
|
+
- Updated dependencies [6352283]
|
|
28
|
+
- @powersync/service-core@1.15.1
|
|
10
29
|
|
|
11
30
|
## 0.9.0
|
|
12
31
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@powersync/service-module-mysql",
|
|
3
3
|
"repository": "https://github.com/powersync-ja/powersync-service",
|
|
4
4
|
"types": "dist/index.d.ts",
|
|
5
|
-
"version": "0.0.0-dev-
|
|
5
|
+
"version": "0.0.0-dev-20250903064005",
|
|
6
6
|
"license": "FSL-1.1-ALv2",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"type": "module",
|
|
@@ -30,18 +30,18 @@
|
|
|
30
30
|
"ts-codec": "^1.3.0",
|
|
31
31
|
"uri-js": "^4.4.1",
|
|
32
32
|
"uuid": "^11.1.0",
|
|
33
|
-
"@powersync/lib-services-framework": "0.
|
|
34
|
-
"@powersync/service-core": "0.0.0-dev-
|
|
33
|
+
"@powersync/lib-services-framework": "0.0.0-dev-20250903064005",
|
|
34
|
+
"@powersync/service-core": "0.0.0-dev-20250903064005",
|
|
35
35
|
"@powersync/service-sync-rules": "0.29.0",
|
|
36
|
-
"@powersync/service-types": "0.
|
|
36
|
+
"@powersync/service-types": "0.0.0-dev-20250903064005",
|
|
37
37
|
"@powersync/service-jsonbig": "0.17.11"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/async": "^3.2.24",
|
|
41
41
|
"@types/semver": "^7.5.4",
|
|
42
|
-
"@powersync/service-core-tests": "0.0.0-dev-
|
|
43
|
-
"@powersync/service-module-mongodb-storage": "0.0.0-dev-
|
|
44
|
-
"@powersync/service-module-postgres-storage": "0.0.0-dev-
|
|
42
|
+
"@powersync/service-core-tests": "0.0.0-dev-20250903064005",
|
|
43
|
+
"@powersync/service-module-mongodb-storage": "0.0.0-dev-20250903064005",
|
|
44
|
+
"@powersync/service-module-postgres-storage": "0.0.0-dev-20250903064005"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
47
|
"build": "tsc -b",
|
package/test/src/util.ts
CHANGED
|
@@ -19,12 +19,12 @@ export const TEST_CONNECTION_OPTIONS = types.normalizeConnectionConfig({
|
|
|
19
19
|
uri: TEST_URI
|
|
20
20
|
});
|
|
21
21
|
|
|
22
|
-
export const INITIALIZED_MONGO_STORAGE_FACTORY = mongo_storage.
|
|
22
|
+
export const INITIALIZED_MONGO_STORAGE_FACTORY = mongo_storage.test_utils.mongoTestStorageFactoryGenerator({
|
|
23
23
|
url: env.MONGO_TEST_URL,
|
|
24
24
|
isCI: env.CI
|
|
25
25
|
});
|
|
26
26
|
|
|
27
|
-
export const INITIALIZED_POSTGRES_STORAGE_FACTORY = postgres_storage.
|
|
27
|
+
export const INITIALIZED_POSTGRES_STORAGE_FACTORY = postgres_storage.test_utils.postgresTestStorageFactoryGenerator({
|
|
28
28
|
url: env.PG_STORAGE_TEST_URL
|
|
29
29
|
});
|
|
30
30
|
|