@powersync/service-module-mysql 0.9.8 → 0.9.9

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 CHANGED
@@ -1,5 +1,22 @@
1
1
  # @powersync/service-module-mysql
2
2
 
3
+ ## 0.9.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 80fd68b: Add SDK usage reporting support.
8
+ - 88982d9: Migrate to trusted publishing
9
+ - Updated dependencies [b4fa979]
10
+ - Updated dependencies [80fd68b]
11
+ - Updated dependencies [c2bd0b0]
12
+ - Updated dependencies [0268858]
13
+ - Updated dependencies [88982d9]
14
+ - @powersync/service-sync-rules@0.29.6
15
+ - @powersync/service-core@1.16.0
16
+ - @powersync/lib-services-framework@0.7.9
17
+ - @powersync/service-types@0.13.1
18
+ - @powersync/service-jsonbig@0.17.12
19
+
3
20
  ## 0.9.8
4
21
 
5
22
  ### Patch Changes
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.9.8",
5
+ "version": "0.9.9",
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.7.8",
34
- "@powersync/service-core": "1.15.8",
35
- "@powersync/service-sync-rules": "0.29.5",
36
- "@powersync/service-types": "0.13.0",
37
- "@powersync/service-jsonbig": "0.17.11"
33
+ "@powersync/lib-services-framework": "0.7.9",
34
+ "@powersync/service-core": "1.16.0",
35
+ "@powersync/service-sync-rules": "0.29.6",
36
+ "@powersync/service-types": "0.13.1",
37
+ "@powersync/service-jsonbig": "0.17.12"
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.12.8",
43
- "@powersync/service-module-mongodb-storage": "0.12.8",
44
- "@powersync/service-module-postgres-storage": "0.10.8"
42
+ "@powersync/service-core-tests": "0.12.9",
43
+ "@powersync/service-module-mongodb-storage": "0.12.9",
44
+ "@powersync/service-module-postgres-storage": "0.10.9"
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.MongoTestStorageFactoryGenerator({
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.PostgresTestStorageFactoryGenerator({
27
+ export const INITIALIZED_POSTGRES_STORAGE_FACTORY = postgres_storage.test_utils.postgresTestStorageFactoryGenerator({
28
28
  url: env.PG_STORAGE_TEST_URL
29
29
  });
30
30