# PowerSync Update: October 2024

> After seeing our user base double from July through September, momentum has continued with another record for new users in October. We’ve been hard at work shipping too, with multiple releases every week in October. Let’s look at the highlights in this blog post.

- Published: 2024-11-01
- Author: Kobie Botha
- Category: Product Update
- Source: https://powersync.com/blog/powersync-update-october-2024

---

After seeing our user base double from July through September, momentum has continued with another record for new users in October. To support this growth, we’ve created a new team of exceptional engineers focused on developer success, headed up by Mike Barnes. Last week, the team was joined by Hein von Stein — welcome Hein! We’ve been hard at work shipping too, with multiple releases every week in October. Let’s look at the highlights:

## MongoDB Now Supported In PowerSync Cloud

![](https://powersync.com/images/blog/powersync-update-october-2024-inline-8f1fa156ae.png)

After initially releasing support for MongoDB to our self-hosted Open Edition, we’ve added the ability to connect PowerSync Cloud instances to MongoDB through the PowerSync Dashboard. PowerSync Cloud can connect to either MongoDB Atlas or self-hosted MongoDB environments. It’s an important milestone for our partnership with MongoDB, which was also announced in October.

The short turnaround of this release was made possible because of the new modular architecture of the PowerSync Service. 

[Read the blog post](https://powersync.com/blog/powersync-cloud-now-supports-mongodb-as-a-source-database)

## MySQL Now Supported As Source Database

![](https://powersync.com/images/blog/powersync-update-october-2024-inline-fa9ac19abb.png)

The modular architecture of the PowerSync Service also paved the way for us to implement support for MySQL as a source database. Although recently less prominent than Postgres, MySQL is still a wildly popular database, and we’re excited about the increased flexibility this additional option will give developers.

MySQL support is in alpha and available in PowerSync Cloud as well as self-hosted PowerSync (Open Edition & Enterprise Self-Hosted Edition).

[Read the release notes](https://releases.powersync.com/announcements/announcing-mysql-as-a-source-database-alpha)

## A Gentler Introduction To Sync Rules

![](https://powersync.com/images/blog/powersync-update-october-2024-inline-2a5890126e.png)

Dominic Bauer wrote a helpful introduction: _Sync Rules from First Principles: Partial Replication to SQLite_. This is a great starting point for understanding their purpose, structure and operation. Thanks Dom!

[Read the post](https://powersync.com/blog/sync-rules-from-first-principles-partial-replication-to-sqlite)

## Major Client-Side Performance Improvements

![](https://powersync.com/images/blog/powersync-update-october-2024-inline-463c49c3de.png)

As part of a multi-month project to boost performance across our entire stack, we released version 0.3.0 of our `powersync-sqlite-core` extension, which addresses performance bottlenecks during incremental sync. 

Previously, incremental sync had overhead proportional to the number of synced rows, which typically caused noticeable latency when syncing around 10k-100k+ rows. Now, clients can effectively sync an "unlimited" number of rows without any overhead. Of course, the local storage used and the time for initial sync will still be proportional to the number of rows synced to the client.

This has been released to all client SDKs: upgrade to the latest version to receive this update.

[See the release message on the PowerSync Discord](https://discord.com/channels/1138230179878154300/1138520762618220635/1295404395491758161)

## New Docs Site Live

![](https://powersync.com/images/blog/powersync-update-october-2024-inline-c15461ffc2.gif)

We know how important high-quality documentation is to overall developer experience, so we’ve been investing in upgrading our docs site. It recently went live and we think there’s a lot to love, including:

  * Tabs for easily navigating higher-level topics
  * Faster loading times 
  * Syntax highlighting is back!
  * Light/dark mode 
  * (Good) AI-enabled search
  * Better styling

[See new docs site](https://docs.powersync.com)

## Introducing Advanced Instance Monitoring And Alerting

![](https://powersync.com/images/blog/powersync-update-october-2024-inline-85702359c9.png)

We announced major new monitoring and alerting features for PowerSync Cloud users:

Instance logs are now available for all plans, accessible in the PowerSync Dashboard header. 

Fully configurable issue and metric alerting is also available on the Team and Enterprise plans, and issue alerts for fatal issues will come to the Pro plan soon. Webhooks are currently available for wiring up alert notifications to external systems, while support for email alert notifications is planned.

[Read the release notes](https://releases.powersync.com/announcements/powersync-cloud-introducing-instance-monitoring-and-alerting)

## OP-SQLite Supported in React Native SDK, Enabling Client-Side Encryption

![](https://powersync.com/images/blog/powersync-update-october-2024-inline-4fca63e0e8.png)

We’re excited to add OP-SQLite to our React Native SDK because it allows developers to set up encryption through SQLCipher.

We’re excited to announce support for OP-SQLite in our React Native SDK as an alternative to the `react-native-quick-sqlite` package. OP-SQLite has become our preferred SQLite library for React Native.

The support for OP-SQLite also allowed us to implement support for SQLCipher on React Native, enabling client-side database encryption. Support for SQLCipher in our Flutter/Dart client SDK is coming soon.

[See the package README to get started](https://github.com/powersync-ja/powersync-js/tree/main/packages/powersync-op-sqlite)

## Support for Suspense in React Client SDK

![](https://powersync.com/images/blog/powersync-update-october-2024-inline-31d9078564.png)

We’ve added support for React Suspense which allows you to _suspend_ rendering parts of an app until a particular condition is met (such as waiting for data to load). 

Specifically, the `useSuspenseQuery` hook allows you to access the results of a watched query, but its loading and fetching states are handled through `` `<Suspense>` ``, which, for example, allows you to display a fallback until data has finished loading.

[See the React package README](https://github.com/powersync-ja/powersync-js/tree/main/packages/react)

## TanStack Query Integration Now Available (Alpha)

![](https://powersync.com/images/blog/powersync-update-october-2024-inline-8fec59ee30.png)

In addition to supporting React Suspense, we also implemented an integration with TanStack Query, enabling developers to use its powerful asynchronous state management features for React and React Native, including query caching.

[Read the release notes](https://releases.powersync.com/announcements/powersync-web-sdk-tanstack-query-integration-alpha)

## Swift Package Manager Now Supported

![](https://powersync.com/images/blog/powersync-update-october-2024-inline-21d957f507.png)

We’ve released a version of our `powersync-sqlite-core` package that’s compatible with Swift Package Manager (SPM), meaning Swift developers are no longer required to use the Cocoapods version and can remove that reference from their applications.

Include it in your Swift projects with this GitHub URL: 

https://github.com/powersync-ja/powersync-sqlite-core-swift

## Community Focus

![](https://powersync.com/images/blog/powersync-update-december-2024-inline-4905b2f26e.png)

High-fives to community members **Omnicpie   **and **LucDeCaf** who contributed with PRs this month. We had pull requests adding the ability to [set client parameters](https://github.com/powersync-ja/powersync-js/pull/357) to our diagnostics app and [updating the schema](https://github.com/powersync-ja/powersync-js/pull/328) generated by the diagnostics app to use the latest Schema and Table syntax. Both are super useful!

![](https://powersync.com/images/blog/powersync-update-october-2024-inline-c25d2ba12d.png)

[Developer Case Study: Blueprint / Friend](https://powersync.com/blog/developer-case-study-kei-otani-blueprint-friend)

**Kei Otani** joined us to discuss his AI-enabled app for people in Japan who want to practice English.

![](https://powersync.com/images/blog/powersync-update-october-2024-inline-a7f3da0307.png)

[Developer Case Study: Portable PPB](https://powersync.com/blog/developer-case-study-ben-clark-campbell-kilgour-portable-ppb)

**Ben Clark** and**Campbell Kilgour** joined us to discuss their infield gold detection app.

![](https://powersync.com/images/blog/powersync-update-october-2024-inline-fd4d70aced.png)

[Developer Case Study: Octologs](https://powersync.com/blog/developer-case-study-ben-mahr-octologs)

**Ben Mahr** joined us to discuss his scuba diving experiences logging app, Octologs.

![](https://powersync.com/images/blog/powersync-update-october-2024-inline-ccd16f4bb3.png)

[Developer Case Study: Xiroi.cat](https://powersync.com/blog/developer-case-study-guillem-puche-xiroi-cat)

**Guillem Puche** joined us to discuss his app for saving and managing inspirational quotes.

That's it for the October update, happy coding!
