An open index of dependabot pull requests across open source projects.

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

Open
Number: #32
Type: Pull Request
State: Open
Author: dependabot[bot] dependabot[bot]
Association: None
Comments: 1
Created: August 04, 2025 at 06:14 PM UTC
(about 2 months ago)
Updated: August 04, 2025 at 06:14 PM UTC
(about 2 months ago)
Labels:
dependencies javascript
Description:

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

Package Dependencies
Ecosystem:
npm
Version Change:
7.27.6 → 7.28.2
Update Type:
Minor
Ecosystem:
npm
Version Change:
4.6.0 → 4.7.0
Update Type:
Minor
Package:
eslint
Ecosystem:
npm
Version Change:
9.31.0 → 9.32.0
Update Type:
Minor
Package:
@types/node
Ecosystem:
npm
Version Change:
24.0.13 → 24.2.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
19.1.8 → 19.1.9
Update Type:
Patch
Package:
vite
Ecosystem:
npm
Version Change:
7.0.4 → 7.0.6
Update Type:
Patch
Package:
react-dom
Ecosystem:
npm
Version Change:
19.1.0 → 19.1.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.1.6 → 19.1.7
Update Type:
Patch
Ecosystem:
npm
Version Change:
7.28.1 → 7.28.2
Update Type:
Patch
Ecosystem:
npm
Version Change:
2.51.0 → 2.53.0
Update Type:
Minor
Package:
typescript
Ecosystem:
npm
Version Change:
5.8.3 → 5.9.2
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.36.0 → 8.38.0
Update Type:
Minor
Package:
esbuild
Ecosystem:
npm
Version Change:
0.25.6 → 0.25.8
Update Type:
Patch
Package:
@eslint/js
Ecosystem:
npm
Version Change:
9.31.0 → 9.32.0
Update Type:
Minor
Package:
rollup
Ecosystem:
npm
Version Change:
4.45.0 → 4.46.2
Update Type:
Minor
Ecosystem:
npm
Version Change:
1.5.182 → 1.5.194
Update Type:
Patch
Ecosystem:
npm
Version Change:
8.36.0 → 8.38.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.36.0 → 8.38.0
Update Type:
Minor
Package:
react
Ecosystem:
npm
Version Change:
19.1.0 → 19.1.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.0.30001727 → 1.0.30001731
Update Type:
Patch
Ecosystem:
npm
Version Change:
2.71.0 → 2.71.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
8.36.0 → 8.38.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.36.0 → 8.38.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.36.0 → 8.38.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.36.0 → 8.38.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.36.0 → 8.38.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.36.0 → 8.38.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.36.0 → 8.38.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.36.0 → 8.38.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
0.3.3 → 0.3.4
Update Type:
Patch
Ecosystem:
npm
Version Change:
7.8.0 → 7.10.0
Update Type:
Minor
Package:
supabase
Ecosystem:
npm
Version Change:
2.30.4 → 2.33.9
Update Type:
Minor
Ecosystem:
npm
Version Change:
7.20.7 → 7.28.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
1.0.0-beta.19 → 1.0.0-beta.27
Ecosystem:
npm
Version Change:
1.33.2 → 1.35.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
1.23.2 → 1.25.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
2.7.1 → 2.10.4
Update Type:
Minor
Ecosystem:
npm
Version Change:
1.5.3 → 1.6.0
Update Type:
Minor
Technical Details
ID: 4567381
UUID: 2718819765
Node ID: PR_kwDOPIwKwc6iDeW1
Host: GitHub
Repository: powersync-community/vite-react-ts-powersync-supabase
Merge State: Unknown