chore(deps): update [dev] minor and patch dependencies for gatsby-plugin-preact #426
+68
−58
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:
^0.5.7
->^0.5.15
^10.6.4
->^10.25.0
Release Notes
pmmmwh/react-refresh-webpack-plugin (@pmmmwh/react-refresh-webpack-plugin)
v0.5.15
Compare Source
Fixes
ansi-html
(#853)v0.5.14
Compare Source
Fixes
ansi-html
v0.0.9
andschema-utils
v4.x
(#848)Internal
jest
to v29 and some other development dependencies (#848)yalc
(#849)v0.5.13
Compare Source
Fixes
v0.5.12
Compare Source
Fixes
sockProtocol
override (#835)webpack-dev-server
to allow v5.x (#837)v0.5.11
Compare Source
Features
Fixes
type-fest
to allow v4.x (#767)v0.5.10
Compare Source
Fixes
loader-utils
to fix security vulnerability (#700)v0.5.9
Compare Source
Fixes
loader-utils
to fix security vulnerability (#685)v0.5.8
Compare Source
Fixes
require.resolve
in loader injection (#669)core-js-pure
to not depend on deprecated versions (#674)preactjs/preact (preact)
v10.25.0
Compare Source
Features
Move per-element type interfaces into core and more strictly type IntrinsicElements (#4546, thanks @rschristian)
This adds per-element typings for every DOM-node type, this means that our types might become slightly stricter when you are using DOM attributes/properties where they are not allowed, an example of this might be
<div src="x" />
.If you notice any issues when upgrading tell us about them, we can evaluate whether we have missed a case.
Recreate unkeyed functional components when they change position. (#4550, thanks @JoviDeCroock)
This is a long time bugfix, when we have elements that look like
We would reuse the state of the first VNode to render the second one when the condition switches. When you are using
key
, this issue was not present.Support
{ handleEvent() {} }
object interface as a listener (#4538, thanks @lilnasy)We've added support for attaching object/class event-handlers
Fixes
Maintenance
Signalish
helper to reduce verbosity (#4545, thanks @rschristian)react/iframe-missing-sandbox
(#4533, thanks @DonIsaac)v10.24.3
Compare Source
Fixes
Performance
Maintenance
v10.24.2
Compare Source
Performance
Types
Maintenance
v10.24.1
Compare Source
Fixes
Types
spellCheck
type (#4497, thanks @rschristian)Maintenance
v10.24.0
Compare Source
Features
Fixes
Types
AnyComponent
type to support classes (#4479, thanks @rschristian)Maintenance
v10.23.2
Compare Source
Fixes
Types
Maintenance
v10.23.1
Compare Source
Fixes
v10.23.0
Compare Source
Features
This adds support for returning a function in functional refs, example
Fixes
Types
Maintenance
v10.22.1
Compare Source
Fixes
Types
Ref
type. (#4403, thanks @maxbrieiev)preact-render-to-string
(#4395, thanks @Austaras)Maintenance
globalThis
overwindow
if available (#4401, thanks @marvinhagemeister)Performance
v10.22.0
Compare Source
Features
Types
Maintenance
Fixes
compat/client
for IE11 support (#4372, thanks @rschristian)v10.21.0
Compare Source
Features
Fixes
ReactCurrentDispatcher
(#4342, thanks @rschristian)Types
Maintenance
v10.20.2
Compare Source
Fixes
oldDom
is present in the DOM (#4318, thanks @JoviDeCroock)Types
Maintenance
v10.20.1
Compare Source
Fixes
v10.20.0
Compare Source
Features
Fixes
v10.19.7
Compare Source
Types
Fixes
v10.19.6
Compare Source
tl;dr: This release contains bug fixes for incorrect ordering of unkeyed children.
Fixes
null
placeholders using skewed index (#4290, thanks @andrewiggins)Full Changelog: preactjs/preact@10.19.5...10.19.6
v10.19.5
Compare Source
Fixes
Types
v10.19.4
Compare Source
Fixes
Types
Maintenance
v10.19.3
Compare Source
Bug Fixes
MathML
types (#4214, thanks @fekete965)onInput
,onBeforeInput
andonSubmit
(#4226, #4220, thanks @marvinhagemeister)Maintenance
v10.19.2
Compare Source
Fixes
Maintenance
v10.19.1
Compare Source
Fixes
Types
children
optional inProvider
's typings (#4205, thanks @shicks)v10.19.0
Compare Source
Features
Fixes
Performance
diffProps
function (#4200, thanks @andrewiggins)Types
v10.18.2
Compare Source
Types
contentEditable
attribute values (#4163, thanks @shoonia)elementTiming
attribute/property (#4165, thanks @shoonia)exportparts
global attribute (#4164, thanks @shoonia)Fixes
Improvements
_nextDom
field on VNodes (#4166, thanks @andrewiggins)===
to==
in a few places where not needed (#4157, thanks @rschristian)Maintenance
v10.18.1
Compare Source
Fixes
v10.18.0
Compare Source
Features
Types
SetStateAction
&PropsWithoutRef
types to compat (#4132, thanks @rschristian)HTMLProps
to compat (#4117, thanks @rschristian)Fixes
role
attribute when it'snull
orundefined
(#4137, thanks @DAreRodz)Maintenance
v10.17.1
Compare Source
Fixes
gotpointercapture
andlostpointercapture
events (#4096, thanks @rschristian)Types
Maintenance
v10.17.0
Compare Source
Features
isElement
function in preact/compat (#4041, thanks @cbbfcd)isFragment
function in preact/compat (#4042, thanks @cbbfcd)Types
ComponentChild
asReactNode
in the preact/compat types (#4077, thanks @rschristian)Fixes
Maintenance
main
(#4069, thanks @marvinhagemeister)v10.16.0
Compare Source
Improved child diffing
We have noticed a few scenario's where children would get unmounted and remounted eagerly due to some offset bugs in our child-diffing, with skew-based diffing we plan to address those. This is already part of v11 and has been introduced there by @andrewiggins. This has now been backported to Preact X so we can benefit from the consistency improvements here as well.
Defer setting refs
We used to set refs as part of the children, synchronously this caused several issues when a ref would go down a level, i.e. the following example
In this example when we go from phase 1 to phase 2 we would mount a new ref but only after we bubble back up diffing clean up the outer ref making the ref reset to null.
Fixes
Types
v10.15.1
Compare Source
Fixes
Types
v10.15.0
Compare Source
Revert
fixes
Types
ForwardRefExoticComponent
andRefAttributes
types in compat (#3996, thanks @rschristian)<dialog>
's close & cancel events (#4017, thanks @rschristian)v10.14.1
Compare Source
Fixes
v10.14.0
Compare Source
Features
Fixes
Types
indeterminate
's SignalLike type (#3971, thanks @rschristian)Maintenance
useImperativeHandle
(#3960, thanks @andrewiggins)Configuration
📅 Schedule: Branch creation - "before 7am on the first day of the month" in timezone GMT, 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.