-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(deps): update all non-major dependencies (examples & templates) (v1.29.x) (minor) #6265
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Size Change: 0 B Total Size: 375 kB ℹ️ View Unchanged
|
a7c696f
to
d226b5e
Compare
d226b5e
to
1c8a067
Compare
Lukas742
approved these changes
Aug 29, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
2.9.2
->2.11.2
2.9.2
->2.11.2
2.9.2
->2.11.2
2.9.2
->2.11.2
20.14.15
->20.16.2
7.11.0
->7.18.0
7.11.0
->7.18.0
13.10.0
->13.14.0
6.8.0
->6.9.0
7.34.4
->7.35.0
6.23.1
->6.26.1
5.4.5
->5.5.4
5.2.13
->5.4.2
Release Notes
remix-run/remix (@remix-run/dev)
v2.11.2
Compare Source
Patch Changes
@remix-run/server-runtime@2.11.2
@remix-run/node@2.11.2
v2.11.1
Compare Source
Patch Changes
@remix-run/server-runtime@2.11.1
@remix-run/node@2.11.1
v2.11.0
Compare Source
Minor Changes
future.unstable_fogOfWar
tofuture.unstable_lazyRouteDiscovery
for clarity (#9763)Patch Changes
@remix-run/node@2.11.0
@remix-run/server-runtime@2.11.0
v2.10.3
Compare Source
Patch Changes
@remix-run/node@2.10.3
@remix-run/server-runtime@2.10.3
v2.10.2
Compare Source
Patch Changes
@remix-run/server-runtime@2.10.2
@remix-run/node@2.10.2
v2.10.1
Compare Source
Patch Changes
@remix-run/node@2.10.1
@remix-run/server-runtime@2.10.1
v2.10.0
Compare Source
Patch Changes
express
dependency to^4.19.2
(#9184)@remix-run/server-runtime@2.10.0
@remix-run/node@2.10.0
remix-run/remix (@remix-run/node)
v2.11.2
Compare Source
Patch Changes
@remix-run/server-runtime@2.11.2
v2.11.1
Compare Source
Patch Changes
@remix-run/server-runtime@2.11.1
v2.11.0
Compare Source
Minor Changes
unstable_data()
API as a replacement forjson
/defer
when customstatus
/headers
are needed (#9769)replace(url, init?)
alternative toredirect(url, init?)
that performs ahistory.replaceState
instead of ahistory.pushState
on client-side navigation redirects (#9764)Patch Changes
@remix-run/server-runtime@2.11.0
v2.10.3
Compare Source
Patch Changes
@remix-run/server-runtime@2.10.3
v2.10.2
Compare Source
Patch Changes
@remix-run/server-runtime@2.10.2
v2.10.1
Compare Source
Patch Changes
@remix-run/server-runtime@2.10.1
v2.10.0
Compare Source
Patch Changes
@remix-run/server-runtime@2.10.0
remix-run/remix (@remix-run/react)
v2.11.2
Compare Source
Patch Changes
__manifest
endpoint since we no longer need thenotFoundPaths
fieldunstable_patchRoutesOnNavigation
function in RR (see remix-run/react-router#11888) (#9860)turbo-stream
tov2.3.0
(#9856)@remix-run/server-runtime@2.11.2
v2.11.1
Compare Source
Patch Changes
a7cffe57
)@remix-run/server-runtime@2.11.1
v2.11.0
Compare Source
Minor Changes
Single Fetch: Add a new
unstable_data()
API as a replacement forjson
/defer
when customstatus
/headers
are needed (#9769)Add a new
replace(url, init?)
alternative toredirect(url, init?)
that performs ahistory.replaceState
instead of ahistory.pushState
on client-side navigation redirects (#9764)Rename
future.unstable_fogOfWar
tofuture.unstable_lazyRouteDiscovery
for clarity (#9763)Single Fetch: Remove
responseStub
in favor ofheaders
(#9769)Background
middleware
implementation would require something likeResponseStub
so users could mutatestatus
/headers
inmiddleware
before/after handlers as well as during handlersheaders
got merged between document and data requestsResponseStub
and removed the usage ofheaders
in Single Fetchmiddleware
won't need a stub - users can just mutate theResponse
they get fromawait next()
directlyheaders
get merged, it makes more sense to stick with the currentheaders
API and apply that to Single Fetch and avoid introducing a totally new thing inRepsonseStub
(that always felt a bit awkward to work with anyway)With this change:
Response
instances in favor of returning raw data from loaders and actions:return json({ data: whatever });
~~return { data: whatever };
json()
anddefer()
calls in favor of returning raw data if they weren't setting customstatus
/headers
json
anddefer
in the next major version, but both should still work in Single Fetch in v2 to allow for incremental adoption of the new behaviorstatus
/headers
:unstable_data({...}, responseInit)
utility that will let you send backstatus
/headers
alongside your raw data without having to encode it into aResponse
headers()
function will let you control header merging for both document and data requestsPatch Changes
/path/.data
) (#9792)undefined
to theuseRouteLoaderData
type override (#9796)@remix-run/server-runtime@2.11.0
v2.10.3
Compare Source
Patch Changes
request.signal
throughdataStrategy
forloader
calls to fix cancellation (#9738)future.v7_skipActionErrorRevalidation
under the hood (#9706)shouldRevalidate
parameter fromunstable_actionStatus
toactionStatus
@remix-run/server-runtime@2.10.3
v2.10.2
Compare Source
Patch Changes
ref
toForm
(bdd04217
)@remix-run/server-runtime@2.10.2
v2.10.1
Compare Source
Patch Changes
reloadDocument
(#9686)<Form>
components (#9665)@remix-run/server-runtime@2.10.1
v2.10.0
Compare Source
Minor Changes
Add support for Lazy Route Discovery (a.k.a. Fog of War) (#9600)
Patch Changes
loader
data whenclientLoader
exists (#9580)Layout
ErrorBoundary
renders also throw (#9566)basename
(#9584)turbo-stream@2.2.0
for single fetch (#9562)@remix-run/server-runtime@2.10.0
remix-run/remix (@remix-run/serve)
v2.11.2
Compare Source
Patch Changes
@remix-run/node@2.11.2
@remix-run/express@2.11.2
v2.11.1
Compare Source
Patch Changes
@remix-run/node@2.11.1
@remix-run/express@2.11.1
v2.11.0
Compare Source
Patch Changes
@remix-run/node@2.11.0
@remix-run/express@2.11.0
v2.10.3
Compare Source
Patch Changes
@remix-run/express@2.10.3
@remix-run/node@2.10.3
v2.10.2
Compare Source
Patch Changes
@remix-run/node@2.10.2
@remix-run/express@2.10.2
v2.10.1
Compare Source
Patch Changes
@remix-run/express@2.10.1
@remix-run/node@2.10.1
v2.10.0
Compare Source
Patch Changes
express
dependency to^4.19.2
(#9184)@remix-run/express@2.10.0
@remix-run/node@2.10.0
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v7.18.0
Compare Source
🩹 Fixes
eslint-plugin: [no-unnecessary-type-assertion] prevent runtime error when asserting a variable declared in default TS lib
eslint-plugin: [unbound-method] report on destructuring in function parameters
eslint-plugin: [no-duplicate-type-constituents] shouldn't report on error types
eslint-plugin: [strict-boolean-expressions] support branded booleans
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v7.17.0
Compare Source
🚀 Features
eslint-plugin: backport no-unsafe-function type, no-wrapper-object-types from v8 to v7
eslint-plugin: [return-await] add option to report in error-handling scenarios only, and deprecate "never"
🩹 Fixes
eslint-plugin: [no-floating-promises] check top-level type assertions (and more)
eslint-plugin: [strict-boolean-expressions] consider assertion function argument a boolean context
eslint-plugin: [no-unnecessary-condition] false positive on optional private field
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v7.16.1
Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v7.16.0
Compare Source
🚀 Features
rule-tester: stricter rule test validations
eslint-plugin: [no-unnecessary-parameter-property-assignment] add new rule
eslint-plugin: add support for nested namespaces to unsafe-member-access
eslint-plugin: [no-floating-promises] add checkThenables option
🩹 Fixes
deps: update dependency @eslint-community/regexpp to v4.11.0
eslint-plugin: [no-floating-promises] add
suggestions
to tests from #9263checkThenables
website: react key error on internal pages of website
eslint-plugin: [restrict-template-expressions] don't report tuples if
allowArray
option is enabled❤️ Thank You
You can read about our versioning strategy and releases on our website.
v7.15.0
Compare Source
🚀 Features
eslint-plugin: [array-type] detect
Readonly<string[]>
caseeslint-plugin: back-port new rules around empty object types from v8
🩹 Fixes
disable
EXPERIMENTAL_useProjectService
indisabled-type-checked
shared configeslint-plugin: [no-unsafe-return] differentiate a types-error any from a true any
eslint-plugin: [no-unsafe-call] differentiate a types-error any from a true any
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v7.14.1
Compare Source
🩹 Fixes
eslint-plugin: [prefer-nullish-coalescing] treat enums and literals as their underlying primitive types
eslint-plugin: [prefer-nullish-coalescing] ensure ternary fix does not remove parens
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v7.14.0
Compare Source
🚀 Features
🩹 Fixes
eslint-plugin: [no-extraneous-class] handle abstract members
eslint-plugin: [prefer-nullish-coalescing] handle intersected primitive types
eslint-plugin: [no-invalid-this] support AccessorProperty
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v7.13.1
Compare Source
🩹 Fixes
eslint-plugin: [prefer-readonly] refine report locations
eslint-plugin: [return-await] support explicit resource management
eslint-plugin: [no-unsafe-member-access] differentiate a types-error any from a true any
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v7.13.0
Compare Source
🚀 Features
typescript-estree: require
import = require()
argument to be a string literaltypescript-estree: forbid
.body
,.async
,.generator
ondeclare function
eslint-plugin: [no-dynamic-delete] allow all string literals as index
🩹 Fixes
ast-spec: function-call-like callee should be Expression not LeftHandSideExpression
scope-manager: handle index signature in class
eslint-plugin: [init-declarations] refine report locations
eslint-plugin: [no-base-to-string] make error message more nuanced
eslint-plugin: [no-unsafe-assignment] be more specific about error types
eslint-plugin: [no-magic-numbers] fix implementation of the
ignore
option❤️ Thank You
You can read about our versioning strategy and releases on our website.
v7.12.0
Compare Source
🚀 Features
eslint-plugin: [no-useless-template-literals] rename to
no-useless-template-expression
(deprecateno-useless-template-literals
)rule-tester: check for parsing errors in suggestion fixes
rule-tester: port
checkDuplicateTestCases
from ESLinteslint-plugin: [no-floating-promises] add option 'allowForKnownSafePromises'
🩹 Fixes
no-useless-template-expression -> no-unnecessary-template-expression
eslint-plugin: [no-unnecessary-type-assertion] combine template literal check with
const
variable checkeslint-plugin: [dot-notation] fix false positive when accessing private/protected property with optional chaining
eslint-plugin: [explicit-member-accessibility] refine report locations
eslint-plugin: [no-unnecessary-type-assertion] declares are always defined, so always check
declare
seslint-plugin: [prefer-literal-enum-member] allow using member it self on allowBitwiseExpressions
eslint-plugin: [return-await] clean up in-try-catch detection and make autofixes safe
eslint-plugin: [member-ordering] also TSMethodSignature can be get/set
❤️ Thank You
You can read about our versioning strategy and releases on our website.
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v7.18.0
Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v7.17.0
Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v7.16.1
Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v7.16.0
Compare Source
🩹 Fixes
deps: update dependency @eslint-community/regexpp to v4.11.0
website: react key error on internal pages of website
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v7.15.0
Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v7.14.1
Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v7.14.0
Compare Source
🚀 Features
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v7.13.1
Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v7.13.0
Compare Source
🚀 Features
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v7.12.0
Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
cypress-io/cypress (cypress)
v13.14.0
Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#13-14-0
v13.13.3
Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#13-13-3
v13.13.2
Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#13-13-2
v13.13.1
Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#13-13-1
v13.13.0
Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#13-13-0
v13.12.0
Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#13-12-0
v13.11.0
Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#13-11-0
jsx-eslint/eslint-plugin-jsx-a11y (eslint-plugin-jsx-a11y)
v6.9.0
Compare Source
Fixed
img-redundant-alt
: fixed multibyte character support#969
#960
Commits
6b5f096
isNonInteractiveElement
: Upgrade aria-query to 5.3.0 and axobject-query to 3.2.1"75d5dd7
safe-regex-test
4c7e781
51a1ca7
@babel/cli
,@babel/core
,@babel/eslint-parser
,@babel/plugin-transform-flow-strip-types
,@babel/register
,eslint-doc-generator
,object.entries
1271ac1
@babel/cli
,@babel/core
,@babel/register
,aud
,eslint-plugin-import
,npmignore
,object.assign
540cb7a
@babel/runtime
,array-includes
,es-iterator-helpers
,hasown
,object.fromentries
,safe-regex-test
5d14408
aria-query
andaxobject-query
, addls-engines
test to CI32fd82c
@babel/core
,@babel/eslint-parser
,@babel/plugin-transform-flow-strip-types
,eslint-doc-generator
d1b4114
summary
remains non-interactive6a048da
@babel/runtime
0a98ad8
no-noninteractive-element-to-interactive-role
: allowmenuitemradio
andmenuitemcheckbox
on <li>c0733f9
@babel/runtime
,safe-regex-test
0d5321a
961817f
axe-core
b3559cf
object.entries
to dev deps1be7b70
@babel/runtime
2a48abb
@babel/runtime
1adec35
jsx-eslint/eslint-plugin-react (eslint-plugin-react)
v7.35.0
Compare Source
Added
jsx-props-no-spread-multi
] (#3724 @SimonSchick)forbid-component-props
]: addpropNamePattern
to allow / disallow prop name patterns (#3774 @akulsr0)jsx-handler-names
]: support ignoring component names (#3772 @akulsr0)jsx-closing-tag-location
]: addline-aligned
option (#3777 @kimtaejin3)no-danger
]: addcustomComponentNames
option (#3748 @akulsr0)Fixed
no-invalid-html-attribute
]: substitute placeholders in suggestion messages (#3759 @mdjermanovic)sort-prop-types
]: single line type ending without semicolon (#3784 @akulsr0)require-default-props
]: report when required props have default value (#3785 @akulsr0)Changed
variableUtil
: Avoid creating a single flat variable scope for each lookup (#3782 @DanielRosenwasser)remix-run/react-router (react-router-dom)
v6.26.1
Compare Source
v6.26.0
Compare Source
Minor Changes
replace(url, init?)
alternative toredirect(url, init?)
that performs ahistory.replaceState
instead of ahistory.pushState
on client-side navigation redirects (#11811)Patch Changes
future.v7_partialHydration
along withunstable_patchRoutesOnMiss
(#11838)router.state.matches
will now include any partial matches so that we can render ancestorHydrateFallback
components@remix-run/router@1.19.0
react-router@6.26.0
v6.25.1
Compare Source
Patch Changes
RouterProvider
internals to reduce unnecessary re-renders (#11803)react-router@6.25.1
v6.25.0
Compare Source
Minor Changes
Stabilize
future.unstable_skipActionErrorRevalidation
asfuture.v7_skipActionErrorRevalidation
(#11769)Response
with a4xx
/5xx
status codeshouldRevalidate
shouldRevalidate
'sunstable_actionStatus
parameter toactionStatus
Patch Changes
react-router@6.25.0
@remix-run/router@1.18.0
v6.24.1
Compare Source
Patch Changes
polyfill.io
reference from warning message because the domain was sold and has since been determined to serve malware (#11741)NavLinkRenderProps
type for easier typing of customNavLink
callback (#11553)@remix-run/router@1.17.1
react-router@6.24.1
v6.24.0
Compare Source
Minor Changes
Add support for Lazy Route Discovery (a.k.a. Fog of War) (#11626)
unstable_patchRoutesOnMiss
docs: https://reactrouter.com/en/main/routers/create-browser-routerPatch Changes
fetcher.submit
types - remove incorrectnavigate
/fetcherKey
/unstable_viewTransition
options because they are only relevant foruseSubmit
(#11631)location.state
values passed to<StaticRouter>
(#11495)react-router@6.24.0
@remix-run/router@1.17.0
Microsoft/TypeScript (typescript)
v5.5.4
Compare Source
v5.5.3
Compare Source
v5.5.2
Compare Source
vitejs/vite (vite)
v5.4.2
Compare Source
renderBuiltUrl
passed to module preload (#16084) (fac3a8e), closes #16084Configuration
📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, 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.