From e4512d63f451b6ee70e059dde7f6af4bdb28b339 Mon Sep 17 00:00:00 2001
From: benitav
Date: Tue, 9 Dec 2025 13:11:06 +0200
Subject: [PATCH 1/2] Update README to include SQL Server support
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index f3286a8d1..19aaa279c 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
-_[PowerSync](https://www.powersync.com) is a sync engine for building local-first apps with instantly-responsive UI/UX and simplified state transfer. Syncs between SQLite on the client-side and Postgres, MongoDB or MySQL on the server-side._
+_[PowerSync](https://www.powersync.com) is a sync engine for building local-first apps with instantly-responsive UI/UX and simplified state transfer. Syncs between SQLite on the client-side and Postgres, MongoDB, MySQL or SQL Server on the server-side._
# PowerSync JavaScript SDKs
From 2ab36ee77e3af95faba48c9783fa59c90c925f19 Mon Sep 17 00:00:00 2001
From: Benita Volkmann
Date: Tue, 9 Dec 2025 13:14:26 +0200
Subject: [PATCH 2/2] Update package readme's with SQL Server too
---
packages/capacitor/README.md | 2 +-
packages/node/README.md | 2 +-
packages/node/package.json | 2 +-
packages/react-native/README.md | 2 +-
packages/react-native/package.json | 2 +-
packages/web/README.md | 2 +-
packages/web/package.json | 2 +-
7 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/packages/capacitor/README.md b/packages/capacitor/README.md
index 3a8ee4d17..20cbf47bb 100644
--- a/packages/capacitor/README.md
+++ b/packages/capacitor/README.md
@@ -4,7 +4,7 @@
# PowerSync SDK for Capacitor
-_[PowerSync](https://www.powersync.com) is a sync engine for building local-first apps with instantly-responsive UI/UX and simplified state transfer. Syncs between SQLite on the client-side and Postgres, MongoDB or MySQL on the server-side._
+_[PowerSync](https://www.powersync.com) is a sync engine for building local-first apps with instantly-responsive UI/UX and simplified state transfer. Syncs between SQLite on the client-side and Postgres, MongoDB, MySQL or SQL Server on the server-side._
This package (`@powersync/capacitor`) is the PowerSync SDK for Capacitor apps. It wraps the [PowerSync Web SDK](https://www.npmjs.com/package/@powersync/web) for Capacitor PWAs and uses [Capacitor Community SQLite](https://github.com/capacitor-community/sqlite) as the database driver for Android and iOS.
diff --git a/packages/node/README.md b/packages/node/README.md
index 449024502..e771691a3 100644
--- a/packages/node/README.md
+++ b/packages/node/README.md
@@ -4,7 +4,7 @@
# PowerSync SDK for Node.js
-_[PowerSync](https://www.powersync.com) is a sync engine for building local-first apps with instantly-responsive UI/UX and simplified state transfer. Syncs between SQLite on the client-side and Postgres, MongoDB or MySQL on the server-side._
+_[PowerSync](https://www.powersync.com) is a sync engine for building local-first apps with instantly-responsive UI/UX and simplified state transfer. Syncs between SQLite on the client-side and Postgres, MongoDB, MySQL or SQL Server on the server-side._
This package (`packages/node`) is the PowerSync SDK for Node.js clients. It is an extension of `packages/common`.
Using this package is not necessary for PowerSync on servers, see [our documentation](https://docs.powersync.com/installation/app-backend-setup) for more details on that.
diff --git a/packages/node/package.json b/packages/node/package.json
index 184c2327c..54406d248 100644
--- a/packages/node/package.json
+++ b/packages/node/package.json
@@ -5,7 +5,7 @@
"registry": "https://registry.npmjs.org/",
"access": "public"
},
- "description": "PowerSync Node.js SDK. Sync Postgres, MongoDB or MySQL with SQLite in your Node.js app",
+ "description": "PowerSync Node.js SDK",
"main": "lib/index.js",
"files": [
"lib",
diff --git a/packages/react-native/README.md b/packages/react-native/README.md
index df5cfadb2..0471c67fb 100644
--- a/packages/react-native/README.md
+++ b/packages/react-native/README.md
@@ -4,7 +4,7 @@
# PowerSync SDK for React Native
-_[PowerSync](https://www.powersync.com) is a sync engine for building local-first apps with instantly-responsive UI/UX and simplified state transfer. Syncs between SQLite on the client-side and Postgres, MongoDB or MySQL on the server-side._
+_[PowerSync](https://www.powersync.com) is a sync engine for building local-first apps with instantly-responsive UI/UX and simplified state transfer. Syncs between SQLite on the client-side and Postgres, MongoDB, MySQL or SQL Server on the server-side._
This package (`packages/react-native`) is the PowerSync SDK for React Native clients. It is an extension of `packages/common`.
diff --git a/packages/react-native/package.json b/packages/react-native/package.json
index 52dafbff2..b858bdad3 100644
--- a/packages/react-native/package.json
+++ b/packages/react-native/package.json
@@ -5,7 +5,7 @@
"registry": "https://registry.npmjs.org/",
"access": "public"
},
- "description": "PowerSync React Native SDK. Sync Postgres, MongoDB or MySQL with SQLite in your React Native app",
+ "description": "PowerSync React Native SDK",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./lib/index.d.ts",
diff --git a/packages/web/README.md b/packages/web/README.md
index 4c638c4df..cf3fa4d0d 100644
--- a/packages/web/README.md
+++ b/packages/web/README.md
@@ -4,7 +4,7 @@
# PowerSync SDK for Web
-_[PowerSync](https://www.powersync.com) is a sync engine for building local-first apps with instantly-responsive UI/UX and simplified state transfer. Syncs between SQLite on the client-side and Postgres, MongoDB or MySQL on the server-side._
+_[PowerSync](https://www.powersync.com) is a sync engine for building local-first apps with instantly-responsive UI/UX and simplified state transfer. Syncs between SQLite on the client-side and Postgres, MongoDB, MySQL or SQL Server on the server-side._
This package (`packages/web`) is the PowerSync SDK for JavaScript Web clients. It is an extension of `packages/common`.
diff --git a/packages/web/package.json b/packages/web/package.json
index 7152e3459..92be171c2 100644
--- a/packages/web/package.json
+++ b/packages/web/package.json
@@ -1,7 +1,7 @@
{
"name": "@powersync/web",
"version": "1.29.1",
- "description": "PowerSync web SDK. Sync Postgres, MongoDB or MySQL with SQLite in your web app",
+ "description": "PowerSync Web SDK",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"bin": {