-
Notifications
You must be signed in to change notification settings - Fork 346
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
Remove ScalaJS support #2869
Remove ScalaJS support #2869
Conversation
3748ffa
to
698b470
Compare
9224241
to
92640f1
Compare
implicit def dummyDecoder[T] = | ||
(idx: Int, row: ResultRow, session: Session) => Messages.fail("quill decoders are not used for spark") | ||
implicit def dummyDecoder[T]: (Index, ResultRow, ResultRow) => Nothing = | ||
(_: Int, _: ResultRow, _: Session) => Messages.fail("quill decoders are not used for spark") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove some warnings
@@ -47,7 +47,7 @@ trait QuillSparkContext extends Context[SparkDialect, Literal] with Encoders wit | |||
val idiom = SparkDialect | |||
val naming = Literal | |||
|
|||
private implicit def datasetEncoder[T] = | |||
private implicit def datasetEncoder[T]: (Index, Dataset[T], List[Binding], ResultRow) => List[Binding] = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove some warnings
@@ -15,7 +15,7 @@ class MirrorIdiomSpec extends Spec { | |||
|
|||
import MirrorIdiom._ | |||
|
|||
implicit val naming = Literal | |||
implicit val naming: Literal = Literal |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove some warnings
@@ -9,7 +9,7 @@ object MirrorContexts { | |||
object testAsyncContext extends AsyncMirrorContext(MirrorIdiom, Literal) with TestEntities { | |||
|
|||
// hack to avoid Await.result since scala.js doesn't support it | |||
implicit val immediateEC = new ExecutionContext { | |||
implicit val immediateEC: ExecutionContext = new ExecutionContext { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove some warnings
@@ -17,7 +17,7 @@ object DefaultNodeCatalog extends NodeCatalog { | |||
|
|||
private val logger = Logger(LoggerFactory.getLogger(this.getClass)) | |||
|
|||
implicit def nodeToOpt(dagNode: DagNode) = Some(dagNode) | |||
implicit def nodeToOpt(dagNode: DagNode): Option[DagNode] = Some(dagNode) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove some warnings
@@ -13,7 +13,7 @@ abstract class CodegenSpec extends AnyFreeSpec with SchemaMaker { | |||
type Prefix <: ConfigPrefix | |||
val prefix: Prefix | |||
|
|||
implicit def regToOption[T](t: T) = Some(t) | |||
implicit def regToOption[T](t: T): Option[T] = Some(t) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove some warnings
@@ -6,6 +6,7 @@ on: | |||
branches: | |||
- master | |||
- sbt-ci-release | |||
- sbt-ci-release_no_js |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO @guizmaii: TO REMOVE
…elated code && Rename `io.getquill.context.zio` package to `io.getquill.context.qzio` in the `jasync` modules (#2866) * Migrate to sbt-ci-release * Migrate to sbt-ci-release * Fix sbt * Don't wait for build * Speed up release by splitting per Scala version * Improve memory usage * clean * fix scala version * clean * fix CI * Improve memory usage * clean * scalafmt * try fix scaladoc * try fix scaladoc * try fix Scala 2.12 build * Don't publish `quill-codegen-tests` module * Revert "try fix Scala 2.12 build" This reverts commit eb622c7. * Don't publish `quill-codegen-tests` module * Don't publish Scala JS modules * Fix Scala Steward configuration (#2868) * Remove ScalaJS support (#2869) * Remove ScalaJS support * run publish * fix compilation * fix compilation * fix CI * Fix Scala 2.12 doc generation * Clean CI * clean * clean * scalafmt * Fix CI
Was added here: #452
Needs: