Skip to content
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

Dependency upgrade of everything what was possible to upgrade #2

Merged
merged 2 commits into from Jan 10, 2019
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,7 +1,7 @@
language: scala

scala:
- 2.12.7
- 2.12.8
jdk:
- oraclejdk8

Expand Down
28 changes: 14 additions & 14 deletions README.md
Expand Up @@ -4,7 +4,7 @@ scalajs-react-components
[![Build Status](https://travis-ci.org/dborisenko/scalajs-react-components.svg?branch=master)](https://travis-ci.org/dborisenko/scalajs-react-components)
[![License](https://img.shields.io/github/license/dborisenko/scalajs-react-components.svg)](LICENSE)
[![scalajs-react](https://img.shields.io/badge/scalajs--react-1.3.1-blue.svg)](https://github.com/japgolly/scalajs-react)
[![react](https://img.shields.io/badge/react-16.6.1-blue.svg)](https://reactjs.org)
[![react](https://img.shields.io/badge/react-16.7.0-blue.svg)](https://reactjs.org)

Reusable [scalajs-react](https://github.com/japgolly/scalajs-react) components.

Expand All @@ -17,7 +17,7 @@ Adding types to javascript is a lot of guesswork, and we're certain to have gott

# Semantic UI
[![Maven Central](https://img.shields.io/maven-central/v/com.dbrsn.scalajs.react.components/semantic-ui-react_sjs0.6_2.12.svg)](https://maven-badges.herokuapp.com/maven-central/com.dbrsn.scalajs.react.components/semantic-ui-react_sjs0.6_2.12)
[![react](https://img.shields.io/badge/semantic--ui--react-0.83.0-blue.svg)](https://www.npmjs.com/package/semantic-ui-react)
[![react](https://img.shields.io/badge/semantic--ui--react-0.84.0-blue.svg)](https://www.npmjs.com/package/semantic-ui-react)

Module `semantic-ui-react` contains scalajs wrapper for [semantic-ui-react](https://react.semantic-ui.com) component.

Expand All @@ -28,9 +28,9 @@ libraryDependencies ++= Seq(
"com.dbrsn.scalajs.react.components" %%% "semantic-ui-react" % "0.0.8"
)
npmDependencies in Compile ++= Seq(
"semantic-ui-react" -> "0.83.0",
"react" -> "16.6.1",
"react-dom" -> "16.6.1"
"semantic-ui-react" -> "0.84.0",
"react" -> "16.7.0",
"react-dom" -> "16.7.0"
)
```

Expand All @@ -45,7 +45,7 @@ SuiButton(animated = true, onClick = (_: ReactMouseEventFromHtml) => Callback(??

# React Sortable (HOC)
[![Maven Central](https://img.shields.io/maven-central/v/com.dbrsn.scalajs.react.components/react-sortable-hoc_sjs0.6_2.12.svg)](https://maven-badges.herokuapp.com/maven-central/com.dbrsn.scalajs.react.components/react-sortable-hoc_sjs0.6_2.12)
[![react](https://img.shields.io/badge/react--sortable--hoc-0.8.3-blue.svg)](https://www.npmjs.com/package/react-sortable-hoc)
[![react](https://img.shields.io/badge/react--sortable--hoc-1.4.0-blue.svg)](https://www.npmjs.com/package/react-sortable-hoc)

Module `react-sortable-hoc` contains scalajs wrapper for [react-sortable-hoc](https://github.com/clauderic/react-sortable-hoc) component.

Expand All @@ -56,9 +56,9 @@ libraryDependencies ++= Seq(
"com.dbrsn.scalajs.react.components" %%% "react-sortable-hoc" % "0.0.8"
)
npmDependencies in Compile ++= Seq(
"react-sortable-hoc" -> "0.8.3",
"react" -> "16.6.1",
"react-dom" -> "16.6.1"
"react-sortable-hoc" -> "1.4.0",
"react" -> "16.7.0",
"react-dom" -> "16.7.0"
)
```

Expand All @@ -81,7 +81,7 @@ SortableList[Model, Props].Props(

# react-trello
[![Maven Central](https://img.shields.io/maven-central/v/com.dbrsn.scalajs.react.components/react-trello_sjs0.6_2.12.svg)](https://maven-badges.herokuapp.com/maven-central/com.dbrsn.scalajs.react.components/react-trello_sjs0.6_2.12)
[![react](https://img.shields.io/badge/react--trello-2.0.4-blue.svg)](https://www.npmjs.com/package/react-trello)
[![react](https://img.shields.io/badge/react--trello-2.0.8-blue.svg)](https://www.npmjs.com/package/react-trello)

Module `react-trello` contains scalajs wrapper for [react-trello](https://www.npmjs.com/package/react-trello) component.

Expand All @@ -92,10 +92,10 @@ libraryDependencies ++= Seq(
"com.dbrsn.scalajs.react.components" %%% "react-trello" % "0.0.8"
)
npmDependencies in Compile ++= Seq(
"react-trello" -> "2.0.4",
"@babel/runtime" -> "7.1.5",
"react" -> "16.6.1",
"react-dom" -> "16.6.1"
"react-trello" -> "2.0.8",
"@babel/runtime" -> "7.2.0",
"react" -> "16.7.0",
"react-dom" -> "16.7.0"
)
```

Expand Down
Expand Up @@ -15,6 +15,7 @@ object SuiTypeMapperFunction {
case ("Checkbox", "onChange") => "ReactEventFromInput => Callback"
case ("Checkbox", "onClick") => "ReactMouseEventFromInput => Callback"
case ("Checkbox", "onMouseDown") => "ReactMouseEventFromInput => Callback"
case ("Checkbox", "onMouseUp") => "ReactMouseEventFromInput => Callback"
case ("Confirm", "onCancel") => "ReactMouseEventFromHtml => Callback"
case ("Confirm", "onConfirm") => "ReactMouseEventFromHtml => Callback"
case ("DropdownItem", "onClick") => "ReactMouseEventFromHtml => Callback"
Expand Down
14 changes: 7 additions & 7 deletions project/Dependencies.scala
Expand Up @@ -6,7 +6,7 @@ object Dependencies extends DependencyBuilders {
type NpmDependency = (String, String)

object Versions {
lazy val scala = "2.12.7"
lazy val scala = "2.12.8"

lazy val webpack = "2.6.1"

Expand All @@ -19,14 +19,14 @@ object Dependencies extends DependencyBuilders {

// Scala: JVM + JS libraries
lazy val scalatest = "3.0.5"
lazy val specs2 = "4.3.5"
lazy val specs2 = "4.3.6"

// JavaScript: Node.js libraries
lazy val `semantic-ui-react` = "0.83.0"
lazy val react = "16.6.1"
lazy val `react-sortable-hoc` = "0.8.3"
lazy val `react-trello` = "2.0.4"
lazy val `babel-runtime` = "7.1.5"
lazy val react = "16.7.0"
lazy val `semantic-ui-react` = "0.84.0"
lazy val `react-sortable-hoc` = "1.4.0"
lazy val `react-trello` = "2.0.8"
lazy val `babel-runtime` = "7.2.0"
}

// Scala: JVM libraries
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version=1.2.4
sbt.version=1.2.8
4 changes: 2 additions & 2 deletions project/plugins.sbt
@@ -1,5 +1,5 @@
// Scala.js, the Scala to JavaScript compiler
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.25")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.26")

// Module bundler for Scala.js projects that use NPM packages
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.13.1")
Expand All @@ -17,7 +17,7 @@ addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
addSbtPlugin("org.wartremover" % "sbt-wartremover" % "2.3.7")

// A release plugin for sbt
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.9")
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.11")

// A sbt plugin for publishing Scala/Java projects to the Maven central
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.3")
Expand Down