Skip to content

Commit 9f67736

Browse files
committed
Merge branch 'master' into dimplicit
# Conflicts: # commons-hocon/src/main/scala/com/avsystem/commons/hocon/HTokenType.scala
2 parents 2a6abd1 + fb37353 commit 9f67736

File tree

315 files changed

+2421
-9857
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

315 files changed

+2421
-9857
lines changed

.idea/codeStyles/Project.xml

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.scala-steward.conf

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1+
pullRequests.frequency = 7 days
2+
13
updates.ignore = [
2-
{groupId: "org.springframework", artifactId: "spring-context"}
4+
{groupId: "org.springframework", artifactId: "spring-context"},
5+
{groupId: "org.mongodb"},
36
]
47

.travis.yml

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
language: scala
22

33
scala:
4-
- 2.11.12
54
- 2.12.12
5+
- 2.13.3
66

77
jdk:
88
- openjdk11
@@ -19,23 +19,21 @@ env:
1919
matrix:
2020
- TASK="commons-jvm/test"
2121
- TASK="commons-js/test"
22+
- TASK="commons/unidoc"
2223

2324
script:
2425
- sbt -Dsbt.color=true ++$TRAVIS_SCALA_VERSION $TASK
2526

2627
jobs:
2728
include:
28-
- env:
29-
- TASK="commons/unidoc"
30-
scala: [2.12.12]
3129
- env:
3230
- TASK="commons-js/test"
33-
- SCALAJS_VERSION="1.1.1"
34-
scala: [2.11.12]
31+
- SCALAJS_VERSION="0.6.33"
32+
scala: [2.12.12]
3533
- env:
3634
- TASK="commons-js/test"
37-
- SCALAJS_VERSION="1.1.1"
38-
scala: [2.12.12]
35+
- SCALAJS_VERSION="0.6.33"
36+
scala: [2.13.3]
3937
- stage: deploy
4038
script: if [ "$TRAVIS_PULL_REQUEST" = 'false' ]; then ./deploy.sh; fi
4139
if: tag =~ ^v
@@ -50,6 +48,7 @@ cache:
5048
- redis-$REDIS_VERSION
5149

5250
before_cache:
51+
- rm -fv $HOME/.ivy2/.sbt.ivy.lock
5352
- find $HOME/.ivy2 -name "ivydata-*.properties" -delete
5453
- find $HOME/.sbt -name "*.lock" -delete
5554

README.md

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# AVSystem Commons Library for Scala
22

33
[![Build Status](https://travis-ci.org/AVSystem/scala-commons.svg?branch=master)](https://travis-ci.org/AVSystem/scala-commons)
4-
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.avsystem.commons/commons-core_2.11/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.avsystem.commons/commons-core_2.11)
4+
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.avsystem.commons/commons-core_2.12/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.avsystem.commons/commons-core_2.12)
55

66
**[API reference](http://avsystem.github.io/scala-commons/api/com/avsystem/commons/index.html)**
77

@@ -14,7 +14,6 @@
1414
derivation for case classes and sealed hierarchies
1515
* **Typesafe** RPC/proxy framework used in particular by [Udash Framework](http://guide.udash.io/#/rpc) for
1616
client-server communication
17-
* [REST framework](docs/REST.md) based on RPC framework
1817
* Better enumeration support for Scala -
1918
[`ValueEnum`](http://avsystem.github.io/scala-commons/api/com/avsystem/commons/misc/ValueEnum.html),
2019
[`SealedEnumCompanion`](http://avsystem.github.io/scala-commons/api/com/avsystem/commons/misc/SealedEnumCompanion.html),
@@ -38,16 +37,14 @@
3837
* `MacroCommons` trait with several convenience functions for implementing macros
3938
* `TypeClassDerivation` - implements infrastructure for automatic type class derivation
4039
* [`commons-analyzer`](docs/Analyzer.md) - static analyzer for Scala code, i.e. a compiler plugin that enforces various (mostly unrelated) rules and conventions on source code
41-
* `commons-annotations` - contains annotations used by macros and static analyzer
4240
* `commons-jetty` - Jetty server utilities
4341
* [`commons-mongo`](docs/TypedMongo.md) - MongoDB utilities for Scala & Java MongoDB drivers, integration with `GenCodec`
44-
* `commons-kafka` - Kafka utilities
45-
* `commons-spring` - Spring framework utilities:
46-
* `HoconBeanDefinitionReader` - an utility that allows you to define Spring application context using
47-
[HOCON](https://github.com/lightbend/config/blob/master/HOCON.md) format
4842
* `commons-hocon` - Utilities for working with [HOCON](https://github.com/lightbend/config/blob/master/HOCON.md)
4943
* `HoconInput` - an `Input` implementation for `GenCodec` that can read Lightbend Config (`com.typesafe.config.Config`)
5044
* An AST (`HTree`) and a lexer/parser for HOCON (`HLexer`, `HParser`)
45+
* `commons-spring` - Spring framework utilities:
46+
* `HoconBeanDefinitionReader` - an utility that allows you to define Spring application context using
47+
[HOCON](https://github.com/lightbend/config/blob/master/HOCON.md) format
5148

5249
## Development
5350

build.sbt

+30-107
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,24 @@ cancelable in Global := true
99
val forIdeaImport = System.getProperty("idea.managed", "false").toBoolean && System.getProperty("idea.runid") == null
1010

1111
val silencerVersion = "1.7.1"
12+
val collectionCompatVersion = "2.1.6"
1213
val guavaVersion = "23.0"
1314
val jsr305Version = "3.0.2"
1415
val scalatestVersion = "3.2.1"
15-
val scalatestplusScalacheckVersion = "3.2.1.0"
16+
val scalatestplusScalacheckVersion = "3.2.2.0"
1617
val scalacheckVersion = "1.14.3"
1718
val jettyVersion = "9.4.31.v20200723"
18-
val mongoVersion = "3.12.7"
19-
val mongoReactiveVersion = "1.13.1"
20-
val mongoScalaVersion = "2.9.0"
21-
val kafkaVersion = "2.6.0"
22-
val springVersion = "4.0.9.RELEASE"
19+
val mongoVersion = "4.1.1"
20+
val springVersion = "4.3.26.RELEASE"
2321
val typesafeConfigVersion = "1.4.0"
2422
val commonsIoVersion = "1.3.2"
2523
val scalaLoggingVersion = "3.9.2"
26-
val akkaVersion = "2.5.31"
24+
val akkaVersion = "2.6.8"
2725
val monixVersion = "3.3.0"
28-
val mockitoVersion = "3.5.2"
29-
val circeVersion = "0.11.2"
30-
val upickleVersion = "0.7.4"
31-
val scalajsBenchmarkVersion = "0.2.6"
26+
val mockitoVersion = "3.5.15"
27+
val circeVersion = "0.13.0"
28+
val upickleVersion = "1.2.0"
29+
val scalajsBenchmarkVersion = "0.8.0"
3230
val slf4jVersion = "1.7.30"
3331

3432
useGpg := false // TODO: use sbt-ci-release
@@ -43,15 +41,15 @@ credentials in Global += Credentials(
4341
sys.env.getOrElse("SONATYPE_PASSWORD", "")
4442
)
4543

46-
version in ThisBuild :=
47-
sys.env.get("TRAVIS_TAG").filter(_.startsWith("v")).map(_.drop(1)).getOrElse("1.0-SNAPSHOT")
44+
version in ThisBuild :=
45+
sys.env.get("TRAVIS_TAG").filter(_.startsWith("v")).map(_.drop(1)).getOrElse("2.0.0-SNAPSHOT")
4846

4947
// for binary compatibility checking
50-
val previousCompatibleVersions = Set("1.34.8")
48+
val previousCompatibleVersions = Set("1.39.14")
5149

5250
val commonSettings = Seq(
5351
organization := "com.avsystem.commons",
54-
crossScalaVersions := Seq("2.11.12", "2.12.12"),
52+
crossScalaVersions := Seq("2.12.12", "2.13.3"),
5553
scalaVersion := crossScalaVersions.value.last,
5654
compileOrder := CompileOrder.Mixed,
5755
scalacOptions ++= Seq(
@@ -66,19 +64,15 @@ val commonSettings = Seq(
6664
"-language:dynamics",
6765
"-language:experimental.macros",
6866
"-language:higherKinds",
69-
"-Xfuture",
70-
s"-Xlint:-missing-interpolator,-adapted-args,${if (scalaBinaryVersion.value == "2.12") "-unused," else ""}_",
71-
"-P:silencer:checkUnused",
67+
"-Xfatal-warnings",
68+
"-Xlint:-missing-interpolator,-adapted-args,-unused,_",
7269
),
7370
scalacOptions ++= {
74-
if (scalaBinaryVersion.value != "2.11") Seq(
75-
"-Xfatal-warnings",
71+
if (scalaBinaryVersion.value == "2.12") Seq(
7672
"-Ycache-plugin-class-loader:last-modified",
7773
"-Ycache-macro-class-loader:last-modified",
7874
) else Seq.empty
7975
},
80-
// some Java 8 related tests use Java interface static methods, Scala 2.11.12 requires JDK8 target for that
81-
scalacOptions in Test ++= (if (scalaBinaryVersion.value == "2.11") Seq("-target:jvm-1.8") else Nil),
8276
sources in(Compile, doc) := Seq.empty, // relying on unidoc
8377
apiURL := Some(url("http://avsystem.github.io/scala-commons/api")),
8478
autoAPIMappings := true,
@@ -117,7 +111,6 @@ val commonSettings = Seq(
117111
"org.scalatestplus" %%% "scalacheck-1-14" % scalatestplusScalacheckVersion % Test,
118112
"org.mockito" % "mockito-core" % mockitoVersion % Test,
119113
),
120-
dependencyOverrides += "org.scala-lang.modules" %% "scala-xml" % "1.0.6",
121114
ideBasePackages := Seq(organization.value),
122115
ideOutputDirectory in Compile := Some(target.value.getParentFile / "out/production"),
123116
ideOutputDirectory in Test := Some(target.value.getParentFile / "out/test"),
@@ -147,12 +140,7 @@ val jsCommonSettings = commonSettings ++ Seq(
147140
)
148141

149142
val noPublishSettings = Seq(
150-
publishArtifact := false,
151-
publish := {},
152-
publishLocal := {},
153-
publishM2 := {},
154-
PgpKeys.publishSigned := {},
155-
PgpKeys.publishLocalSigned := {},
143+
skip in publish := true,
156144
mimaPreviousArtifacts := Set.empty,
157145
)
158146

@@ -181,10 +169,7 @@ lazy val commons = project.in(file("."))
181169
inAnyProject -- inProjects(
182170
`commons-analyzer`,
183171
`commons-macros`,
184-
`commons-annotations-js`,
185172
`commons-core-js`,
186-
`commons-rest`,
187-
`commons-rest-js`,
188173
`commons-benchmark`,
189174
`commons-benchmark-js`,
190175
`commons-comprof`,
@@ -195,25 +180,19 @@ lazy val `commons-jvm` = project.in(file(".jvm"))
195180
.aggregate(
196181
`commons-analyzer`,
197182
`commons-macros`,
198-
`commons-annotations`,
199183
`commons-core`,
200-
`commons-rest`,
201184
`commons-jetty`,
202185
`commons-mongo`,
203186
`commons-hocon`,
204187
`commons-spring`,
205188
`commons-redis`,
206-
`commons-akka`,
207-
`commons-kafka`,
208189
`commons-benchmark`,
209190
)
210191
.settings(aggregateProjectSettings)
211192

212193
lazy val `commons-js` = project.in(file(".js"))
213194
.aggregate(
214-
`commons-annotations-js`,
215195
`commons-core-js`,
216-
`commons-rest-js`,
217196
`commons-benchmark-js`,
218197
)
219198
.settings(aggregateProjectSettings)
@@ -245,31 +224,18 @@ def sameNameAs(proj: Project) =
245224
if (forIdeaImport) Seq.empty
246225
else Seq(name := (name in proj).value)
247226

248-
lazy val `commons-annotations` = project
249-
.dependsOn(`commons-macros`)
250-
.settings(jvmCommonSettings)
251-
252-
lazy val `commons-annotations-js` = project.in(`commons-annotations`.base / "js")
253-
.enablePlugins(ScalaJSPlugin)
254-
.configure(p => if (forIdeaImport) p.dependsOn(`commons-annotations`) else p)
255-
.dependsOn(`commons-macros`)
256-
.settings(
257-
jsCommonSettings,
258-
sameNameAs(`commons-annotations`),
259-
sourceDirsSettings(_.getParentFile),
260-
)
261-
262227
lazy val `commons-macros` = project.settings(
263228
jvmCommonSettings,
264229
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value,
265230
)
266231

267232
lazy val `commons-core` = project
268-
.dependsOn(`commons-macros`, `commons-annotations` % CompileAndTest)
233+
.dependsOn(`commons-macros`)
269234
.settings(
270235
jvmCommonSettings,
271236
sourceDirsSettings(_ / "jvm"),
272237
libraryDependencies ++= Seq(
238+
"org.scala-lang.modules" %% "scala-collection-compat" % collectionCompatVersion,
273239
"com.google.code.findbugs" % "jsr305" % jsr305Version % Optional,
274240
"com.google.guava" % "guava" % guavaVersion % Optional,
275241
"io.monix" %% "monix" % monixVersion % Optional,
@@ -279,32 +245,18 @@ lazy val `commons-core` = project
279245
lazy val `commons-core-js` = project.in(`commons-core`.base / "js")
280246
.enablePlugins(ScalaJSPlugin)
281247
.configure(p => if (forIdeaImport) p.dependsOn(`commons-core`) else p)
282-
.dependsOn(`commons-macros`, `commons-annotations-js` % CompileAndTest)
248+
.dependsOn(`commons-macros`)
283249
.settings(
284250
jsCommonSettings,
285251
sameNameAs(`commons-core`),
286252
sourceDirsSettings(_.getParentFile),
287-
)
288-
289-
lazy val `commons-rest` = project
290-
.dependsOn(`commons-core` % CompileAndTest)
291-
.settings(
292-
jvmCommonSettings,
293-
sourceDirsSettings(_ / "jvm"),
294-
)
295-
296-
lazy val `commons-rest-js` = project.in(`commons-rest`.base / "js")
297-
.enablePlugins(ScalaJSPlugin)
298-
.configure(p => if (forIdeaImport) p.dependsOn(`commons-rest`) else p)
299-
.dependsOn(`commons-core-js` % CompileAndTest)
300-
.settings(
301-
jsCommonSettings,
302-
sameNameAs(`commons-rest`),
303-
sourceDirsSettings(_.getParentFile),
253+
libraryDependencies ++= Seq(
254+
"org.scala-lang.modules" %%% "scala-collection-compat" % collectionCompatVersion,
255+
)
304256
)
305257

306258
lazy val `commons-jetty` = project
307-
.dependsOn(`commons-core` % CompileAndTest, `commons-rest` % OptionalCompileAndTest)
259+
.dependsOn(`commons-core` % CompileAndTest)
308260
.settings(
309261
jvmCommonSettings,
310262
libraryDependencies ++= Seq(
@@ -318,19 +270,12 @@ lazy val `commons-jetty` = project
318270
)
319271

320272
lazy val `commons-benchmark` = project
321-
.dependsOn(`commons-rest`, `commons-akka`, `commons-redis`, `commons-mongo`)
273+
.dependsOn(`commons-redis`, `commons-mongo`)
322274
.enablePlugins(JmhPlugin)
323275
.settings(
324276
jvmCommonSettings,
325277
noPublishSettings,
326278
sourceDirsSettings(_ / "jvm"),
327-
libraryDependencies ++= {
328-
if (scalaBinaryVersion.value != "2.12") Seq(
329-
"com.github.etaty" %% "rediscala" % "1.6.0",
330-
"com.livestream" %% "scredis" % "2.0.8",
331-
)
332-
else Seq.empty
333-
},
334279
libraryDependencies ++= Seq(
335280
"io.circe" %% "circe-core" % circeVersion,
336281
"io.circe" %% "circe-generic" % circeVersion,
@@ -344,7 +289,7 @@ lazy val `commons-benchmark` = project
344289
lazy val `commons-benchmark-js` = project.in(`commons-benchmark`.base / "js")
345290
.enablePlugins(ScalaJSPlugin)
346291
.configure(p => if (forIdeaImport) p.dependsOn(`commons-benchmark`) else p)
347-
.dependsOn(`commons-macros`, `commons-rest-js`)
292+
.dependsOn(`commons-core-js`)
348293
.settings(
349294
jsCommonSettings,
350295
noPublishSettings,
@@ -371,19 +316,9 @@ lazy val `commons-mongo` = project
371316
"com.google.guava" % "guava" % guavaVersion,
372317
"io.monix" %% "monix" % monixVersion,
373318
"org.mongodb" % "mongodb-driver-core" % mongoVersion,
374-
"org.mongodb" % "mongodb-driver" % mongoVersion % Optional,
375-
"org.mongodb" % "mongodb-driver-async" % mongoVersion % Optional,
376-
"org.mongodb" % "mongodb-driver-reactivestreams" % mongoReactiveVersion % Optional,
377-
"org.mongodb.scala" %% "mongo-scala-driver" % mongoScalaVersion % Optional,
378-
),
379-
)
380-
381-
lazy val `commons-kafka` = project
382-
.dependsOn(`commons-core` % CompileAndTest)
383-
.settings(
384-
jvmCommonSettings,
385-
libraryDependencies ++= Seq(
386-
"org.apache.kafka" % "kafka-streams" % kafkaVersion,
319+
"org.mongodb" % "mongodb-driver-sync" % mongoVersion % Optional,
320+
"org.mongodb" % "mongodb-driver-reactivestreams" % mongoVersion % Optional,
321+
"org.mongodb.scala" %% "mongo-scala-driver" % mongoVersion % Optional,
387322
),
388323
)
389324

@@ -418,18 +353,6 @@ lazy val `commons-spring` = project
418353
),
419354
)
420355

421-
lazy val `commons-akka` = project
422-
.dependsOn(`commons-core` % CompileAndTest)
423-
.settings(
424-
jvmCommonSettings,
425-
libraryDependencies ++= Seq(
426-
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
427-
"com.typesafe.akka" %% "akka-remote" % akkaVersion,
428-
"io.monix" %% "monix" % monixVersion,
429-
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % Test,
430-
),
431-
)
432-
433356
lazy val `commons-comprof` = project
434357
.dependsOn(`commons-core`)
435358
.settings(
@@ -450,7 +373,7 @@ lazy val `commons-comprof` = project
450373
val originalContent = IO.read(originalSrc)
451374
(0 until 100).map { i =>
452375
val pkg = f"oa$i%02d"
453-
val newContent = originalContent.replaceAllLiterally("package rest", s"package rest\npackage $pkg")
376+
val newContent = originalContent.replace("package rest", s"package rest\npackage $pkg")
454377
val newFile = (sourceManaged in Compile).value / pkg / "RestTestApi.scala"
455378
IO.write(newFile, newContent)
456379
newFile

0 commit comments

Comments
 (0)