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

Release/5.8.2 #1343

Merged
merged 2 commits into from
Feb 16, 2024
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
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 5.8.2 (2024-02-16)
--------------------------
Bump schema-ddl to 0.22.1 (#1342)

Version 5.8.1 (2024-02-06)
--------------------------
Bump AWS SDK to 2.23.17 (#1339)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Licensed under the [Snowplow Community License](https://docs.snowplow.io/communi
[build-image]: https://github.com/snowplow/snowplow-rdb-loader/workflows/CI/badge.svg
[build]: https://github.com/snowplow/snowplow-rdb-loader/actions/workflows/ci.yml

[release-image]: https://img.shields.io/badge/release-5.8.1-blue.svg?style=flat
[release-image]: https://img.shields.io/badge/release-5.8.2-blue.svg?style=flat
[releases]: https://github.com/snowplow/snowplow-rdb-loader/releases

[license]: https://docs.snowplow.io/docs/contributing/community-license-faq/
Expand Down
10 changes: 5 additions & 5 deletions project/BuildSettings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ import sbtdynver.DynVerPlugin.autoImport._

import org.scalafmt.sbt.ScalafmtPlugin.autoImport._

import org.typelevel.sbt.tpolecat.TpolecatPlugin.autoImport._
import org.typelevel.scalacoptions.ScalacOptions._

/**
* Common settings-patterns for Snowplow apps and libraries.
* To enable any of these you need to explicitly add Settings value to build.sbt
Expand All @@ -44,15 +47,12 @@ object BuildSettings {
organization := "com.snowplowanalytics",
scalaVersion := "2.12.14",

Compile / console / scalacOptions := Seq(
"-deprecation",
"-encoding", "UTF-8"
),

Compile / unmanagedResources += file("SNOWPLOW-LICENSE.md"),

addCompilerPlugin("org.typelevel" % "kind-projector" % "0.13.0" cross CrossVersion.full),

tpolecatExcludeOptions ++= Set(fatalWarnings),

resolvers ++= Dependencies.resolutionRepos
) ++ formattingSettings

Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ object Dependencies {

val spark = "3.3.1"
val eventsManifest = "0.4.0"
val schemaDdl = "0.20.0"
val schemaDdl = "0.22.1"
val jacksonModule = "2.14.2" // Override incompatible version in spark runtime
val jacksonDatabind = "2.14.2"
val jacksonMapper = "1.9.14-atlassian-6" // Fix CVE
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
logLevel := Level.Warn

addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.9")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.1.20")
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.0")
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.10.0-RC1")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.9.3")
Expand Down
Loading