chore(deps): bump the all-dependencies group across 1 directory with 51 updates
Type: Pull Request
State: Closed
![dependabot[bot]](https://github.com/dependabot.png)
Association: None
Comments: 1
(24 days ago)
(22 days ago)
(22 days ago)
dependencies javascript
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.0Minor 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.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>
... (truncated)
Commits
03831dc
Version Packages (#684)dce523a
React 19 Fixes (#688)7f2c53d
Add changeset4d0fe53
Fix pushing into closed stream133353f
Test connecting from listener7ad251a
Improve Exports (#686)623d79f
Merge pull request #685 from powersync-ja/node-js-betadb0ec5a
Node.js -> beta7609155
Markdispose
as Deprecated (#683)47a2302
Version Packages (#680)- Additional commits viewable in compare view
Updates @powersync/web
from 1.23.2 to 1.25.1
Release notes
Sourced from @powersync/web
's releases.
@powersync/web
@1
.25.1Patch Changes
- Updated dependencies [7609155]
- Updated dependencies [7ad251a]
- Updated dependencies [7f2c53d]
@powersync/common
@1
.36.0
@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
03831dc
Version Packages (#684)dce523a
React 19 Fixes (#688)7f2c53d
Add changeset4d0fe53
Fix pushing into closed stream133353f
Test connecting from listener7ad251a
Improve Exports (#686)623d79f
Merge pull request #685 from powersync-ja/node-js-betadb0ec5a
Node.js -> beta7609155
Markdispose
as Deprecated (#683)47a2302
Version Packages (#680)- Additional commits viewable in compare view
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
- bump realtime js (2da3b97)
v2.54.0
2.54.0 (2025-08-07)
Features
v2.53.1
2.53.1 (2025-08-07)
Bug Fixes
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.4eea0444
feat: bump storage version, and expose StorageClientOptions137caec
Merge pull request #1502 from georgRusanov/more_testf4e2a6b
added more tests115bc9a
added edge tests- 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.10
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.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 inone-var
(#19941) (Sweta Tanwar)Bug Fixes
732433c
fix: allow any type formeta.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 inno-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
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 toLinter.Config
inESLintRules
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 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)
... (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 formeta.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 inno-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 toLinter.Config
inESLintRules
type tests (#19977) (Francesco Trotta)e8a6914
fix: Fixed potential bug in check-emfile-handling.js (#19975) (諏訪原慶斗)90b050e
feat: support explicit resource management inone-var
(#19941) (Sweta Tanwar)27fa865
build: useESLint
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: 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
ad28371
chore: package.json update for@eslint/js
release50de1ce
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
- 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 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 thedisableOxcRecommendation
option is removed.Also, while
@vitejs/plugin-react-oxc
used the production JSX transform even forNODE_ENV=development
build,@vitejs/plugin-react
uses the development JSX transform forNODE_ENV=development
build.Allow processing files in
node_modules
The default value of
exclude
options is now[/\/node_modules\//]
to allow processing files innode_modules
directory. It was previously[]
and files innode_modules
was always excluded regardless of the value ofexclude
option.
react
andreact-dom
is no longer added toresolve.dedupe
automaticallyAdding 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 addsreact
andreact-dom
toresolve.dedupe
automatically.If you encounter errors after upgrading, check your package.json for version mismatches in
dependencies
ordevDependencies
, as well as your package manager’s configuration. If you prefer the previous behavior, you can manually addreact
andreact-dom
toresolve.dedupe
.Remove old
babel-plugin-react-compiler
support that requiresruntimeModule
option
runtimeModule
option is no longer needed in newerbabel-plugin-react-compiler
versions. Make sure to use a newer version ofbabel-plugin-react-compiler
that supportstarget
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 thedisableOxcRecommendation
option is removed.Also, while
@vitejs/plugin-react-oxc
used the production JSX transform even forNODE_ENV=development
build,@vitejs/plugin-react
uses the development JSX transform forNODE_ENV=development
build.Allow processing files in
node_modules
The default value of
exclude
options is now[/\/node_modules\//]
to allow processing files innode_modules
directory. It was previously[]
and files innode_modules
was always excluded regardless of the value ofexclude
option.
react
andreact-dom
is no longer added toresolve.dedupe
automaticallyAdding 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 addsreact
andreact-dom
toresolve.dedupe
automatically.If you encounter errors after upgrading, check your package.json for version mismatches in
dependencies
ordevDependencies
, as well as your package manager’s configuration. If you prefer the previous behavior, you can manually addreact
andreact-dom
toresolve.dedupe
.Remove old
babel-plugin-react-compiler
support that requiresruntimeModule
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 thedisableOxcRecommendation
option is removed.Also, while
@vitejs/plugin-react-oxc
used the production JSX transform even forNODE_ENV=development
build,@vitejs/plugin-react
uses the development JSX transform forNODE_ENV=development
build.Allow processing files in
node_modules
The default value of
exclude
options is now[/\/node_modules\//]
to allow processing files innode_modules
directory. It was previously[]
and files innode_modules
was always excluded regardless of the value ofexclude
option.
react
andreact-dom
is no longer added toresolve.dedupe
automaticallyAdding 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 addsreact
andreact-dom
toresolve.dedupe
automatically.If you encounter errors after upgrading, check your package.json for version mismatches in
dependencies
ordevDependencies
, as well as your package manager’s configuration. If you prefer the previous behavior, you can manually addreact
andreact-dom
toresolve.dedupe
.Remove old
babel-plugin-react-compiler
support that requiresruntimeModule
option
runtimeModule
option is no longer needed in newerbabel-plugin-react-compiler
versions. Make sure to use a newer version ofbabel-plugin-react-compiler
that supportstarget
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 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'] } }) </tr></table>
... (truncated)
Commits
9e4a944
release: plugin-react@5.0.061d777d
fix(deps): update all non-major dependencies (#670)7d3a57a
release: plugin-react@5.0.0-beta.09ffd86d
fix(react): use development jsx transform forNODE_ENV=development
build (#...133d786
feat: mergeplugin-react-oxc
intoplugin-react
(#609)26326b3
feat!: support including files in node_modules (#306)9ce3b22
fix(deps): update all non-major dependencies (#593)cadd7d2
fix!: removeresolve.dedupe
(#586)005f16e
refactor!: remove oldbabel-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 inone-var
(#19941) (Sweta Tanwar)Bug Fixes
732433c
fix: allow any type formeta.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 inno-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
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 toLinter.Config
inESLintRules
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 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)
... (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 formeta.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 inno-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 toLinter.Config
inESLintRules
type tests (#19977) (Francesco Trotta)e8a6914
fix: Fixed potential bug in check-emfile-handling.js (#19975) (諏訪原慶斗)90b050e
feat: support explicit resource management inone-var
(#19941) (Sweta Tanwar)27fa865
build: useESLint
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: unpinjiti
to version^2.5.1
(#19970) (루밀LuMir)d498887
fix: bump@eslint/plugin-kit
to 0.3.4 to resolve vulnerability (#19965) (Milos Djermanovic)Pull Request Statistics
Commits:
1Files Changed:
2Additions:
+451Deletions:
-459
Package Dependencies
@jridgewell/sourcemap-codec
npm
1.5.4 → 1.5.5
Patch
@jridgewell/trace-mapping
npm
0.3.29 → 0.3.30
Patch
Technical Details
ID: | 5364125 |
UUID: | 2751213329 |
Node ID: | PR_kwDOPIwKwc6j_C8R |
Host: | GitHub |
Repository: | powersync-community/vite-react-ts-powersync-supabase |
Merge State: | Dirty |