0xs1r4t / sirat.xyz

my website. under construction 🔧
https://sirat.xyz
0 stars 0 forks source link

Bump @react-three/fiber from 8.0.12 to 8.2.0 #101

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps @react-three/fiber from 8.0.12 to 8.2.0.

Release notes

Sourced from @​react-three/fiber's releases.

v8.2.0

What's Changed

This release exposes a ThreeElements interface containing native three JSX elements to discern from DOM JSX types.

import type { ThreeElements } from '@react-three/fiber'

function Mesh(props: ThreeElements['mesh']) { return <mesh {...props} /> }

Extending JSX.IntrinsicElements is deprecated in favor of extending ThreeElements directly with the following:

declare module '@react-three/fiber' {
  interface ThreeElements {
    myMesh: Object3DNode<MyMesh, typeof MyMesh>
  }
}

New Contributors

Full Changelog: https://github.com/pmndrs/react-three-fiber/compare/v8.1.0...v8.2.0

v8.1.0

What's Changed

New Contributors

Full Changelog: https://github.com/pmndrs/react-three-fiber/compare/8ad0559440f836c2360782c55c66ec498b389edd...v8.1.0

Commits
  • 21d7f08 RELEASING: Releasing 1 package(s)
  • 9770d7d docs(changeset): feat: expose ThreeElements interface for JSX elements
  • b232188 feat: expose ThreeElements interface (#2347)
  • c12fec4 refactor: renderer update (#2360)
  • 57687f2 add demos
  • 3506c95 RELEASING: Releasing 2 package(s)
  • 8d0f708 docs(changeset): Expose position information in state.size
  • 8bab743 Expose position information on state.size (#2339)
  • 8ad0559 fix(core):cannot remove effects correctly when use addEffect/addAfterEffect/a...
  • 0003095 RELEASING: Releasing 1 package(s)
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 2 years ago

Superseded by #107.