Skip to content

Commit

Permalink
upgrade fast-text-encoding version
Browse files Browse the repository at this point in the history
  • Loading branch information
rpiaggio committed Jan 29, 2024
1 parent cb86b46 commit 48f3809
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions doc/changelog/2.2.0-betas.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,26 +26,26 @@
- To upgrade when using `jsDependencies`, make your sbt config look like this (comments for clarity)

```scala
// Required for React 18.0.0
// Required for React 18.2.0
dependencyOverrides += "org.webjars.npm" % "scheduler" % "0.22.0",

jsDependencies ++= Seq(
// Polyfill required for React 18.0.0
// Polyfill required for React 18.2.0
"org.webjars.npm" % "fast-text-encoding" % "1.0.3" / "text.js" minified "text.min.js"

"org.webjars.npm" % "react" % "18.0.0"
"org.webjars.npm" % "react" % "18.2.0"
/ "umd/react.development.js"
minified "umd/react.production.min.js"
dependsOn "text.js" // <-- Load the fast-text-encoding polyfill before loading React itself
commonJSName "React",

"org.webjars.npm" % "react-dom" % "18.0.0"
"org.webjars.npm" % "react-dom" % "18.2.0"
/ "umd/react-dom.development.js"
minified "umd/react-dom.production.min.js"
dependsOn "umd/react.development.js"
commonJSName "ReactDOM",

"org.webjars.npm" % "react-dom" % "18.0.0"
"org.webjars.npm" % "react-dom" % "18.2.0"
/ "umd/react-dom-server.browser.development.js"
minified "umd/react-dom-server.browser.production.min.js"
dependsOn "umd/react-dom.development.js"
Expand Down
2 changes: 1 addition & 1 deletion library/project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ object Dependencies {
val betterMonadicFor = "0.3.1"
val catsTestkitScalaTest = "2.1.5"
val disciplineScalaTest = "2.1.5"
val fastTextEncoding = "1.0.3"
val fastTextEncoding = "1.0.6"
val kindProjector = "0.13.2"
val macrotaskExecutor = "1.0.0"
val nyaya = "1.0.0"
Expand Down

0 comments on commit 48f3809

Please sign in to comment.