chore(deps): bump the all-dependencies group with 38 updates
Type: Pull Request
State: Open
![dependabot[bot]](https://github.com/dependabot.png)
Association: None
Comments: 1
(about 2 months ago)
(about 2 months ago)
dependencies javascript
Bumps the all-dependencies group with 38 updates:
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 @supabase/supabase-js
from 2.51.0 to 2.53.0
Release notes
Sourced from @supabase/supabase-js
's releases.
v2.53.0
2.53.0 (2025-07-28)
Features
- bump storage version, and expose StorageClientOptions (eea0444)
v2.52.1
2.52.1 (2025-07-23)
Bug Fixes
v2.52.0
2.52.0 (2025-07-17)
Features
Commits
75dd796
Merge pull request #1500 from supabase/feat/update-storage-version-to-support...06314d7
bump storage-js to 2.10.4eea0444
feat: bump storage version, and expose StorageClientOptions137caec
Merge pull request #1502 from georgRusanov/more_testf4e2a6b
added more tests115bc9a
added edge tests45c4d46
add bucket test for denoa5f787c
added bucket test for bun4530d64
Merge pull request #1511 from mandarini/chore/lock-file-update143e377
chore: update pnpm lock file- Additional commits viewable in compare view
Updates react
from 19.1.0 to 19.1.1
Commits
87e33ca
Set release versions to 19.1.15a1eb6f
fix: rename bottom stack frame (#33680)- See full diff in compare view
Updates @types/react
from 19.1.8 to 19.1.9
Commits
- See full diff in compare view
Updates react-dom
from 19.1.0 to 19.1.1
Commits
87e33ca
Set release versions to 19.1.1b793948
Bump next prerelease version numbers (#32782)- See full diff in compare view
Updates @types/react-dom
from 19.1.6 to 19.1.7
Commits
- See full diff in compare view
Updates @eslint/js
from 9.31.0 to 9.32.0
Release notes
Sourced from @eslint/js
's releases.
v9.32.0
Features
1245000
feat: support explicit resource management in core rules (#19828) (fnx)0e957a7
feat: support typescript types in accessor rules (#19882) (fnx)Bug Fixes
960fd40
fix: Upgrade@eslint/js
(#19971) (Nicholas C. Zakas)bbf23fa
fix: Refactor reporting into FileReport (#19877) (Nicholas C. Zakas)d498887
fix: bump@eslint/plugin-kit
to 0.3.4 to resolve vulnerability (#19965) (Milos Djermanovic)f46fc6c
fix: report only global references in no-implied-eval (#19932) (Nitin Kumar)7863d26
fix: remove outdated types inParserOptions.ecmaFeatures
(#19944) (ntnyq)3173305
fix: update execScript message in no-implied-eval rule (#19937) (TKDev7)Documentation
86e7426
docs: Update README (GitHub Actions Bot)Chores
50de1ce
chore: package.json update for@eslint/js
release (Jenkins)74f01a3
ci: unpinjiti
to version^2.5.1
(#19970) (루밀LuMir)2ab1381
ci: pinjiti
to version 2.4.2 (#19964) (Francesco Trotta)b7f7545
test: switch to flat config mode inSourceCode
tests (#19953) (Milos Djermanovic)f5a35e3
test: switch to flat config mode in eslint-fuzzer (#19960) (Milos Djermanovic)e22af8c
refactor: useCustomRuleDefinitionType
inJSRuleDefinition
(#19949) (Francesco Trotta)e855717
chore: switch performance tests to hyperfine (#19919) (Francesco Trotta)2f73a23
test: switch to flat config mode inast-utils
tests (#19948) (Milos Djermanovic)c565a53
chore: excludefurther_reading_links.json
from Prettier formatting (#19943) (Milos Djermanovic)
Changelog
Sourced from @eslint/js
's changelog.
v9.32.0 - July 25, 2025
960fd40
fix: Upgrade@eslint/js
(#19971) (Nicholas C. Zakas)50de1ce
chore: package.json update for@eslint/js
release (Jenkins)bbf23fa
fix: Refactor reporting into FileReport (#19877) (Nicholas C. Zakas)74f01a3
ci: unpinjiti
to version^2.5.1
(#19970) (루밀LuMir)d498887
fix: bump@eslint/plugin-kit
to 0.3.4 to resolve vulnerability (#19965) (Milos Djermanovic)2ab1381
ci: pinjiti
to version 2.4.2 (#19964) (Francesco Trotta)b7f7545
test: switch to flat config mode inSourceCode
tests (#19953) (Milos Djermanovic)f5a35e3
test: switch to flat config mode in eslint-fuzzer (#19960) (Milos Djermanovic)f46fc6c
fix: report only global references in no-implied-eval (#19932) (Nitin Kumar)86e7426
docs: Update README (GitHub Actions Bot)e22af8c
refactor: useCustomRuleDefinitionType
inJSRuleDefinition
(#19949) (Francesco Trotta)1245000
feat: support explicit resource management in core rules (#19828) (fnx)e855717
chore: switch performance tests to hyperfine (#19919) (Francesco Trotta)0e957a7
feat: support typescript types in accessor rules (#19882) (fnx)2f73a23
test: switch to flat config mode inast-utils
tests (#19948) (Milos Djermanovic)7863d26
fix: remove outdated types inParserOptions.ecmaFeatures
(#19944) (ntnyq)c565a53
chore: excludefurther_reading_links.json
from Prettier formatting (#19943) (Milos Djermanovic)3173305
fix: update execScript message in no-implied-eval rule (#19937) (TKDev7)
Commits
50de1ce
chore: package.json update for@eslint/js
release- See full diff in compare view
Updates @types/react
from 19.1.8 to 19.1.9
Commits
- See full diff in compare view
Updates @types/react-dom
from 19.1.6 to 19.1.7
Commits
- See full diff in compare view
Updates @vitejs/plugin-react
from 4.6.0 to 4.7.0
Release notes
Sourced from @vitejs/plugin-react
's releases.
plugin-react@4.7.0
Add HMR support for compound components (#518)
HMR now works for compound components like this:
const Root = () => <div>Accordion Root</div> const Item = () => <div>Accordion Item</div>
export const Accordion = { Root, Item }
Return
Plugin[]
instead ofPluginOption[]
(#537)The return type has changed from
react(): PluginOption[]
to more specialized typereact(): Plugin[]
. This allows for type-safe manipulation of plugins, for example:// previously this causes type errors react({ babel: { plugins: ['babel-plugin-react-compiler'] } }) .map(p => ({ ...p, applyToEnvironment: e => e.name === 'client' }))
Changelog
Sourced from @vitejs/plugin-react
's changelog.
4.7.0 (2025-07-18)
Add HMR support for compound components (#518)
HMR now works for compound components like this:
const Root = () => <div>Accordion Root</div> const Item = () => <div>Accordion Item</div>
export const Accordion = { Root, Item }
Return
Plugin[]
instead ofPluginOption[]
(#537)The return type has changed from
react(): PluginOption[]
to more specialized typereact(): Plugin[]
. This allows for type-safe manipulation of plugins, for example:// previously this causes type errors react({ babel: { plugins: ['babel-plugin-react-compiler'] } }) .map(p => ({ ...p, applyToEnvironment: e => e.name === 'client' }))
Commits
8041706
release: plugin-react@4.7.0bbfd1b7
chore: update changelog for #537fdc9d9a
feat: add hmr support for compound components (#518)d14f31d
fix(deps): update all non-major dependencies (#568)22be17f
build: use tsdown for plugin-react / plugin-react-oxc (#554)840f0b1
chore(deps): update prettier (#556)cfe2912
fix(deps): update all non-major dependencies (#540)11f56d6
fix: returnPlugin[]
instead ofPluginOption[]
(#537)9da5e19
fix(deps): update all non-major dependencies (#519)1583c5d
chore: remove Vite 7 beta from supported range (#517)- See full diff in compare view
Updates eslint
from 9.31.0 to 9.32.0
Release notes
Sourced from eslint's releases.
v9.32.0
Features
1245000
feat: support explicit resource management in core rules (#19828) (fnx)0e957a7
feat: support typescript types in accessor rules (#19882) (fnx)Bug Fixes
960fd40
fix: Upgrade@eslint/js
(#19971) (Nicholas C. Zakas)bbf23fa
fix: Refactor reporting into FileReport (#19877) (Nicholas C. Zakas)d498887
fix: bump@eslint/plugin-kit
to 0.3.4 to resolve vulnerability (#19965) (Milos Djermanovic)f46fc6c
fix: report only global references in no-implied-eval (#19932) (Nitin Kumar)7863d26
fix: remove outdated types inParserOptions.ecmaFeatures
(#19944) (ntnyq)3173305
fix: update execScript message in no-implied-eval rule (#19937) (TKDev7)Documentation
86e7426
docs: Update README (GitHub Actions Bot)Chores
50de1ce
chore: package.json update for@eslint/js
release (Jenkins)74f01a3
ci: unpinjiti
to version^2.5.1
(#19970) (루밀LuMir)2ab1381
ci: pinjiti
to version 2.4.2 (#19964) (Francesco Trotta)b7f7545
test: switch to flat config mode inSourceCode
tests (#19953) (Milos Djermanovic)f5a35e3
test: switch to flat config mode in eslint-fuzzer (#19960) (Milos Djermanovic)e22af8c
refactor: useCustomRuleDefinitionType
inJSRuleDefinition
(#19949) (Francesco Trotta)e855717
chore: switch performance tests to hyperfine (#19919) (Francesco Trotta)2f73a23
test: switch to flat config mode inast-utils
tests (#19948) (Milos Djermanovic)c565a53
chore: excludefurther_reading_links.json
from Prettier formatting (#19943) (Milos Djermanovic)
Changelog
Sourced from eslint's changelog.
v9.32.0 - July 25, 2025
960fd40
fix: Upgrade@eslint/js
(#19971) (Nicholas C. Zakas)50de1ce
chore: package.json update for@eslint/js
release (Jenkins)bbf23fa
fix: Refactor reporting into FileReport (#19877) (Nicholas C. Zakas)74f01a3
ci: unpinjiti
to version^2.5.1
(#19970) (루밀LuMir)d498887
fix: bump@eslint/plugin-kit
to 0.3.4 to resolve vulnerability (#19965) (Milos Djermanovic)2ab1381
ci: pinjiti
to version 2.4.2 (#19964) (Francesco Trotta)b7f7545
test: switch to flat config mode inSourceCode
tests (#19953) (Milos Djermanovic)f5a35e3
test: switch to flat config mode in eslint-fuzzer (#19960) (Milos Djermanovic)f46fc6c
fix: report only global references in no-implied-eval (#19932) (Nitin Kumar)86e7426
docs: Update README (GitHub Actions Bot)e22af8c
refactor: useCustomRuleDefinitionType
inJSRuleDefinition
(#19949) (Francesco Trotta)1245000
feat: support explicit resource management in core rules (#19828) (fnx)e855717
chore: switch performance tests to hyperfine (#19919) (Francesco Trotta)0e957a7
feat: support typescript types in accessor rules (#19882) (fnx)2f73a23
test: switch to flat config mode inast-utils
tests (#19948) (Milos Djermanovic)7863d26
fix: remove outdated types inParserOptions.ecmaFeatures
(#19944) (ntnyq)c565a53
chore: excludefurther_reading_links.json
from Prettier formatting (#19943) (Milos Djermanovic)3173305
fix: update execScript message in no-implied-eval rule (#19937) (TKDev7)
Commits
2364031
9.32.0a0e62e2
Build: changelog update for 9.32.0960fd40
fix: Upgrade@eslint/js
(#19971)50de1ce
chore: package.json update for@eslint/js
releasebbf23fa
fix: Refactor reporting into FileReport (#19877)74f01a3
ci: unpinjiti
to version^2.5.1
(#19970)d498887
fix: bump@eslint/plugin-kit
to 0.3.4 to resolve vulnerability (#19965)2ab1381
ci: pinjiti
to version 2.4.2 (#19964)b7f7545
test: switch to flat config mode inSourceCode
tests (#19953)f5a35e3
test: switch to flat config mode in eslint-fuzzer (#19960)- Additional commits viewable in compare view
Updates supabase
from 2.30.4 to 2.33.9
Release notes
Sourced from supabase's releases.
v2.33.9
Changelog
Bug fixes
- e35c33f50a366132a8f33fe39df81299888b03d1: fix: use service key for version checks (#3961) (
@sweatybridge
)Others
- e020422a02b1ac1121cc60772905a7edec217fbe: chore(deps): bump supabase/postgres-meta from v0.91.3 to v0.91.4 in /pkg/config/templates (#3963) (
@dependabot
[bot])- d0b7c5cfce2815275882fb681d6f895f3ac738ee: chore(deps): bump supabase/storage-api from v1.25.12 to v1.26.0 in /pkg/config/templates (#3965) (
@dependabot
[bot])- bea370c39c8fd0684ce78558dc5e61590dfaeaef: chore: sync API types from infrastructure (#3959) (
@kiwicopple
)- 601be609337ceab733b9558ea1e6617cbce90eb6: chore(deps): bump github.com/getsentry/sentry-go from 0.34.1 to 0.35.0 (#3962) (
@dependabot
[bot])v2.33.8
Changelog
Bug fixes
- 100ae3e492bb80bf688828f5923d7ed1fa2645f5: fix: set postgres role for pg_dump (#3958) (
@sweatybridge
)Others
- 1e0743438461eb1ca6a78a5d0b87f6353005fb86: chore: sync API types from infrastructure (#3951) (
@kiwicopple
)- 2fe9b8b02f7913d6298b6faaf8268e91757674ba: chore(deps): bump supabase/realtime from v2.41.10 to v2.41.11 in /pkg/config/templates (#3953) (
@dependabot
[bot])- 821f7b988b9c064a1528a70ef886359961c8a8c2: chore(deps): bump supabase/edge-runtime from v1.68.2 to v1.68.3 in /pkg/config/templates (#3954) (
@dependabot
[bot])- 933798a99a7d4270587f4d5e14c8fb5e93c45bc5: chore(deps): bump supabase/supavisor from 2.5.7 to 2.6.0 in /pkg/config/templates (#3945) (
@dependabot
[bot])v2.33.7
Changelog
Bug fixes
- 2b6e22b5f4d1522a306a556050877142744efc6e: fix: retry pooler connection after password change (#3949) (
@sweatybridge
)v2.33.6
Changelog
Bug fixes
- a1ce2e77b5baebc8d8f22c45a84508a4c1f0582e: fix: disable ssl when connecting in debug mode (#3947) (
@sweatybridge
)Others
- ac00aed28e22cd80c53654d9179db5676de05923: chore(deps): bump github.com/docker/docker from 28.3.2+incompatible to 28.3.3+incompatible (#3940) (
@dependabot
[bot])- 82d044d24e97f1f3d610c7724143a5a4b9049a4f: chore(deps): bump github.com/docker/cli from 28.3.2+incompatible to 28.3.3+incompatible (#3943) (
@dependabot
[bot])- ed075049aa40e08d9e7b52486974ca76a21724ed: chore(deps): bump supabase/postgres from 17.4.1.067 to 17.4.1.068 in /pkg/config/templates (#3944) (
@dependabot
[bot])- 8d331e2ee2cae96227fd707ddf84b71d5060d781: chore(deps): bump supabase/realtime from v2.41.9 to v2.41.10 in /pkg/config/templates (#3946) (
@dependabot
[bot])v2.33.5
Changelog
Bug fixes
- 3f6d9357e5a39768975da89ccad05c668e6e5d67: fix: reveal new keys when loading from api (#3935) (
@sweatybridge
)v2.33.4
Changelog
Bug fixes
- 1d1b50e17e645ae94a80d7b3c1ae76ff9e6bf9b3: fix: add mysterious apikey header (#3931) (
@sweatybridge
)v2.33.3
Changelog
Bug fixes
- 1cf9098b47146115c35b70c732a9fb62def96ca4: fix: handle new tenant api key (#3929) (
@sweatybridge
)Others
... (truncated)
Commits
601be60
chore(deps): bump github.com/getsentry/sentry-go from 0.34.1 to 0.35.0 (#3962)e35c33f
fix: use service key for version checks (#3961)bea370c
chore: sync API types from infrastructure (#3959)d0b7c5c
chore(deps): bump supabase/storage-api from v1.25.12 to v1.26.0 in /pkg/confi...e020422
chore(deps): bump supabase/postgres-meta from v0.91.3 to v0.91.4 in /pkg/conf...100ae3e
fix: set postgres role for pg_dump (#3958)933798a
chore(deps): bump supabase/supavisor from 2.5.7 to 2.6.0 in /pkg/config/templ...821f7b9
chore(deps): bump supabase/edge-runtime from v1.68.2 to v1.68.3 in /pkg/confi...2fe9b8b
chore(deps): bump supabase/realtime from v2.41.10 to v2.41.11 in /pkg/config/...1e07434
chore: sync API types from infrastructure (#3951)- Additional commits viewable in compare view
Updates typescript
from 5.8.3 to 5.9.2
Release notes
Sourced from typescript's releases.
TypeScript 5.9
For release notes, check out the release announcement
- fixed issues query for Typescript 5.9.0 (Beta).
- fixed issues query for Typescript 5.9.1 (RC).
- No specific changes for TypeScript 5.9.2 (Stable)
Downloads are available on:
TypeScript 5.9 RC
For release notes, check out the release announcement
Downloads are available on:
TypeScript 5.9 Beta
For release notes, check out the release announcement.
Downloads are available on:
Commits
be86783
Give more specific errors forverbatimModuleSyntax
(#62113)22ef577
LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250714...d5a414c
Don't usenoErrorTruncation
when printing types withmaximumLength
set (#...f14b5c8
Remove unused and confusing dom.iterable.d.ts file (#62037)2778e84
Restore AbortSignal.abort (#62086)65cb4bd
LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250710...9e20e03
Clear out checker-level stacks on pop (#62016)87740bc
Fix for Issue 61081 (#61221)833a8d4
Fix Symbol completion priority and cursor positioning (#61945)0018c9f
LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250702...- Additional commits viewable in compare view
Updates typescript-eslint
from 8.36.0 to 8.38.0
Release notes
Sourced from typescript-eslint's releases.
v8.38.0
8.38.0 (2025-07-21)
🚀 Features
- typescript-estree: forbid optional chain in
TemplateTaggedLiteral
(#11391)🩹 Fixes
- disallow extra properties in rule options (#11397)
- eslint-plugin: [consistent-generic-constructors] resolve conflict with
isolatedDeclarations
if enabled inconstructor
option (#11351)- typescript-eslint: infer tsconfigRootDir with v8 API (#11412)
- typescript-eslint: error on nested
extends
intseslint.config()
(#11361)- typescript-estree: ensure the token type of the property name is Identifier (#11329)
❤️ Thank You
- Andrew Kazakov
@andreww2012
- Kirk Waiblinger
@kirkwaiblinger
- MK
Pull Request Statistics
Commits:
1Files Changed:
2Additions:
+553Deletions:
-551
Package Dependencies
@typescript-eslint/parser
npm
8.36.0 → 8.38.0
Minor
@typescript-eslint/eslint-plugin
npm
8.36.0 → 8.38.0
Minor
@typescript-eslint/project-service
npm
8.36.0 → 8.38.0
Minor
@typescript-eslint/scope-manager
npm
8.36.0 → 8.38.0
Minor
@typescript-eslint/tsconfig-utils
npm
8.36.0 → 8.38.0
Minor
@typescript-eslint/type-utils
npm
8.36.0 → 8.38.0
Minor
@typescript-eslint/typescript-estree
npm
8.36.0 → 8.38.0
Minor
@typescript-eslint/visitor-keys
npm
8.36.0 → 8.38.0
Minor
Technical Details
ID: | 4567381 |
UUID: | 2718819765 |
Node ID: | PR_kwDOPIwKwc6iDeW1 |
Host: | GitHub |
Repository: | powersync-community/vite-react-ts-powersync-supabase |
Merge State: | Unknown |