Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,6 @@ b83264042216c7d83b73247b8b7a998902ec26d5

# Scala Steward: Reformat with scalafmt 3.9.10
7d900f00d9e3f23f45fca7989ae6a4c1c75580c7

# Scala Steward: Reformat with scalafmt 3.10.0
12eaae6b3f4f112a41e4e69dc5c7109ba0296dcd
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
style = defaultWithAlign
maxColumn = 120
version = 3.9.10
version = 3.10.0
assumeStandardLibraryStripMargin = true
align.stripMargin = true
runner.dialect = scala3
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ final case class SimpleTypeInfo[T: ClassTag: TypeSerializer](
keyType: Boolean = false
) extends TypeInformation[T] {

val typeClass: Class[T] = classTag[T].runtimeClass.asInstanceOf[Class[T]]
val typeClass: Class[T] = classTag[T].runtimeClass.asInstanceOf[Class[T]]
val serializer: TypeSerializer[T] = implicitly[TypeSerializer[T]]

override def createSerializer(config: SerializerConfig): TypeSerializer[T] = serializer.duplicate()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class SchemaEvolutionTest extends AnyFlatSpec with Matchers {
modifiedResult shouldBe modifiedExpected
}

def generateBlobForEvent() = {
def generateBlobForEvent() = {
val buffer = new ByteArrayOutputStream()
val eventSerializer = createSerializer[Event]
eventSerializer.serialize(Click("p1", clicks), new DataOutputViewStreamWrapper(buffer))
Expand Down
10 changes: 5 additions & 5 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.12.2")
// addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.3.1")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.5")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.7.2")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.5")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.7.2")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0")
// addSbtPlugin("com.github.sbt" % "sbt-git" % "2.1.0")
addSbtPlugin("com.github.sbt" % "sbt-protobuf" % "0.8.3")
addSbtPlugin("io.shiftleft" % "sbt-ci-release-early" % "2.1.11")
addSbtPlugin("com.github.sbt" % "sbt-protobuf" % "0.8.3")
addSbtPlugin("io.shiftleft" % "sbt-ci-release-early" % "2.1.11")
Loading