Skip to content
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

Update dependency preact to v10.25.4 #47

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 3, 2021

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
preact (source) 10.6.5 -> 10.25.4 age adoption passing confidence

Release Notes

preactjs/preact (preact)

v10.25.4

Compare Source

Types

Fixes

v10.25.3

Compare Source

Fixes

Types

v10.25.2

Compare Source

Notable
Revert unkeyed no-search (#​4604, thanks @​JoviDeCroock)

We noticed that there's a few unpleasant scenario's that could form from this change, we wanted to be on the safe side here and revert this for the time being. if you run into issues with swapping components placement wise in a list use the key property.

Fixes
Types
Performance
Maintenance

v10.25.1

Compare Source

Fixes

Types

Maintenance

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

return (
	{condition ? <Element /> : null}
	{condition ? null : <Element />
)

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

let handler = {
	onclick,
	handleEvent() {
		this.onclick()
	}
}

<div onClick={handler} />

Fixes

Maintenance

v10.24.3

Compare Source

Fixes
Performance
Maintenance

v10.24.2

Compare Source

Performance

Types

Maintenance

v10.24.1

Compare Source

Fixes

Types

Maintenance

v10.24.0

Compare Source

Features

Fixes

Types

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

<input
  ref={(ref) => {
    // Assign ref, do something with it
    return () => {
      // ref cleanup, when the element unmounts
      // we run the cleanup
    };
  }}
/>

Fixes

Types

Maintenance

v10.22.1

Compare Source

Fixes

Types

Maintenance

Performance

v10.22.0

Compare Source

Features

Types

Maintenance

Fixes

@renovate renovate bot force-pushed the renovate/preact-10.x branch from 0ce52ac to a546c6f Compare October 19, 2021 02:12
@renovate renovate bot changed the title Update dependency preact to v10.5.13 Update dependency preact to v10.5.15 Oct 19, 2021
@renovate renovate bot changed the title Update dependency preact to v10.5.15 Update dependency preact to v10.5.15 - autoclosed Feb 13, 2022
@renovate renovate bot closed this Feb 13, 2022
@renovate renovate bot deleted the renovate/preact-10.x branch February 13, 2022 02:11
@renovate renovate bot changed the title Update dependency preact to v10.5.15 - autoclosed Update dependency preact to v10.5.15 Feb 14, 2022
@renovate renovate bot restored the renovate/preact-10.x branch February 14, 2022 13:07
@renovate renovate bot reopened this Feb 14, 2022
@renovate renovate bot force-pushed the renovate/preact-10.x branch from a546c6f to 4db3e29 Compare February 14, 2022 13:07
@renovate renovate bot changed the title Update dependency preact to v10.5.15 Update dependency preact to v10.6.6 Feb 14, 2022
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 4db3e29 to 36e26d2 Compare February 15, 2022 00:31
@renovate renovate bot changed the title Update dependency preact to v10.6.6 Update dependency preact to v10.7.0 Mar 29, 2022
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 36e26d2 to a5ca35f Compare March 29, 2022 20:46
@renovate renovate bot changed the title Update dependency preact to v10.7.0 Update dependency preact to v10.7.1 Apr 5, 2022
@renovate renovate bot force-pushed the renovate/preact-10.x branch from a5ca35f to 3466879 Compare April 5, 2022 09:43
@renovate renovate bot changed the title Update dependency preact to v10.7.1 Update dependency preact to v10.7.2 May 15, 2022
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 3466879 to c543ece Compare May 15, 2022 18:53
@renovate renovate bot force-pushed the renovate/preact-10.x branch from c543ece to 13bd25f Compare June 18, 2022 18:30
@renovate renovate bot changed the title Update dependency preact to v10.7.2 Update dependency preact to v10.8.1 Jun 18, 2022
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 13bd25f to e4f14a6 Compare June 23, 2022 21:42
@renovate renovate bot changed the title Update dependency preact to v10.8.1 Update dependency preact to v10.8.2 Jun 23, 2022
@renovate renovate bot force-pushed the renovate/preact-10.x branch from e4f14a6 to f1066f1 Compare September 25, 2022 21:32
@renovate renovate bot changed the title Update dependency preact to v10.8.2 Update dependency preact to v10.11.0 Sep 25, 2022
@renovate renovate bot force-pushed the renovate/preact-10.x branch from f1066f1 to fbecdd5 Compare November 20, 2022 09:08
@renovate renovate bot changed the title Update dependency preact to v10.11.0 Update dependency preact to v10.11.3 Nov 20, 2022
@renovate renovate bot changed the title Update dependency preact to v10.11.3 Update dependency preact to v10.13.1 Mar 16, 2023
@renovate renovate bot force-pushed the renovate/preact-10.x branch from fbecdd5 to 11515f3 Compare March 16, 2023 21:52
@renovate renovate bot changed the title Update dependency preact to v10.13.1 Update dependency preact to v10.13.2 Mar 27, 2023
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 11515f3 to b2d863e Compare March 27, 2023 18:52
@renovate renovate bot changed the title Update dependency preact to v10.13.2 Update dependency preact to v10.15.1 May 28, 2023
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 6763c5c to 8844092 Compare April 30, 2024 07:29
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 8844092 to 2547fcc Compare May 15, 2024 12:05
@renovate renovate bot changed the title Update dependency preact to v10.21.0 Update dependency preact to v10.22.0 May 15, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 2547fcc to a0f03de Compare July 5, 2024 20:43
@renovate renovate bot changed the title Update dependency preact to v10.22.0 Update dependency preact to v10.22.1 Jul 5, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from a0f03de to a0d6173 Compare July 23, 2024 21:22
@renovate renovate bot changed the title Update dependency preact to v10.22.1 Update dependency preact to v10.23.0 Jul 23, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from a0d6173 to 0bb620b Compare July 25, 2024 08:21
@renovate renovate bot changed the title Update dependency preact to v10.23.0 Update dependency preact to v10.23.1 Jul 25, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 0bb620b to 804f6fd Compare August 12, 2024 20:46
@renovate renovate bot changed the title Update dependency preact to v10.23.1 Update dependency preact to v10.23.2 Aug 12, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 804f6fd to 1ef4b24 Compare September 14, 2024 07:02
@renovate renovate bot changed the title Update dependency preact to v10.23.2 Update dependency preact to v10.24.0 Sep 14, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 1ef4b24 to 180d175 Compare September 24, 2024 16:51
@renovate renovate bot changed the title Update dependency preact to v10.24.0 Update dependency preact to v10.24.1 Sep 24, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 180d175 to 27840ad Compare October 4, 2024 06:25
@renovate renovate bot changed the title Update dependency preact to v10.24.1 Update dependency preact to v10.24.2 Oct 4, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 27840ad to 6cd5515 Compare October 14, 2024 10:23
@renovate renovate bot changed the title Update dependency preact to v10.24.2 Update dependency preact to v10.24.3 Oct 14, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 6cd5515 to 112c921 Compare November 22, 2024 08:44
@renovate renovate bot changed the title Update dependency preact to v10.24.3 Update dependency preact to v10.25.0 Nov 22, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 112c921 to 0979aa9 Compare December 2, 2024 11:15
@renovate renovate bot changed the title Update dependency preact to v10.25.0 Update dependency preact to v10.25.1 Dec 2, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 0979aa9 to e12d664 Compare December 12, 2024 09:43
@renovate renovate bot changed the title Update dependency preact to v10.25.1 Update dependency preact to v10.25.2 Dec 12, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from e12d664 to 6f89a09 Compare December 19, 2024 00:10
@renovate renovate bot changed the title Update dependency preact to v10.25.2 Update dependency preact to v10.25.3 Dec 19, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 6f89a09 to 68dc3e6 Compare December 28, 2024 09:42
@renovate renovate bot changed the title Update dependency preact to v10.25.3 Update dependency preact to v10.25.4 Dec 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants