chore(deps): update all dependencies #1895
Open
+1,191
−821
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.2.6
->1.2.7
3.2.0
->3.3.1
9.20.0
->9.23.0
2.5.1
->2.6.1
9.1.0
->9.8.0
9.1.0
->9.8.0
5.66.0
->5.69.0
20.10.0
->20.17.25
19.0.8
->19.0.12
19.0.3
->19.0.4
8.24.0
->8.27.0
8.24.0
->8.27.0
3.8.0
->3.8.1
3.0.5
->3.0.9
9.20.1
->9.23.0
10.0.1
->10.1.1
5.1.0
->5.2.0
17.1.0
->17.4.4
8.5.2
->8.5.3
3.5.1
->3.5.3
2.5.1
->2.5.2
0.19.0
->0.20.0
7.1.5
->7.4.0
1.85.0
->1.86.0
16.14.1
->16.16.0
5.7.3
->5.8.2
6.1.0
->6.2.2
3.0.5
->3.0.9
0.4.3
->0.4.5
4.6.0
->4.7.0
Release Notes
eslint/rewrite (@eslint/compat)
v1.2.7
Compare Source
eslint/eslintrc (@eslint/eslintrc)
v3.3.1
Compare Source
Bug Fixes
types
field in package.json (#184) (2f4cf3f)v3.3.0
Compare Source
Features
eslint/eslint (@eslint/js)
v9.23.0
Compare Source
v9.22.0
Compare Source
v9.21.0
Compare Source
Features
418717f
feat: introduce new deprecated types for rules (#19238) (fnx)5c5b802
feat: Add--ext
CLI option (#19405) (Milos Djermanovic)Bug Fixes
db5340d
fix: update missing plugin message template (#19445) (Milos Djermanovic)d8ffdd4
fix: do not exit process on rule crash (#19436) (Francesco Trotta)Documentation
c5561ea
docs: Update README (GitHub Actions Bot)80b0485
docs: replacevar
withlet
andconst
in rule example (#19434) (Tanuj Kanti)f67d5e8
docs: Update README (GitHub Actions Bot)75afc61
docs: Update README (GitHub Actions Bot)0636cab
docs: Update Eleventy from v2 to v3 (#19415) (Amaresh S M)dd7d930
docs: Update README (GitHub Actions Bot)Chores
a8c9a9f
chore: update@eslint/eslintrc
and@eslint/js
(#19453) (Francesco Trotta)265e0cf
chore: package.json update for @eslint/js release (Jenkins)3401b85
test: add test forRule.ReportDescriptor
type (#19449) (Francesco Trotta)e497aa7
chore: update rewrite dependencies (#19448) (Francesco Trotta)dab5478
chore: better error message for missing plugin in config (#19402) (Tanuj Kanti)ebfe2eb
chore: set js language for bug report issue config block (#19439) (Josh Goldberg ✨)5fd211d
test: processors can return subpaths (#19425) (Milos Djermanovic)reduxjs/redux-toolkit (@reduxjs/toolkit)
v2.6.1
Compare Source
This bugfix release fixes several assorted types issues with the initial infinite query feature release, and adds support for an optional signal argument to
createAsyncThunk
.Changelog
Infinite Query Fixes
We've fixed several types issues that were reported with infinite queries after the 2.6.0 release:
matchFulfilled
andprovidesTags
now get the correct response typesType*
types to represent infinite queries, similar to the existing pre-defined types for queries and mutationsselectCachedArgsForQuery
now supports fetching args for infinite query endpointsuseInfiniteQueryState/Subscription
now correctly expect just the query arg, not the combined{queryArg, pageParam}
objectOther Improvements
createAsyncThunk
now accepts an optional{signal}
argument. If provided, the internal AbortSignal handling will tie into that signal.upsertQueryEntries
now correctly generates provided tags for upserted cache entries.What's Changed
Full Changelog: reduxjs/redux-toolkit@v2.6.0...v2.6.1
v2.6.0
Compare Source
This feature release adds infinite query support to RTK Query.
Changelog
RTK Query Infinite Query support
Since we first released RTK Query in 2021, we've had users asking us to add support for "infinite queries" - the ability to keep fetching additional pages of data for a given endpoint. It's been by far our most requested feature. Until recently, our answer was that we felt there were too many use cases to support with a single API design approach.
Last year, we revisited this concept and concluded that the best approach was to mimic the flexible infinite query API design from React Query. We had additional discussions with @tkdodo , who described the rationale and implementation approach and encouraged us to use their API design, and @riqts provided an initial implementation on top of RTKQ's existing internals.
We're excited to announce that this release officially adds full infinite query endpoint support to RTK Query!
Using Infinite Queries
As with React Query, the API design is based around "page param" values that act as the query arguments for fetching a specific page for the given cache entry.
Infinite queries are defined with a new
build.infiniteQuery()
endpoint type. It accepts all of the same options as normal query endpoints, but also needs an additionalinfiniteQueryOptions
field that specifies the infinite query behaviors. With TypeScript, you must supply 3 generic arguments:build.infiniteQuery<ResultType, QueryArg, PageParam>
, whereResultType
is the contents of a single page,QueryArg
is the type passed in as the cache key, andPageParam
is the value used to request a specific page.The endpoint must define an
initialPageParam
value that will be used as the default (and can be overridden if desired). It also needs agetNextPageParam
callback that will calculate the params for each page based on the existing values, and optionally agetPreviousPageParam
callback if reverse fetching is needed. Finally, amaxPages
option can be provided to limit the entry cache size.The
query
andqueryFn
methods now receive a{queryArg, pageParam}
object, instead of just thequeryArg
.For the cache entries and hooks, the
data
field is now an object like{pages: ResultType[], pageParams: PageParam[]>
. This gives you flexibility in how you use the data for rendering.As with all RTKQ functionality, the core logic is UI-agnostic and does not require React. However, using the RTKQ React entry point will also auto-generate
useInfiniteQuery
hooks for these endpoints. Infinite query hooks fetch the initial page, then providefetchNext/PreviousPage
functions to let you trigger requests for more pages.Docs and Examples
The RTK Query docs have been updated with new content and explanations for infinite queries:
createApi
documents the new infinite query endpoint optionsWe've also added a new infinite query example app in the repo that shows several usage patterns like pagination, cursors, infinite scrolling, and limit+offset queries.
Notes
As with all new features and functionality, more code does mean an increase in bundle size.
We did extensive work to byte-shave and optimize the final bundle size for this feature. Final estimates indicate that this adds about 4.2Kmin to production bundles. That's comparable to React Query's infinite query support size.
However, given RTKQ's current architecture, that bundle size increase is included even if you aren't using any infinite query endpoints in your application. Given the significant additional functionality, that seems like an acceptable tradeoff. (And as always, having this kind of functionality built into RTKQ means that your app benefits when it uses this feature without having to add a lot of additional code to your own app, which would likely be much larger.)
Longer-term, we hope to investigate reworking some of RTKQ's internal architecture to potentially make some of the features opt-in for better bundle size optimizations, but don't have a timeline for that work.
Thanks
This new feature wouldn't have been possible without huge amounts of assistance from several people. We'd like to thank:
What's Changed
and numerous specific sub-PRs that went into that integration PR as I worked through the implementation over the last few months.
Full Changelog: reduxjs/redux-toolkit@v2.5.1...v2.6.0
getsentry/sentry-javascript (@sentry/browser)
v9.8.0
Compare Source
res.end
before passing to Proxy (#15776)eventFilters
integration (#15752)Bundle size 📦
v9.7.0
Compare Source
captureLog
method (#15717)sentryHandleError
(#15726)fatal
level for unhandled rejections instrict
mode (#15720)Bundle size 📦
v9.6.1
Compare Source
Bundle size 📦
v9.6.0
Compare Source
Important Changes
feat(tanstackstart): Add
@sentry/tanstackstart-react
package and make@sentry/tanstackstart
package a utility package (#15629)Since TanStack Start is supposed to be a generic framework that supports libraries like React and Solid, the
@sentry/tanstackstart
SDK package was renamed to@sentry/tanstackstart-react
to reflect that the SDK is specifically intended to be used for React TanStack Start applications.Note that the TanStack Start SDK is still in alpha status and may be subject to breaking changes in non-major package updates.
Other Changes
fill
only patches functions (#15632)pageExtensions
when looking for instrumentation file (#15701)options
(#15610)Work in this release was contributed by @angelikatyborska and @nwalters512. Thank you for your contributions!
Bundle size 📦
Configuration
📅 Schedule: Branch creation - "on the first day of january" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.