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

fix(deps): update dependency preact to v10.25.4 #89

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 12, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
preact (source) 10.10.6 -> 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
Copy link
Contributor Author

renovate bot commented Sep 12, 2022

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR! 
npm ERR! While resolving: [email protected]
npm ERR! Found: [email protected]
npm ERR! node_modules/esbuild
npm ERR!   esbuild@"0.15.10" from the root project
npm ERR!   peer esbuild@"*" from @esbuild-plugins/[email protected]
npm ERR!   node_modules/@esbuild-plugins/node-resolve
npm ERR!     @esbuild-plugins/node-resolve@"^0.1.4" from [email protected]
npm ERR!     node_modules/mdx-bundler
npm ERR!       mdx-bundler@"9.0.1" from the root project
npm ERR!   1 more (@mdx-js/esbuild)
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer esbuild@"0.11.x || 0.12.x || 0.13.x || 0.14.x" from [email protected]
npm ERR! node_modules/mdx-bundler
npm ERR!   mdx-bundler@"9.0.1" from the root project
npm ERR! 
npm ERR! Conflicting peer dependency: [email protected]
npm ERR! node_modules/esbuild
npm ERR!   peer esbuild@"0.11.x || 0.12.x || 0.13.x || 0.14.x" from [email protected]
npm ERR!   node_modules/mdx-bundler
npm ERR!     mdx-bundler@"9.0.1" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! See /tmp/renovate/cache/others/npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate/cache/others/npm/_logs/2024-04-30T11_20_18_070Z-debug-0.log

@renovate renovate bot force-pushed the renovate/preact-10.x branch 2 times, most recently from 772218c to 4f99139 Compare September 19, 2022 10:52
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 4f99139 to 4b9caca Compare October 4, 2022 20:07
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.11.0 fix(deps): update dependency preact to v10.11.1 Oct 4, 2022
@renovate renovate bot force-pushed the renovate/preact-10.x branch 2 times, most recently from ee1fe8e to 88b59f6 Compare October 5, 2022 18:05
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 88b59f6 to 7bca7ed Compare October 15, 2022 09:40
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.11.1 fix(deps): update dependency preact to v10.11.2 Oct 15, 2022
@renovate renovate bot force-pushed the renovate/preact-10.x branch 2 times, most recently from e2377f6 to 47d3d6d Compare November 14, 2022 10:06
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.11.2 fix(deps): update dependency preact to v10.11.3 Nov 14, 2022
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 47d3d6d to d45eaa6 Compare November 20, 2022 14:41
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.11.3 Update dependency preact to v10.11.3 Dec 17, 2022
@renovate renovate bot changed the title Update dependency preact to v10.11.3 fix(deps): update dependency preact to v10.11.3 Dec 17, 2022
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.11.3 fix(deps): update dependency preact to v10.13.2 Apr 3, 2023
@renovate renovate bot force-pushed the renovate/preact-10.x branch from d45eaa6 to 15db11a Compare April 3, 2023 16:10
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 15db11a to df04b49 Compare May 28, 2023 09:57
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.13.2 fix(deps): update dependency preact to v10.15.1 May 28, 2023
@renovate renovate bot force-pushed the renovate/preact-10.x branch from df04b49 to 3f78964 Compare July 9, 2023 11:22
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.15.1 fix(deps): update dependency preact to v10.16.0 Jul 9, 2023
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 3f78964 to 0dbf9d2 Compare August 14, 2023 15:20
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.16.0 fix(deps): update dependency preact to v10.17.0 Aug 14, 2023
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.17.0 fix(deps): update dependency preact to v10.17.1 Aug 19, 2023
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 0dbf9d2 to ed6d3ef Compare August 19, 2023 09:43
@renovate renovate bot force-pushed the renovate/preact-10.x branch from ed6d3ef to d9ec498 Compare September 28, 2023 11:07
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.17.1 fix(deps): update dependency preact to v10.18.0 Sep 28, 2023
@renovate renovate bot force-pushed the renovate/preact-10.x branch from d9ec498 to 40d3371 Compare October 1, 2023 10:23
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.18.0 fix(deps): update dependency preact to v10.18.1 Oct 1, 2023
@renovate renovate bot force-pushed the renovate/preact-10.x branch from aa02537 to a5ea167 Compare May 15, 2024 19:18
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.21.0 fix(deps): update dependency preact to v10.22.0 May 15, 2024
Copy link
Contributor Author

renovate bot commented May 15, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR! 
npm ERR! While resolving: [email protected]
npm ERR! Found: [email protected]
npm ERR! node_modules/esbuild
npm ERR!   esbuild@"0.15.10" from the root project
npm ERR!   peer esbuild@"*" from @esbuild-plugins/[email protected]
npm ERR!   node_modules/@esbuild-plugins/node-resolve
npm ERR!     @esbuild-plugins/node-resolve@"^0.1.4" from [email protected]
npm ERR!     node_modules/mdx-bundler
npm ERR!       mdx-bundler@"9.0.1" from the root project
npm ERR!   1 more (@mdx-js/esbuild)
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer esbuild@"0.11.x || 0.12.x || 0.13.x || 0.14.x" from [email protected]
npm ERR! node_modules/mdx-bundler
npm ERR!   mdx-bundler@"9.0.1" from the root project
npm ERR! 
npm ERR! Conflicting peer dependency: [email protected]
npm ERR! node_modules/esbuild
npm ERR!   peer esbuild@"0.11.x || 0.12.x || 0.13.x || 0.14.x" from [email protected]
npm ERR!   node_modules/mdx-bundler
npm ERR!     mdx-bundler@"9.0.1" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! See /tmp/renovate/cache/others/npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate/cache/others/npm/_logs/2024-12-28T11_15_55_483Z-debug-0.log

@renovate renovate bot force-pushed the renovate/preact-10.x branch from a5ea167 to f7ab417 Compare July 1, 2024 07:43
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.22.0 fix(deps): update dependency preact to v10.22.1 Jul 1, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from f7ab417 to ce1bb04 Compare July 23, 2024 22:45
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.22.1 fix(deps): update dependency preact to v10.23.0 Jul 23, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from ce1bb04 to c6a9906 Compare July 25, 2024 06:41
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.23.0 fix(deps): update dependency preact to v10.23.1 Jul 25, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from c6a9906 to 81184ff Compare August 12, 2024 20:10
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.23.1 fix(deps): update dependency preact to v10.23.2 Aug 12, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 81184ff to 81efc85 Compare September 14, 2024 07:02
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.23.2 fix(deps): update dependency preact to v10.24.0 Sep 14, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 81efc85 to d0ef2ea Compare September 24, 2024 18:22
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.24.0 fix(deps): update dependency preact to v10.24.1 Sep 24, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from d0ef2ea to b977b6f Compare October 4, 2024 07:11
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.24.1 fix(deps): update dependency preact to v10.24.2 Oct 4, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from b977b6f to 4761849 Compare October 14, 2024 07:04
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.24.2 fix(deps): update dependency preact to v10.24.3 Oct 14, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 4761849 to ec06093 Compare November 22, 2024 08:23
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.24.3 fix(deps): update dependency preact to v10.25.0 Nov 22, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from ec06093 to e9471d5 Compare December 2, 2024 12:12
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.25.0 fix(deps): update dependency preact to v10.25.1 Dec 2, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from e9471d5 to 1c84374 Compare December 12, 2024 10:15
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.25.1 fix(deps): update dependency preact to v10.25.2 Dec 12, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 1c84374 to 1eb7e9f Compare December 18, 2024 22:41
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.25.2 fix(deps): update dependency preact to v10.25.3 Dec 18, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 1eb7e9f to a0a22eb Compare December 28, 2024 11:16
@renovate renovate bot changed the title fix(deps): update dependency preact to v10.25.3 fix(deps): 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.

1 participant