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: update dependency preact to ^10.25.4 #58

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 5, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
preact (source) ^10.20.2 -> ^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

Copy link

changeset-bot bot commented May 5, 2024

⚠️ No Changeset found

Latest commit: e36fd1d

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link

coderabbitai bot commented May 5, 2024

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@renovate renovate bot changed the title fix: update dependency preact to ^10.21.0 fix: update dependency preact to ^10.22.0 May 19, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from daad532 to 12a3b07 Compare May 19, 2024 16:17
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 12a3b07 to c40cf2f Compare June 9, 2024 19:04
@renovate renovate bot force-pushed the renovate/preact-10.x branch from c40cf2f to 00ca11b Compare July 1, 2024 06:01
@renovate renovate bot changed the title fix: update dependency preact to ^10.22.0 fix: update dependency preact to ^10.22.1 Jul 1, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 00ca11b to 375ea67 Compare July 21, 2024 19:03
@renovate renovate bot changed the title fix: update dependency preact to ^10.22.1 fix: update dependency preact to ^10.23.1 Jul 28, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch 2 times, most recently from a7c9cda to 3150d36 Compare July 28, 2024 20:18
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 3150d36 to 7cf0a6b Compare August 11, 2024 20:41
@renovate renovate bot changed the title fix: update dependency preact to ^10.23.1 fix: update dependency preact to ^10.23.2 Aug 18, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch 2 times, most recently from b0199da to df88b42 Compare August 18, 2024 19:55
@renovate renovate bot force-pushed the renovate/preact-10.x branch from df88b42 to 5a98540 Compare September 15, 2024 16:35
@renovate renovate bot changed the title fix: update dependency preact to ^10.23.2 fix: update dependency preact to ^10.24.0 Sep 15, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 5a98540 to 96862c1 Compare September 15, 2024 19:26
@renovate renovate bot force-pushed the renovate/preact-10.x branch 2 times, most recently from 1730ae1 to d3ec0ed Compare September 29, 2024 15:07
@renovate renovate bot changed the title fix: update dependency preact to ^10.24.0 fix: update dependency preact to ^10.24.1 Sep 29, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from d3ec0ed to 6610ca2 Compare September 29, 2024 19:05
@renovate renovate bot changed the title fix: update dependency preact to ^10.24.1 fix: update dependency preact to ^10.24.2 Oct 6, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 6610ca2 to 67cd093 Compare October 6, 2024 16:57
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 67cd093 to a3717e3 Compare October 14, 2024 08:05
@renovate renovate bot changed the title fix: update dependency preact to ^10.24.2 fix: update dependency preact to ^10.24.3 Oct 14, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from a3717e3 to f55151b Compare October 20, 2024 19:51
@renovate renovate bot force-pushed the renovate/preact-10.x branch from f55151b to c846ad4 Compare November 17, 2024 19:48
@renovate renovate bot force-pushed the renovate/preact-10.x branch from c846ad4 to 4a15198 Compare November 24, 2024 15:28
@renovate renovate bot changed the title fix: update dependency preact to ^10.24.3 fix: update dependency preact to ^10.25.0 Nov 24, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 4a15198 to 1f59fd9 Compare December 2, 2024 12:05
@renovate renovate bot changed the title fix: update dependency preact to ^10.25.0 fix: update dependency preact to ^10.25.1 Dec 2, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch 2 times, most recently from 18041f1 to 99794d0 Compare December 15, 2024 15:07
@renovate renovate bot changed the title fix: update dependency preact to ^10.25.1 fix: update dependency preact to ^10.25.2 Dec 15, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 99794d0 to ddf55ad Compare December 22, 2024 16:42
@renovate renovate bot changed the title fix: update dependency preact to ^10.25.2 fix: update dependency preact to ^10.25.3 Dec 22, 2024
@renovate renovate bot force-pushed the renovate/preact-10.x branch from ddf55ad to 9b7b913 Compare December 22, 2024 20:09
@renovate renovate bot force-pushed the renovate/preact-10.x branch from 9b7b913 to e36fd1d Compare December 29, 2024 16:43
@renovate renovate bot changed the title fix: update dependency preact to ^10.25.3 fix: update dependency preact to ^10.25.4 Dec 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants