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

chore(deps): bump the all-dependencies group across 1 directory with 51 updates

Closed
Number: #34
Type: Pull Request
State: Closed
Author: dependabot[bot] dependabot[bot]
Association: None
Comments: 1
Created: August 17, 2025 at 11:54 AM UTC
(24 days ago)
Updated: August 19, 2025 at 10:46 AM UTC
(22 days ago)
Closed: August 19, 2025 at 10:46 AM UTC
(22 days ago)
Time to Close: 2 days
Labels:
dependencies javascript
Description:

Bumps the all-dependencies group with 24 updates in the / directory:

Package From To
@powersync/react 1.5.3 1.7.0
@powersync/web 1.23.2 1.25.1
@supabase/supabase-js 2.51.0 2.55.0
react 19.1.0 19.1.1
@types/react 19.1.8 19.1.10
react-dom 19.1.0 19.1.1
@types/react-dom 19.1.6 19.1.7
@eslint/js 9.31.0 9.33.0
@vitejs/plugin-react 4.6.0 5.0.0
eslint 9.31.0 9.33.0
supabase 2.30.4 2.34.3
typescript 5.8.3 5.9.2
typescript-eslint 8.36.0 8.39.1
vite 7.0.4 7.1.2
@babel/core 7.28.0 7.28.3
@jridgewell/gen-mapping 0.3.12 0.3.13
@jridgewell/sourcemap-codec 1.5.4 1.5.5
@jridgewell/trace-mapping 0.3.29 0.3.30
@types/babel__traverse 7.20.7 7.28.0
@types/node 24.0.13 24.3.0
browserslist 4.25.1 4.25.2
esbuild 0.25.6 0.25.9
rollup 4.45.0 4.46.2
fdir 6.4.6 6.5.0

Updates @powersync/react from 1.5.3 to 1.7.0

Release notes

Sourced from @​powersync/react's releases.

@​powersync/react@​1.7.0

Minor Changes

  • 7ad251a: Updated package exports to reflect ESM nature.
  • 7ad251a: Update package exports to reflect ESM exports.

Patch Changes

  • dce523a: Fixed regression in useSuspendingQuery where releaseHold is not a function could be thrown during rendering.
  • Updated dependencies [7609155]
  • Updated dependencies [7ad251a]
  • Updated dependencies [7f2c53d]
    • @​powersync/common@​1.36.0

@​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>

... (truncated)

Commits

Updates @powersync/web from 1.23.2 to 1.25.1

Release notes

Sourced from @​powersync/web's releases.

@​powersync/web@​1.25.1

Patch Changes

  • Updated dependencies [7609155]
  • Updated dependencies [7ad251a]
  • Updated dependencies [7f2c53d]
    • @​powersync/common@​1.36.0

@​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.55.0

Release notes

Sourced from @​supabase/supabase-js's releases.

v2.55.0

2.55.0 (2025-08-12)

Features

v2.55.0-next.1

2.55.0-next.1 (2025-08-12)

Bug Fixes

  • update test to provide ws (5ac9926)

Features

v2.54.0

2.54.0 (2025-08-07)

