Skip to content

Commit d65a699

Browse files
authored
Merge pull request #56 from delphi-hub/release/v0.9.5
Release/v0.9.5
2 parents 7ceb907 + 674c7ee commit d65a699

23 files changed

+2127
-608
lines changed

.travis.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
language: scala
22
scala:
3-
- 2.12.4
3+
- 2.13.1
44
script:
55
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then sbt ++$TRAVIS_SCALA_VERSION test; fi'
6-
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then sbt ++$TRAVIS_SCALA_VERSION coverage test coverageReport coverageAggregate codacyCoverage; fi'
6+
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then sbt ++$TRAVIS_SCALA_VERSION test; fi'
7+
# - 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then sbt ++$TRAVIS_SCALA_VERSION coverage test coverageReport coverageAggregate codacyCoverage; fi'
78
after_success:
8-
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash <(curl -s https://codecov.io/bash); fi'
9+
# - 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash <(curl -s https://codecov.io/bash); fi'

build.sbt

+12-11
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,40 @@
11
name := "delphi-webapi"
22

3-
version := "1.0.0-SNAPSHOT"
3+
version := "0.9.5"
44

5-
scalaVersion := "2.12.4"
5+
scalaVersion := "2.13.1"
66

7-
val akkaVersion = "2.5.16"
7+
val akkaVersion = "2.6.1"
88
libraryDependencies ++= Seq(
99
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
1010
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion
1111
)
1212

13-
val akkaHttpVersion = "10.1.5"
13+
val akkaHttpVersion = "10.1.10"
1414
libraryDependencies ++= Seq(
1515
"com.typesafe.akka" %% "akka-http" % akkaHttpVersion,
1616
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpVersion,
1717
"com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpVersion
1818
)
1919
//Including http client for elastic4s
20-
libraryDependencies += "org.apache.httpcomponents" % "httpclient" % "4.5.3"
20+
libraryDependencies += "org.apache.httpcomponents" % "httpclient" % "4.5.9"
2121

22-
val elastic4sVersion = "6.3.8"
22+
val elastic4sVersion = "6.7.4"
2323
libraryDependencies ++= Seq(
2424
"com.sksamuel.elastic4s" %% "elastic4s-core" % elastic4sVersion,
2525
//Excluding default 4.5.2 due to https://snyk.io/vuln/SNYK-JAVA-ORGAPACHEHTTPCOMPONENTS-31517
2626
"com.sksamuel.elastic4s" %% "elastic4s-http" % elastic4sVersion exclude("org.apache.httpcomponents", "httpclient"),
2727
"com.sksamuel.elastic4s" %% "elastic4s-http-streams" % elastic4sVersion,
2828
)
2929

30+
libraryDependencies += "de.upb.cs.swt.delphi" %% "delphi-core" % "0.9.2"
3031

31-
libraryDependencies += "com.pauldijou" %% "jwt-core" % "1.0.0"
32+
libraryDependencies += "com.pauldijou" %% "jwt-core" % "4.2.0"
3233

33-
libraryDependencies += "org.parboiled" %% "parboiled" % "2.1.4"
34+
libraryDependencies += "org.parboiled" %% "parboiled" % "2.1.8"
3435
libraryDependencies += "io.spray" %% "spray-json" % "1.3.5"
35-
libraryDependencies += "org.scalactic" %% "scalactic" % "3.0.4"
36-
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.4" % "it,test"
36+
libraryDependencies += "org.scalactic" %% "scalactic" % "3.1.0"
37+
libraryDependencies += "org.scalatest" %% "scalatest" % "3.1.0" % "it,test"
3738
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.3" % Runtime
3839

3940
lazy val webapi = (project in file(".")).
@@ -60,7 +61,7 @@ scalastyleConfig := baseDirectory.value / "project" / "scalastyle-config.xml"
6061
// Pinning secure versions of insecure transitive libraryDependencies
6162
// Please update when updating dependencies above (including Play plugin)
6263
libraryDependencies ++= Seq(
63-
"com.fasterxml.jackson.core" % "jackson-databind" % "2.9.10.1"
64+
"com.fasterxml.jackson.core" % "jackson-databind" % "2.10.1"
6465
)
6566

6667
trapExit := false

project/plugins.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.7.0")
33
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.2")
44

55
// coverage
6-
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
7-
addSbtPlugin("com.codacy" % "sbt-codacy-coverage" % "1.3.14")
6+
// addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.0")
7+
// addSbtPlugin("com.codacy" % "sbt-codacy-coverage" % "1.3.14")
88

99
// preparation for dependency checking
1010
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.1")

project/scalastyle-config.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</check>
99
<check level="warning" class="org.scalastyle.file.HeaderMatchesChecker" enabled="true">
1010
<parameters>
11-
<parameter name="header"><![CDATA[// Copyright (C) 2018 The Delphi Team.
11+
<parameter name="header"><![CDATA[// Copyright (C) (?:\d{4}-)?\d{4} The Delphi Team.
1212
// See the LICENCE file distributed with this work for additional
1313
// information regarding copyright ownership.
1414
//

0 commit comments

Comments
 (0)