Skip to content
This repository was archived by the owner on Jul 30, 2024. It is now read-only.

Commit 1911562

Browse files
authored
Merge pull request #308 from exoego/remove-deprecate
REMOVAL: Remove the stuff deprecated in previous version (v0.12.0)
2 parents f3fe3ea + 614ab5b commit 1911562

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

app/nodejs-v14/src/main/scala/io/scalajs/nodejs/crypto/Crypto.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,6 @@ trait Crypto extends js.Object {
121121
* will display the available digest algorithms.
122122
* @param algorithm the given algorithm (e.g. 'sha256', 'sha512')
123123
*/
124-
@deprecated("Use CreateHashOptions instead.", "v0.12.0")
125-
def createHash(algorithm: String, options: TransformOptions): Hash = js.native
126124
def createHash(algorithm: String, options: CreateHashOptions): Hash = js.native
127125
def createHash(algorithm: String): Hash = js.native
128126

app/nodejs-v14/src/main/scala/io/scalajs/nodejs/vm/package.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,4 @@ import scala.scalajs.js
44

55
package object vm {
66
type Context = js.Object
7-
@deprecated("Use js.Object instead", "v0.12.0")
8-
type ScriptContext = js.Object
97
}

0 commit comments

Comments
 (0)