@powersync/service-module-postgres 0.0.0-dev-20241119082750 → 0.0.2
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 +18 -18
- package/package.json +7 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
# @powersync/service-module-postgres
|
|
2
2
|
|
|
3
|
-
## 0.0.
|
|
3
|
+
## 0.0.2
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
-
|
|
7
|
+
- 57bd18b: Updates from Replication events changes
|
|
8
|
+
- 57bd18b: - Introduced modules to the powersync service architecture
|
|
9
9
|
- Core functionality has been moved to "engine" classes. Modules can register additional functionality with these engines.
|
|
10
10
|
- The sync API functionality used by the routes has been abstracted to an interface. API routes are now managed by the RouterEngine.
|
|
11
11
|
- Replication is managed by the ReplicationEngine and new replication data sources can be registered to the engine by modules.
|
|
12
12
|
- Refactored existing Postgres replication as a module.
|
|
13
13
|
- Removed Postgres specific code from the core service packages.
|
|
14
|
-
- Updated dependencies [
|
|
15
|
-
- Updated dependencies [
|
|
16
|
-
- Updated dependencies [
|
|
17
|
-
- Updated dependencies [
|
|
18
|
-
- Updated dependencies [
|
|
19
|
-
- Updated dependencies [
|
|
20
|
-
- Updated dependencies [
|
|
21
|
-
- Updated dependencies [
|
|
22
|
-
- Updated dependencies [
|
|
23
|
-
- Updated dependencies [
|
|
24
|
-
- @powersync/service-core@0.
|
|
25
|
-
- @powersync/lib-services-framework@0.
|
|
26
|
-
- @powersync/service-sync-rules@0.
|
|
27
|
-
- @powersync/service-types@0.
|
|
28
|
-
- @powersync/service-jpgwire@0.
|
|
14
|
+
- Updated dependencies [57bd18b]
|
|
15
|
+
- Updated dependencies [57bd18b]
|
|
16
|
+
- Updated dependencies [57bd18b]
|
|
17
|
+
- Updated dependencies [57bd18b]
|
|
18
|
+
- Updated dependencies [57bd18b]
|
|
19
|
+
- Updated dependencies [57bd18b]
|
|
20
|
+
- Updated dependencies [57bd18b]
|
|
21
|
+
- Updated dependencies [57bd18b]
|
|
22
|
+
- Updated dependencies [57bd18b]
|
|
23
|
+
- Updated dependencies [57bd18b]
|
|
24
|
+
- @powersync/service-core@0.9.0
|
|
25
|
+
- @powersync/lib-services-framework@0.2.0
|
|
26
|
+
- @powersync/service-sync-rules@0.21.0
|
|
27
|
+
- @powersync/service-types@0.3.0
|
|
28
|
+
- @powersync/service-jpgwire@0.18.0
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
|
-
"version": "0.0.
|
|
8
|
+
"version": "0.0.2",
|
|
9
9
|
"main": "dist/index.js",
|
|
10
10
|
"license": "FSL-1.1-Apache-2.0",
|
|
11
11
|
"type": "module",
|
|
@@ -27,18 +27,15 @@
|
|
|
27
27
|
"ts-codec": "^1.2.2",
|
|
28
28
|
"uuid": "^9.0.1",
|
|
29
29
|
"uri-js": "^4.4.1",
|
|
30
|
-
"@powersync/lib-services-framework": "0.
|
|
31
|
-
"@powersync/service-core": "0.
|
|
32
|
-
"@powersync/service-jpgwire": "0.
|
|
30
|
+
"@powersync/lib-services-framework": "0.2.0",
|
|
31
|
+
"@powersync/service-core": "0.9.0",
|
|
32
|
+
"@powersync/service-jpgwire": "0.18.0",
|
|
33
33
|
"@powersync/service-jsonbig": "0.17.10",
|
|
34
|
-
"@powersync/service-sync-rules": "0.
|
|
35
|
-
"@powersync/service-types": "0.
|
|
34
|
+
"@powersync/service-sync-rules": "0.21.0",
|
|
35
|
+
"@powersync/service-types": "0.3.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@types/uuid": "^9.0.4"
|
|
39
|
-
"typescript": "^5.6.2",
|
|
40
|
-
"vitest": "^2.1.1",
|
|
41
|
-
"vite-tsconfig-paths": "^4.3.2"
|
|
38
|
+
"@types/uuid": "^9.0.4"
|
|
42
39
|
},
|
|
43
40
|
"scripts": {
|
|
44
41
|
"build": "tsc -b",
|