Skip to content

chore(deps): bump the all-dependencies group with 38 updates#32

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/all-dependencies-21a5645728
Closed

chore(deps): bump the all-dependencies group with 38 updates#32
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/all-dependencies-21a5645728

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Aug 4, 2025

Bumps the all-dependencies group with 38 updates:

Package From To
@powersync/react 1.5.3 1.6.0
@powersync/web 1.23.2 1.25.0
@supabase/supabase-js 2.51.0 2.53.0
react 19.1.0 19.1.1
@types/react 19.1.8 19.1.9
react-dom 19.1.0 19.1.1
@types/react-dom 19.1.6 19.1.7
@eslint/js 9.31.0 9.32.0
@vitejs/plugin-react 4.6.0 4.7.0
eslint 9.31.0 9.32.0
supabase 2.30.4 2.33.9
typescript 5.8.3 5.9.2
typescript-eslint 8.36.0 8.38.0
vite 7.0.4 7.0.6
@babel/helpers 7.27.6 7.28.2
@babel/types 7.28.1 7.28.2
@eslint/plugin-kit 0.3.3 0.3.4
@powersync/common 1.33.2 1.35.0
@rolldown/pluginutils 1.0.0-beta.19 1.0.0-beta.27
@supabase/auth-js 2.71.0 2.71.1
@supabase/storage-js 2.7.1 2.10.4
@types/babel__traverse 7.20.7 7.28.0
@types/node 24.0.13 24.2.0
@typescript-eslint/eslint-plugin 8.36.0 8.38.0
@typescript-eslint/parser 8.36.0 8.38.0
@typescript-eslint/project-service 8.36.0 8.38.0
@typescript-eslint/scope-manager 8.36.0 8.38.0
@typescript-eslint/tsconfig-utils 8.36.0 8.38.0
@typescript-eslint/type-utils 8.36.0 8.38.0
@typescript-eslint/types 8.36.0 8.38.0
@typescript-eslint/typescript-estree 8.36.0 8.38.0
@typescript-eslint/utils 8.36.0 8.38.0
@typescript-eslint/visitor-keys 8.36.0 8.38.0
caniuse-lite 1.0.30001727 1.0.30001731
electron-to-chromium 1.5.182 1.5.194
esbuild 0.25.6 0.25.8
rollup 4.45.0 4.46.2
undici-types 7.8.0 7.10.0

Updates @powersync/react from 1.5.3 to 1.6.0

Release notes

Sourced from @​powersync/react's releases.

@​powersync/react@​1.6.0

Minor 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. The useQuery hook will only emit data 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

Updates @powersync/web from 1.23.2 to 1.25.0

Release notes

Sourced from @​powersync/web's releases.

@​powersync/web@​1.25.0

Minor 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.0

Minor 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

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.4
  • eea0444 feat: bump storage version, and expose StorageClientOptions
  • 137caec Merge pull request #1502 from georgRusanov/more_test
  • f4e2a6b added more tests
  • 115bc9a added edge tests
  • 45c4d46 add bucket test for deno
  • a5f787c added bucket test for bun
  • 4530d64 Merge pull request #1511 from mandarini/chore/lock-file-update
  • 143e377 chore: update pnpm lock file
  • Additional commits viewable in compare view

Updates react from 19.1.0 to 19.1.1

Release notes

Sourced from react's releases.

19.1.1 (July 28, 2025)

React

  • Fixed Owner Stacks to work with ES2015 function.name semantics (#33680 by @​hoxyq)
Changelog

Sourced from react's changelog.

19.1.1 (July 28, 2025)

React

  • Fixed Owner Stacks to work with ES2015 function.name semantics (#33680 by @​hoxyq)
Commits

Updates @types/react from 19.1.8 to 19.1.9

Commits

Updates react-dom from 19.1.0 to 19.1.1

Release notes

Sourced from react-dom's releases.

19.1.1 (July 28, 2025)

React

  • Fixed Owner Stacks to work with ES2015 function.name semantics (#33680 by @​hoxyq)
Changelog

Sourced from react-dom's changelog.

19.1.1 (July 28, 2025)

React

  • Fixed Owner Stacks to work with ES2015 function.name semantics (#33680 by @​hoxyq)
Commits

Updates @types/react-dom from 19.1.6 to 19.1.7

Commits

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 in ParserOptions.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: unpin jiti to version ^2.5.1 (#19970) (루밀LuMir)
  • 2ab1381 ci: pin jiti to version 2.4.2 (#19964) (Francesco Trotta)
  • b7f7545 test: switch to flat config mode in SourceCode tests (#19953) (Milos Djermanovic)
  • f5a35e3 test: switch to flat config mode in eslint-fuzzer (#19960) (Milos Djermanovic)
  • e22af8c refactor: use CustomRuleDefinitionType in JSRuleDefinition (#19949) (Francesco Trotta)
  • e855717 chore: switch performance tests to hyperfine (#19919) (Francesco Trotta)
  • 2f73a23 test: switch to flat config mode in ast-utils tests (#19948) (Milos Djermanovic)
  • c565a53 chore: exclude further_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: unpin jiti 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: pin jiti to version 2.4.2 (#19964) (Francesco Trotta)
  • b7f7545 test: switch to flat config mode in SourceCode 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: use CustomRuleDefinitionType in JSRuleDefinition (#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 in ast-utils tests (#19948) (Milos Djermanovic)
  • 7863d26 fix: remove outdated types in ParserOptions.ecmaFeatures (#19944) (ntnyq)
  • c565a53 chore: exclude further_reading_links.json from Prettier formatting (#19943) (Milos Djermanovic)
  • 3173305 fix: update execScript message in no-implied-eval rule (#19937) (TKDev7)
Commits

Updates @types/react from 19.1.8 to 19.1.9

Commits

Updates @types/react-dom from 19.1.6 to 19.1.7

Commits

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 of PluginOption[] (#537)

The return type has changed from react(): PluginOption[] to more specialized type react(): 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 of PluginOption[] (#537)

The return type has changed from react(): PluginOption[] to more specialized type react(): 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

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 in ParserOptions.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: unpin jiti to version ^2.5.1 (#19970) (루밀LuMir)
  • 2ab1381 ci: pin jiti to version 2.4.2 (#19964) (Francesco Trotta)
  • b7f7545 test: switch to flat config mode in SourceCode tests (#19953) (Milos Djermanovic)
  • f5a35e3 test: switch to flat config mode in eslint-fuzzer (#19960) (Milos Djermanovic)
  • e22af8c refactor: use CustomRuleDefinitionType in JSRuleDefinition (#19949) (Francesco Trotta)
  • e855717 chore: switch performance tests to hyperfine (#19919) (Francesco Trotta)
  • 2f73a23 test: switch to flat config mode in ast-utils tests (#19948) (Milos Djermanovic)
  • c565a53 chore: exclude further_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: unpin jiti 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: pin jiti to version 2.4.2 (#19964) (Francesco Trotta)
  • b7f7545 test: switch to flat config mode in SourceCode 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: use CustomRuleDefinitionType in JSRuleDefinition (#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 in ast-utils tests (#19948) (Milos Djermanovic)
  • 7863d26 fix: remove outdated types in ParserOptions.ecmaFeatures (#19944) (ntnyq)
  • c565a53 chore: exclude further_reading_links.json from Prettier formatting (#19943) (Milos Djermanovic)
  • 3173305 fix: update execScript message in no-implied-eval rule (#19937) (TKDev7)
Commits

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

v2.33.3

Changelog

Bug fixes

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

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 for verbatimModuleSyntax (#62113)
  • 22ef577 LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250714...
  • d5a414c Don't use noErrorTruncation when printing types with maximumLength 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 in constructor option (#11351)
  • typescript-eslint: infer tsconfigRootDir with v8 API (#11412)
  • typescript-eslint: error on nested extends in tseslint.config() (#11361)
  • typescript-estree: ensure the token type of the property name is Identifier (#11329)

❤️ Thank You

Bumps the all-dependencies group with 38 updates:

| Package | From | To |
| --- | --- | --- |
| [@powersync/react](https://github.com/powersync-ja/powersync-js) | `1.5.3` | `1.6.0` |
| [@powersync/web](https://github.com/powersync-ja/powersync-js) | `1.23.2` | `1.25.0` |
| [@supabase/supabase-js](https://github.com/supabase/supabase-js) | `2.51.0` | `2.53.0` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.1.0` | `19.1.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.1.9` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.1.1` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.1.7` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.31.0` | `9.32.0` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.6.0` | `4.7.0` |
| [eslint](https://github.com/eslint/eslint) | `9.31.0` | `9.32.0` |
| [supabase](https://github.com/supabase/cli) | `2.30.4` | `2.33.9` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` | `5.9.2` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.36.0` | `8.38.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `7.0.4` | `7.0.6` |
| [@babel/helpers](https://github.com/babel/babel/tree/HEAD/packages/babel-helpers) | `7.27.6` | `7.28.2` |
| [@babel/types](https://github.com/babel/babel/tree/HEAD/packages/babel-types) | `7.28.1` | `7.28.2` |
| [@eslint/plugin-kit](https://github.com/eslint/rewrite/tree/HEAD/packages/plugin-kit) | `0.3.3` | `0.3.4` |
| [@powersync/common](https://github.com/powersync-ja/powersync-js) | `1.33.2` | `1.35.0` |
| [@rolldown/pluginutils](https://github.com/rolldown/rolldown/tree/HEAD/packages/pluginutils) | `1.0.0-beta.19` | `1.0.0-beta.27` |
| [@supabase/auth-js](https://github.com/supabase/auth-js) | `2.71.0` | `2.71.1` |
| [@supabase/storage-js](https://github.com/supabase/storage-js) | `2.7.1` | `2.10.4` |
| [@types/babel__traverse](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/babel__traverse) | `7.20.7` | `7.28.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.0.13` | `24.2.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.36.0` | `8.38.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.36.0` | `8.38.0` |
| [@typescript-eslint/project-service](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/project-service) | `8.36.0` | `8.38.0` |
| [@typescript-eslint/scope-manager](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/scope-manager) | `8.36.0` | `8.38.0` |
| [@typescript-eslint/tsconfig-utils](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/tsconfig-utils) | `8.36.0` | `8.38.0` |
| [@typescript-eslint/type-utils](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/type-utils) | `8.36.0` | `8.38.0` |
| [@typescript-eslint/types](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/types) | `8.36.0` | `8.38.0` |
| [@typescript-eslint/typescript-estree](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-estree) | `8.36.0` | `8.38.0` |
| [@typescript-eslint/utils](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/utils) | `8.36.0` | `8.38.0` |
| [@typescript-eslint/visitor-keys](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/visitor-keys) | `8.36.0` | `8.38.0` |
| [caniuse-lite](https://github.com/browserslist/caniuse-lite) | `1.0.30001727` | `1.0.30001731` |
| [electron-to-chromium](https://github.com/kilian/electron-to-chromium) | `1.5.182` | `1.5.194` |
| [esbuild](https://github.com/evanw/esbuild) | `0.25.6` | `0.25.8` |
| [rollup](https://github.com/rollup/rollup) | `4.45.0` | `4.46.2` |
| [undici-types](https://github.com/nodejs/undici) | `7.8.0` | `7.10.0` |


Updates `@powersync/react` from 1.5.3 to 1.6.0
- [Release notes](https://github.com/powersync-ja/powersync-js/releases)
- [Commits](https://github.com/powersync-ja/powersync-js/compare/@powersync/react@1.5.3...@powersync/react@1.6.0)

Updates `@powersync/web` from 1.23.2 to 1.25.0
- [Release notes](https://github.com/powersync-ja/powersync-js/releases)
- [Commits](https://github.com/powersync-ja/powersync-js/compare/@powersync/web@1.23.2...@powersync/web@1.25.0)

Updates `@supabase/supabase-js` from 2.51.0 to 2.53.0
- [Release notes](https://github.com/supabase/supabase-js/releases)
- [Changelog](https://github.com/supabase/supabase-js/blob/master/RELEASE.md)
- [Commits](supabase/supabase-js@v2.51.0...v2.53.0)

Updates `react` from 19.1.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react)

Updates `@types/react` from 19.1.8 to 19.1.9
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `react-dom` from 19.1.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react-dom)

Updates `@types/react-dom` from 19.1.6 to 19.1.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `@eslint/js` from 9.31.0 to 9.32.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/commits/v9.32.0/packages/js)

Updates `@types/react` from 19.1.8 to 19.1.9
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `@types/react-dom` from 19.1.6 to 19.1.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `@vitejs/plugin-react` from 4.6.0 to 4.7.0
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@4.7.0/packages/plugin-react)

Updates `eslint` from 9.31.0 to 9.32.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.31.0...v9.32.0)

Updates `supabase` from 2.30.4 to 2.33.9
- [Release notes](https://github.com/supabase/cli/releases)
- [Changelog](https://github.com/supabase/cli/blob/develop/.goreleaser.yml)
- [Commits](supabase/cli@v2.30.4...v2.33.9)

Updates `typescript` from 5.8.3 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.8.3...v5.9.2)

Updates `typescript-eslint` from 8.36.0 to 8.38.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.38.0/packages/typescript-eslint)

Updates `vite` from 7.0.4 to 7.0.6
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.0.6/packages/vite)

Updates `@babel/helpers` from 7.27.6 to 7.28.2
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.2/packages/babel-helpers)

Updates `@babel/types` from 7.28.1 to 7.28.2
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.2/packages/babel-types)

Updates `@eslint/plugin-kit` from 0.3.3 to 0.3.4
- [Release notes](https://github.com/eslint/rewrite/releases)
- [Changelog](https://github.com/eslint/rewrite/blob/main/packages/plugin-kit/CHANGELOG.md)
- [Commits](https://github.com/eslint/rewrite/commits/plugin-kit-v0.3.4/packages/plugin-kit)

Updates `@powersync/common` from 1.33.2 to 1.35.0
- [Release notes](https://github.com/powersync-ja/powersync-js/releases)
- [Commits](https://github.com/powersync-ja/powersync-js/compare/@powersync/common@1.33.2...@powersync/common@1.35.0)

Updates `@rolldown/pluginutils` from 1.0.0-beta.19 to 1.0.0-beta.27
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.0.0-beta.27/packages/pluginutils)

Updates `@supabase/auth-js` from 2.71.0 to 2.71.1
- [Release notes](https://github.com/supabase/auth-js/releases)
- [Changelog](https://github.com/supabase/auth-js/blob/master/CHANGELOG.md)
- [Commits](supabase/auth-js@v2.71.0...v2.71.1)

Updates `@supabase/storage-js` from 2.7.1 to 2.10.4
- [Release notes](https://github.com/supabase/storage-js/releases)
- [Changelog](https://github.com/supabase/storage-js/blob/main/.releaserc.json)
- [Commits](supabase/storage-js@v2.7.1...v2.10.4)

Updates `@types/babel__traverse` from 7.20.7 to 7.28.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/babel__traverse)

Updates `@types/node` from 24.0.13 to 24.2.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@typescript-eslint/eslint-plugin` from 8.36.0 to 8.38.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.38.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.36.0 to 8.38.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.38.0/packages/parser)

Updates `@typescript-eslint/project-service` from 8.36.0 to 8.38.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/project-service/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.38.0/packages/project-service)

Updates `@typescript-eslint/scope-manager` from 8.36.0 to 8.38.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/scope-manager/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.38.0/packages/scope-manager)

Updates `@typescript-eslint/tsconfig-utils` from 8.36.0 to 8.38.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/tsconfig-utils/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.38.0/packages/tsconfig-utils)

Updates `@typescript-eslint/type-utils` from 8.36.0 to 8.38.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/type-utils/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.38.0/packages/type-utils)

Updates `@typescript-eslint/types` from 8.36.0 to 8.38.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/types/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.38.0/packages/types)

Updates `@typescript-eslint/typescript-estree` from 8.36.0 to 8.38.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-estree/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.38.0/packages/typescript-estree)

Updates `@typescript-eslint/utils` from 8.36.0 to 8.38.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/utils/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.38.0/packages/utils)

Updates `@typescript-eslint/visitor-keys` from 8.36.0 to 8.38.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/visitor-keys/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.38.0/packages/visitor-keys)

Updates `caniuse-lite` from 1.0.30001727 to 1.0.30001731
- [Commits](browserslist/caniuse-lite@1.0.30001727...1.0.30001731)

Updates `electron-to-chromium` from 1.5.182 to 1.5.194
- [Changelog](https://github.com/Kilian/electron-to-chromium/blob/master/CHANGELOG.md)
- [Commits](Kilian/electron-to-chromium@v1.5.182...v1.5.194)

Updates `esbuild` from 0.25.6 to 0.25.8
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.25.6...v0.25.8)

Updates `rollup` from 4.45.0 to 4.46.2
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.45.0...v4.46.2)

Updates `undici-types` from 7.8.0 to 7.10.0
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v7.8.0...v7.10.0)

---
updated-dependencies:
- dependency-name: "@powersync/react"
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@powersync/web"
  dependency-version: 1.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@supabase/supabase-js"
  dependency-version: 2.53.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: react
  dependency-version: 19.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@types/react"
  dependency-version: 19.1.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: react-dom
  dependency-version: 19.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@types/react-dom"
  dependency-version: 19.1.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@eslint/js"
  dependency-version: 9.32.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@types/react"
  dependency-version: 19.1.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@types/react-dom"
  dependency-version: 19.1.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 4.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: eslint
  dependency-version: 9.32.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: supabase
  dependency-version: 2.33.9
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: typescript-eslint
  dependency-version: 8.38.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: vite
  dependency-version: 7.0.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@babel/helpers"
  dependency-version: 7.28.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@babel/types"
  dependency-version: 7.28.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@eslint/plugin-kit"
  dependency-version: 0.3.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@powersync/common"
  dependency-version: 1.35.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rolldown/pluginutils"
  dependency-version: 1.0.0-beta.27
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@supabase/auth-js"
  dependency-version: 2.71.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@supabase/storage-js"
  dependency-version: 2.10.4
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@types/babel__traverse"
  dependency-version: 7.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@types/node"
  dependency-version: 24.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/project-service"
  dependency-version: 8.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/scope-manager"
  dependency-version: 8.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/tsconfig-utils"
  dependency-version: 8.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/type-utils"
  dependency-version: 8.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/types"
  dependency-version: 8.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/typescript-estree"
  dependency-version: 8.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/utils"
  dependency-version: 8.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/visitor-keys"
  dependency-version: 8.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: caniuse-lite
  dependency-version: 1.0.30001731
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: electron-to-chromium
  dependency-version: 1.5.194
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: esbuild
  dependency-version: 0.25.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: rollup
  dependency-version: 4.46.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: undici-types
  dependency-version: 7.10.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Aug 4, 2025

The reviewers field in the dependabot.yml file will be removed soon. Please use the code owners file to specify reviewers for Dependabot PRs. For more information, see this blog post.

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Aug 10, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Aug 10, 2025
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/all-dependencies-21a5645728 branch August 10, 2025 11:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants