Skip to content

Commit

Permalink
[new release] reason-react (2 packages) (0.15.0)
Browse files Browse the repository at this point in the history
CHANGES:

* Add `isValidElement` (@r17x in
  reasonml/reason-react#837)
* Add `startTransition` (@r17x in
  reasonml/reason-react#838)
* Convert `ReasonReactErrorBoundary` to Reason instead of `%raw` JS. This has
  the benefit of skipping a hardcoded `require('react')` call (@anmonteiro in
  [reasonml/reason-react#839](reasonml/reason-react#839))
* Add CSS Box Alignment Module Level 3 (@davesnx in
  reasonml/reason-react#847)
* Fix: Remove "unique `key` prop" warnings from multi-child fragment elements
  (@jchavarri in reasonml/reason-react#852)
  • Loading branch information
jchavarri authored and avsm committed Sep 5, 2024
1 parent d19d1bf commit bd8496f
Show file tree
Hide file tree
Showing 2 changed files with 103 additions and 0 deletions.
47 changes: 47 additions & 0 deletions packages/reason-react-ppx/reason-react-ppx.0.15.0/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
opam-version: "2.0"
synopsis: "React.js JSX PPX"
description: "ReasonReact JSX PPX"
maintainer: [
"David Sancho <[email protected]>"
"Antonio Monteiro <[email protected]>"
]
authors: [
"Cheng Lou <[email protected]>" "Ricky Vetter <[email protected]>"
]
license: "MIT"
homepage: "https://reasonml.github.io/reason-react"
doc: "https://reasonml.github.io/reason-react"
bug-reports: "https://github.com/reasonml/reason-react/issues"
depends: [
"dune" {>= "3.9"}
"ocaml"
"reason" {>= "3.12.0"}
"ppxlib" {>= "0.33.0"}
"merlin" {with-test}
"ocamlformat" {= "0.24.0" & with-dev-setup}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/reasonml/reason-react.git"
url {
src:
"https://github.com/reasonml/reason-react/releases/download/0.15.0/reason-react-0.15.0.tbz"
checksum: [
"sha256=fa93c9a3f6f9d2fa78a400bfca02352c70793b4a43275c6971064e7453fc43cd"
"sha512=7408f3b9a86a78b8062d45b131f4fb166c75a783be7a33bf63b3841b32b9022230b45e69323ef7ed6b717921b4ddb375ead0f0ce534174552f032f4de23de2ad"
]
}
x-commit-hash: "c575d278daa73618a7883290fffe7397447c10a9"
56 changes: 56 additions & 0 deletions packages/reason-react/reason-react.0.15.0/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
opam-version: "2.0"
synopsis: "Reason bindings for React.js"
description: """
ReasonReact helps you use Reason to build React components with deeply integrated, strong, static type safety.

It is designed and built by people using Reason and React in large, mission critical production React codebases."""
maintainer: [
"David Sancho <[email protected]>"
"Antonio Monteiro <[email protected]>"
]
authors: [
"Cheng Lou <[email protected]>" "Ricky Vetter <[email protected]>"
]
license: "MIT"
homepage: "https://reasonml.github.io/reason-react"
doc: "https://reasonml.github.io/reason-react"
bug-reports: "https://github.com/reasonml/reason-react/issues"
depends: [
"dune" {>= "3.9"}
"ocaml"
"melange" {>= "3.0.0"}
"reason-react-ppx" {= version}
"reason" {>= "3.12.0"}
"ocaml-lsp-server" {with-dev-setup}
"opam-check-npm-deps" {= "1.0.0" & with-dev-setup}
"ocamlformat" {= "0.24.0" & with-dev-setup}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/reasonml/reason-react.git"
depexts: [
["react"] {npm-version = "^18.0.0"}
["react-dom"] {npm-version = "^18.0.0"}
]
url {
src:
"https://github.com/reasonml/reason-react/releases/download/0.15.0/reason-react-0.15.0.tbz"
checksum: [
"sha256=fa93c9a3f6f9d2fa78a400bfca02352c70793b4a43275c6971064e7453fc43cd"
"sha512=7408f3b9a86a78b8062d45b131f4fb166c75a783be7a33bf63b3841b32b9022230b45e69323ef7ed6b717921b4ddb375ead0f0ce534174552f032f4de23de2ad"
]
}
x-commit-hash: "c575d278daa73618a7883290fffe7397447c10a9"

0 comments on commit bd8496f

Please sign in to comment.