Skip to content

Update js dependencies #114

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

Merged
merged 2 commits into from
Mar 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import org.openjdk.jmh.profile.GCProfiler
import org.openjdk.jmh.runner.options.OptionsBuilder
import org.openjdk.jmh.runner.{Runner, RunnerException}
import scorex.benchmarks.Base16Benchmark.BenchmarkState
import scorex.crypto.encode.Base16
import scorex.util.encode.Base16

import scala.util.Random

Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ organization := "org.scorexfoundation"

lazy val scala211 = "2.11.12"
lazy val scala212 = "2.12.20"
lazy val scala213 = "2.13.13"
lazy val scala213 = "2.13.16"
lazy val scala3 = "3.3.5"
lazy val scalatestVersion = "3.2.19"

Expand Down Expand Up @@ -36,7 +36,7 @@ lazy val commonSettings = Seq(
),
libraryDependencies ++= {
val base = Seq(
("org.scorexfoundation" %%% "scorex-util" % "0.2.1").cross(CrossVersion.for3Use2_13),
"org.scorexfoundation" %%% "scorex-util" % "0.2.2",
"org.scalatest" %%% "scalatest" % scalatestVersion % Test,
"org.scalatest" %%% "scalatest-propspec" % scalatestVersion % Test,
"org.scalatest" %%% "scalatest-shouldmatchers" % scalatestVersion % Test,
Expand Down Expand Up @@ -102,7 +102,7 @@ lazy val scryptoJS = scrypto.js
// how to setup ScalablyTyped https://scalablytyped.org/docs/library-developer
stOutputPackage := "scorex",
Compile / npmDependencies ++= Seq(
"@noble/hashes" -> "1.1.4"
"@noble/hashes" -> "1.6.0"
),
useYarn := false
)
Expand Down
2 changes: 1 addition & 1 deletion js/src/main/scala/scorex/crypto/hash/Platform.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package scorex.crypto.hash

import scorex.nobleHashes.blake2Mod.BlakeOpts
import scorex.nobleHashes.blakeMod.BlakeOpts
import scorex.nobleHashes.blake2bMod.blake2b
import scorex.nobleHashes.sha256Mod.sha256
import scorex.nobleHashes.utilsMod
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
},
"homepage": "https://github.com/input-output-hk/scrypto/README.md",
"dependencies": {
"@noble/hashes": "1.1.4"
"@noble/hashes": "1.6.0"
},
"devDependencies": {
"jest": "^29.0.3",
"jest": "^29.7.0",
"shx": "^0.3.4",
"typescript": "^4.9.4"
"typescript": "^5.8.2"
}
}
Loading
Loading