Features

  • fallback to key - update realtime js to 2.15.0 (#1523) (7876a24)

v2.53.1

2.53.1 (2025-08-07)

Bug Fixes

  • avoid Next.js Edge Runtime warnings in Node.js deprecation check (#1520) (4f38a9c), closes #1515

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

... (truncated)

Commits
  • 445dad3 feat: bump realtime-js to 2.15.1 (#1529)
  • 7876a24 feat: fallback to key - update realtime js to 2.15.0 (#1523)
  • dd01463 chore: cleanups - pnpm removal - webpack polyfill - ci update (#1521)
  • 4f38a9c fix: avoid Next.js Edge Runtime warnings in Node.js deprecation check (#1520)
  • 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
  • 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.10

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.33.0

Release notes

Sourced from @​eslint/js's releases.

v9.33.0

Features

  • e07820e feat: add global object access detection to no-restricted-globals (#19939) (sethamus)
  • 90b050e feat: support explicit resource management in one-var (#19941) (Sweta Tanwar)

Bug Fixes

  • 732433c fix: allow any type for meta.docs.recommended in custom rules (#19995) (Francesco Trotta)
  • e8a6914 fix: Fixed potential bug in check-emfile-handling.js (#19975) (諏訪原慶斗)

Documentation

  • 34f0723 docs: playground button for TypeScript code example (#19671) (Tanuj Kanti)
  • dc942a4 docs: Update README (GitHub Actions Bot)
  • 5a4b6f7 docs: Update no-multi-assign.md (#19979) (Yuki Takada (Yukinosuke Takada))
  • 247e156 docs: add missing let declarations in no-plusplus (#19980) (Yuki Takada (Yukinosuke Takada))
  • 0d17242 docs: Update README (GitHub Actions Bot)
  • fa20b9d docs: Clarify when to open an issue for a PR (#19974) (Nicholas C. Zakas)

Build Related

  • 27fa865 build: use ESLint class to generate formatter examples (#19972) (Milos Djermanovic)

Chores

  • 4258046 chore: update dependency @​eslint/js to v9.33.0 (#19998) (renovate[bot])
  • ad28371 chore: package.json update for @​eslint/js release (Jenkins)
  • 06a22f1 test: resolve flakiness in --mcp flag test (#19993) (Pixel998)
  • 54920ed test: switch to Linter.Config in ESLintRules type tests (#19977) (Francesco Trotta)

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)

... (truncated)

Changelog

Sourced from @​eslint/js's changelog.

v9.33.0 - August 8, 2025

  • 4258046 chore: update dependency @​eslint/js to v9.33.0 (#19998) (renovate[bot])
  • ad28371 chore: package.json update for @​eslint/js release (Jenkins)
  • 06a22f1 test: resolve flakiness in --mcp flag test (#19993) (Pixel998)
  • 732433c fix: allow any type for meta.docs.recommended in custom rules (#19995) (Francesco Trotta)
  • 34f0723 docs: playground button for TypeScript code example (#19671) (Tanuj Kanti)
  • dc942a4 docs: Update README (GitHub Actions Bot)
  • 5a4b6f7 docs: Update no-multi-assign.md (#19979) (Yuki Takada (Yukinosuke Takada))
  • 247e156 docs: add missing let declarations in no-plusplus (#19980) (Yuki Takada (Yukinosuke Takada))
  • 0d17242 docs: Update README (GitHub Actions Bot)
  • e07820e feat: add global object access detection to no-restricted-globals (#19939) (sethamus)
  • fa20b9d docs: Clarify when to open an issue for a PR (#19974) (Nicholas C. Zakas)
  • 54920ed test: switch to Linter.Config in ESLintRules type tests (#19977) (Francesco Trotta)
  • e8a6914 fix: Fixed potential bug in check-emfile-handling.js (#19975) (諏訪原慶斗)
  • 90b050e feat: support explicit resource management in one-var (#19941) (Sweta Tanwar)
  • 27fa865 build: use ESLint class to generate formatter examples (#19972) (Milos Djermanovic)

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
  • ad28371 chore: package.json update for @​eslint/js release
  • 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.10

Commits

Updates @types/react-dom from 19.1.6 to 19.1.7

Commits

Updates @vitejs/plugin-react from 4.6.0 to 5.0.0

Release notes

Sourced from @​vitejs/plugin-react's releases.

plugin-react@5.0.0

(Same content as v5.0.0-beta.0 https://github.com/vitejs/vite-plugin-react/releases/tag/plugin-react%405.0.0-beta.0)

Use Oxc for react refresh transform in rolldown-vite

When used with rolldown-vite, this plugin now uses Oxc for react refresh transform.

Since this behavior is what @vitejs/plugin-react-oxc did, @vitejs/plugin-react-oxc is now deprecated and the disableOxcRecommendation option is removed.

Also, while @vitejs/plugin-react-oxc used the production JSX transform even for NODE_ENV=development build, @vitejs/plugin-react uses the development JSX transform for NODE_ENV=development build.

Allow processing files in node_modules

The default value of exclude options is now [/\/node_modules\//] to allow processing files in node_modules directory. It was previously [] and files in node_modules was always excluded regardless of the value of exclude option.

react and react-dom is no longer added to resolve.dedupe automatically

Adding values to resolve.dedupe forces Vite to resolve them differently from how Node.js does, which can be confusing and may not be expected. This plugin no longer adds react and react-dom to resolve.dedupe automatically.

If you encounter errors after upgrading, check your package.json for version mismatches in dependencies or devDependencies, as well as your package manager’s configuration. If you prefer the previous behavior, you can manually add react and react-dom to resolve.dedupe.

Remove old babel-plugin-react-compiler support that requires runtimeModule option

runtimeModule option is no longer needed in newer babel-plugin-react-compiler versions. Make sure to use a newer version of babel-plugin-react-compiler that supports target option.

Require Node 20.19+, 22.12+

This plugin now requires Node 20.19+ or 22.12+.

plugin-react@5.0.0-beta.0

Use Oxc for react refresh transform in rolldown-vite

When used with rolldown-vite, this plugin now uses Oxc for react refresh transform.

Since this behavior is what @vitejs/plugin-react-oxc did, @vitejs/plugin-react-oxc is now deprecated and the disableOxcRecommendation option is removed.

Also, while @vitejs/plugin-react-oxc used the production JSX transform even for NODE_ENV=development build, @vitejs/plugin-react uses the development JSX transform for NODE_ENV=development build.

Allow processing files in node_modules

The default value of exclude options is now [/\/node_modules\//] to allow processing files in node_modules directory. It was previously [] and files in node_modules was always excluded regardless of the value of exclude option.

react and react-dom is no longer added to resolve.dedupe automatically

Adding values to resolve.dedupe forces Vite to resolve them differently from how Node.js does, which can be confusing and may not be expected. This plugin no longer adds react and react-dom to resolve.dedupe automatically.

If you encounter errors after upgrading, check your package.json for version mismatches in dependencies or devDependencies, as well as your package manager’s configuration. If you prefer the previous behavior, you can manually add react and react-dom to resolve.dedupe.

Remove old babel-plugin-react-compiler support that requires runtimeModule option

... (truncated)

Changelog

Sourced from @​vitejs/plugin-react's changelog.

5.0.0 (2025-08-07)

5.0.0-beta.0 (2025-07-28)

Use Oxc for react refresh transform in rolldown-vite

When used with rolldown-vite, this plugin now uses Oxc for react refresh transform.

Since this behavior is what @vitejs/plugin-react-oxc did, @vitejs/plugin-react-oxc is now deprecated and the disableOxcRecommendation option is removed.

Also, while @vitejs/plugin-react-oxc used the production JSX transform even for NODE_ENV=development build, @vitejs/plugin-react uses the development JSX transform for NODE_ENV=development build.

Allow processing files in node_modules

The default value of exclude options is now [/\/node_modules\//] to allow processing files in node_modules directory. It was previously [] and files in node_modules was always excluded regardless of the value of exclude option.

react and react-dom is no longer added to resolve.dedupe automatically

Adding values to resolve.dedupe forces Vite to resolve them differently from how Node.js does, which can be confusing and may not be expected. This plugin no longer adds react and react-dom to resolve.dedupe automatically.

If you encounter errors after upgrading, check your package.json for version mismatches in dependencies or devDependencies, as well as your package manager’s configuration. If you prefer the previous behavior, you can manually add react and react-dom to resolve.dedupe.

Remove old babel-plugin-react-compiler support that requires runtimeModule option

runtimeModule option is no longer needed in newer babel-plugin-react-compiler versions. Make sure to use a newer version of babel-plugin-react-compiler that supports target option.

Require Node 20.19+, 22.12+

This plugin now requires Node 20.19+ or 22.12+.

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'] } })
</tr></table> 

... (truncated)

Commits
  • 9e4a944 release: plugin-react@5.0.0
  • 61d777d fix(deps): update all non-major dependencies (#670)
  • 7d3a57a release: plugin-react@5.0.0-beta.0
  • 9ffd86d fix(react): use development jsx transform for NODE_ENV=development build (#...
  • 133d786 feat: merge plugin-react-oxc into plugin-react (#609)
  • 26326b3 feat!: support including files in node_modules (#306)
  • 9ce3b22 fix(deps): update all non-major dependencies (#593)
  • cadd7d2 fix!: remove resolve.dedupe (#586)
  • 005f16e refactor!: remove old babel-plugin-react-compiler support (#584)
  • b9efa3f refactor!: bump required node version to 20.19+, 22.12+ and drop CJS build (#...
  • Additional commits viewable in compare view

Updates eslint from 9.31.0 to 9.33.0

Release notes

Sourced from eslint's releases.

v9.33.0

Features

  • e07820e feat: add global object access detection to no-restricted-globals (#19939) (sethamus)
  • 90b050e feat: support explicit resource management in one-var (#19941) (Sweta Tanwar)

Bug Fixes

  • 732433c fix: allow any type for meta.docs.recommended in custom rules (#19995) (Francesco Trotta)
  • e8a6914 fix: Fixed potential bug in check-emfile-handling.js (#19975) (諏訪原慶斗)

Documentation

  • 34f0723 docs: playground button for TypeScript code example (#19671) (Tanuj Kanti)
  • dc942a4 docs: Update README (GitHub Actions Bot)
  • 5a4b6f7 docs: Update no-multi-assign.md (#19979) (Yuki Takada (Yukinosuke Takada))
  • 247e156 docs: add missing let declarations in no-plusplus (#19980) (Yuki Takada (Yukinosuke Takada))
  • 0d17242 docs: Update README (GitHub Actions Bot)
  • fa20b9d docs: Clarify when to open an issue for a PR (#19974) (Nicholas C. Zakas)

Build Related

  • 27fa865 build: use ESLint class to generate formatter examples (#19972) (Milos Djermanovic)

Chores

  • 4258046 chore: update dependency @​eslint/js to v9.33.0 (#19998) (renovate[bot])
  • ad28371 chore: package.json update for @​eslint/js release (Jenkins)
  • 06a22f1 test: resolve flakiness in --mcp flag test (#19993) (Pixel998)
  • 54920ed test: switch to Linter.Config in ESLintRules type tests (#19977) (Francesco Trotta)

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)

... (truncated)

Changelog

Sourced from eslint's changelog.

v9.33.0 - August 8, 2025

  • 4258046 chore: update dependency @​eslint/js to v9.33.0 (#19998) (renovate[bot])
  • ad28371 chore: package.json update for @​eslint/js release (Jenkins)
  • 06a22f1 test: resolve flakiness in --mcp flag test (#19993) (Pixel998)
  • 732433c fix: allow any type for meta.docs.recommended in custom rules (#19995) (Francesco Trotta)
  • 34f0723 docs: playground button for TypeScript code example (#19671) (Tanuj Kanti)
  • dc942a4 docs: Update README (GitHub Actions Bot)
  • 5a4b6f7 docs: Update no-multi-assign.md (#19979) (Yuki Takada (Yukinosuke Takada))
  • 247e156 docs: add missing let declarations in no-plusplus (#19980) (Yuki Takada (Yukinosuke Takada))
  • 0d17242 docs: Update README (GitHub Actions Bot)
  • e07820e feat: add global object access detection to no-restricted-globals (#19939) (sethamus)
  • fa20b9d docs: Clarify when to open an issue for a PR (#19974) (Nicholas C. Zakas)
  • 54920ed test: switch to Linter.Config in ESLintRules type tests (#19977) (Francesco Trotta)
  • e8a6914 fix: Fixed potential bug in check-emfile-handling.js (#19975) (諏訪原慶斗)
  • 90b050e feat: support explicit resource management in one-var (#19941) (Sweta Tanwar)
  • 27fa865 build: use ESLint class to generate formatter examples (#19972) (Milos Djermanovic)

v9.32.0 - July 25, 2025

Package Dependencies
Ecosystem:
npm
Version Change:
4.6.0 → 5.0.0
Update Type:
Major
Package:
eslint
Ecosystem:
npm
Version Change:
9.31.0 → 9.33.0
Update Type:
Minor
Package:
@types/node
Ecosystem:
npm
Version Change:
24.0.13 → 24.3.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
19.1.8 → 19.1.10
Update Type:
Patch
Package:
vite
Ecosystem:
npm
Version Change:
7.0.4 → 7.1.2
Update Type:
Minor
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:
2.51.0 → 2.55.0
Update Type:
Minor
Package:
@babel/core
Ecosystem:
npm
Version Change:
7.28.0 → 7.28.3
Update Type:
Patch
Package:
typescript
Ecosystem:
npm
Version Change:
5.8.3 → 5.9.2
Update Type:
Minor
Package:
esbuild
Ecosystem:
npm
Version Change:
0.25.6 → 0.25.9
Update Type:
Patch
Package:
@eslint/js
Ecosystem:
npm
Version Change:
9.31.0 → 9.33.0
Update Type:
Minor
Package:
rollup
Ecosystem:
npm
Version Change:
4.45.0 → 4.46.2
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.36.0 → 8.39.1
Update Type:
Minor
Package:
react
Ecosystem:
npm
Version Change:
19.1.0 → 19.1.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
4.25.1 → 4.25.2
Update Type:
Patch
Package:
fdir
Ecosystem:
npm
Version Change:
6.4.6 → 6.5.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
0.3.12 → 0.3.13
Update Type:
Patch
Package:
supabase
Ecosystem:
npm
Version Change:
2.30.4 → 2.34.3
Update Type:
Minor
Ecosystem:
npm
Version Change:
7.20.7 → 7.28.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
1.23.2 → 1.25.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
1.5.4 → 1.5.5
Update Type:
Patch
Ecosystem:
npm
Version Change:
0.3.29 → 0.3.30
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.5.3 → 1.7.0
Update Type:
Minor
Technical Details
ID: 5364125
UUID: 2751213329
Node ID: PR_kwDOPIwKwc6j_C8R
Host: GitHub
Repository: powersync-community/vite-react-ts-powersync-supabase
Merge State: Dirty