chore(deps): bump the powersync group across 1 directory with 3 updates
Type: Pull Request
State: Open
![dependabot[bot]](https://github.com/dependabot.png)
Association: None
Comments: 0
(about 1 month ago)
(about 1 month ago)
dependencies javascript
Bumps the powersync group with 2 updates in the / directory: @powersync/react and @powersync/web.
Updates @powersync/react
from 1.5.3 to 1.6.0
Release notes
Sourced from @powersync/react
's releases.
@powersync/react
@1
.6.0Minor Changes
c7d2b53: - [Internal] Updated implementation to use shared
WatchedQuery
implementation.c7d2b53: - Added the ability to limit re-renders by specifying a
rowComparator
for query results. TheuseQuery
hook will only emitdata
changes when the data has changed.// The data here will maintain previous object references for unchanged items. const { data } = useQuery('SELECT * FROM lists WHERE name = ?', ['aname'], { rowComparator: { keyBy: (item) => item.id, compareBy: (item) => JSON.stringify(item) } });
- Added the ability to subscribe to an existing instance of a
WatchedQuery
import { useWatchedQuerySubscription } from '@powersync/react';
const listsQuery = powerSync .query({ sql:
SELECT * FROM lists
}) .differentialWatch();export const ListsWidget = (props) => { const { data: lists } = useWatchedQuerySubscription(listsQuery);
return ( <div> {lists.map((list) => ( <div key={list.id}>{list.name}</div> ))} </div> ); };
Patch Changes
- 6b38551: Fix a warning about raw tables being used when they're not.
- Updated dependencies [319012e]
- Updated dependencies [c7d2b53]
- Updated dependencies [6b38551]
- Updated dependencies [a1abb15]
@powersync/common
@1
.35.0
Commits
a95ccbb
Version Packages (#670)a1abb15
feat:@powersync/adapter-sql-js
added to support SQL.js (#647)c7d2b53
Incremental Watched Queries (#614)6b38551
Fix warning for raw tables with JS client319012e
WebSocket Timeout Fix (#671)79acd89
Export AsyncDatabaseConnection types in@powersync/web
(#655)97da283
Version Packages (#660)810c6ad
Improve logging (#659)1c42a69
Improve docs for raw tables (#666)cb6d3ec
Simplify- Additional commits viewable in compare view
Updates @powersync/web
from 1.23.2 to 1.25.0
Release notes
Sourced from @powersync/web
's releases.
@powersync/web
@1
.25.0Minor Changes
- 79acd89: Export AsyncDatabaseConnection (and related) types for internal use
- c7d2b53: Improved query behaviour when client is closed. Pending requests will be aborted, future requests will be rejected with an Error. Fixed read and write lock requests not respecting timeout parameter.
Patch Changes
- 319012e: Fixed bug where a WebSocket connection timeout could cause an uncaught exception.
- 6b38551: Fix a warning about raw tables being used when they're not.
- Updated dependencies [319012e]
- Updated dependencies [c7d2b53]
- Updated dependencies [6b38551]
- Updated dependencies [a1abb15]
@powersync/common
@1
.35.0
@powersync/web
@1
.24.0Minor Changes
ab33799: Add experimental support for raw tables, giving you full control over the table structure to sync into. While PowerSync manages tables as JSON views by default, raw tables have to be created by the application developer.
For more information about raw tables, see the documentation.
810c6ad: Propagate logger from PowerSyncDatabase to streaming sync and remote implementations, and tweak some log messages.
Patch Changes
- a9f6eba: Update PowerSync core extension to 0.4.2
- a1aa18c: Fix sync stream delays during CRUD upload.
- Updated dependencies [ab33799]
- Updated dependencies [810c6ad]
- Updated dependencies [a1aa18c]
- Updated dependencies [9fb898d]
@powersync/common
@1
.34.0
Commits
a95ccbb
Version Packages (#670)a1abb15
feat:@powersync/adapter-sql-js
added to support SQL.js (#647)c7d2b53
Incremental Watched Queries (#614)6b38551
Fix warning for raw tables with JS client319012e
WebSocket Timeout Fix (#671)79acd89
Export AsyncDatabaseConnection types in@powersync/web
(#655)97da283
Version Packages (#660)810c6ad
Improve logging (#659)1c42a69
Improve docs for raw tables (#666)cb6d3ec
Simplify- Additional commits viewable in compare view
Updates @powersync/common
from 1.33.2 to 1.35.0
Release notes
Sourced from @powersync/common
's releases.
@powersync/common
@1
.35.0Minor Changes
- c7d2b53: - Added additional listeners for
closing
andclosed
events inAbstractPowerSyncDatabase
.
- Added
query
andcustomQuery
APIs for enhanced watched queries.- Added
triggerImmediate
option to theonChange
API. This allows emitting an initial event which can be useful for downstream use cases.- a1abb15: Added ControlledExecutor utility to exports.
Patch Changes
- 319012e: Fixed bug where a WebSocket connection timeout could cause an uncaught exception.
- 6b38551: Fix a warning about raw tables being used when they're not.
@powersync/common
@1
.34.0Minor Changes
ab33799: Add experimental support for raw tables, giving you full control over the table structure to sync into. While PowerSync manages tables as JSON views by default, raw tables have to be created by the application developer.
For more information about raw tables, see the documentation.
810c6ad: Propagate logger from PowerSyncDatabase to streaming sync and remote implementations, and tweak some log messages.
Patch Changes
- a1aa18c: Fix sync stream delays during CRUD upload.
- 9fb898d: [Internal] Removed shared mutex implementation of
readLock
andwriteLock
.
Commits
a95ccbb
Version Packages (#670)a1abb15
feat:@powersync/adapter-sql-js
added to support SQL.js (#647)c7d2b53
Incremental Watched Queries (#614)6b38551
Fix warning for raw tables with JS client319012e
WebSocket Timeout Fix (#671)79acd89
Export AsyncDatabaseConnection types in@powersync/web
(#655)97da283
Version Packages (#660)810c6ad
Improve logging (#659)1c42a69
Improve docs for raw tables (#666)cb6d3ec
Simplify- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditions
Pull Request Statistics
1
2
+17
-17
Package Dependencies
Technical Details
ID: | 4486048 |
UUID: | 2715961206 |
Node ID: | PR_kwDOPIwKwc6h4kd2 |
Host: | GitHub |
Repository: | powersync-community/vite-react-ts-powersync-supabase |
Merge State: | Unknown |