Skip to content

Commit

Permalink
Merge branch 'release/0.6.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
usommerl committed May 17, 2021
2 parents 8e8d0d8 + a445146 commit 0212ab9
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 16 deletions.
1 change: 1 addition & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
categories:
- title: 'Enhancements'
label: 'enhancement'
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/ci_cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v2.3.4
- name: Set up JDK
uses: actions/setup-java@v2
with:
Expand All @@ -21,14 +21,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v2.3.4
- name: Set up JDK
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 11
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v1.9.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand Down Expand Up @@ -59,5 +59,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag: ${{ github.ref }}
version: ${{ github.ref }}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/graalvm/graalvm-ce:java11-21.0.0.2 as builder
FROM ghcr.io/graalvm/graalvm-ce:java11-21.1.0 as builder

ARG upx_compression
RUN gu install native-image
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ ThisBuild / organization := "dev.usommerl"
ThisBuild / scalafixDependencies += "com.github.liancheng" %% "organize-imports" % "0.5.0"

val v = new {
val http4s = "0.21.22"
val http4s = "0.21.23"
val circe = "0.13.0"
val ciris = "1.2.1"
val tapir = "0.17.19"
val odin = "0.11.0"
val munit = "0.7.23"
val munitCE = "1.0.1"
val munit = "0.7.26"
val munitCE = "1.0.3"
}

val upx = "UPX_COMPRESSION"
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.5.0
sbt.version=1.5.2
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.10.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.8.1")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.1.17")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.8.0")
addSbtPlugin("se.marcuslonnberg" % "sbt-docker" % "1.8.2")
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Args = --verbose \
--enable-all-security-services \
--report-unsupported-elements-at-runtime \
--initialize-at-build-time \
--initialize-at-run-time=org.http4s.multipart.Boundary$ \
--allow-incomplete-classpath \
-H:+ReportExceptionStackTraces \
-H:+ReportUnsupportedElementsAtRuntime \
Expand Down
8 changes: 2 additions & 6 deletions src/main/resources/META-INF/native-image/resource-config.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
{
"resources":{
"includes":[
{"pattern":".*swagger-ui/.*"},
{"pattern":"\\QMETA-INF/maven/org.webjars/swagger-ui/pom.properties\\E"},
{"pattern":"\\QMETA-INF/resources/webjars/swagger-ui/3.43.0/swagger-ui-bundle.js\\E"},
{"pattern":"\\QMETA-INF/resources/webjars/swagger-ui/3.43.0/swagger-ui-standalone-preset.js\\E"},
{"pattern":"\\QMETA-INF/resources/webjars/swagger-ui/3.43.0/swagger-ui.css\\E"},
{"pattern":"\\Qlibrary.properties\\E"},
{"pattern":".*swagger-ui/.*"},
{"pattern":"\\Qlibrary.properties\\E"},
{"pattern":"\\Qorg/slf4j/impl/StaticLoggerBinder.class\\E"}
]},
"bundles":[]
Expand Down

0 comments on commit 0212ab9

Please sign in to comment.