From c6f58016100dade5a9a9a4832042d44114f67745 Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Wed, 7 Aug 2019 16:06:52 +0900 Subject: [PATCH] Bump to Scala 2.13.0 --- README.MD | 5 +++++ build.sbt | 7 ++++--- project/build.properties | 2 +- project/plugins.sbt | 2 +- src/main/scala/Plugin.scala | 1 + .../announce/controller/AnnounceController.scala | 10 +++++----- 6 files changed, 17 insertions(+), 10 deletions(-) diff --git a/README.MD b/README.MD index 03e43b0..83db13d 100644 --- a/README.MD +++ b/README.MD @@ -16,6 +16,7 @@ It is then possible, for example, to notify every user that an upgrade of the sy Plugin version | GitBucket version :--------------|:----------------- +1.12.x | 4.32.x 1.11.x | 4.26.x 1.10.x | 4.21.x -> 4.25.x 1.9.x | 4.19.x, 4.20.x @@ -39,6 +40,10 @@ Plugin version | GitBucket version ## Release Notes +### 1.12.0 + +- update to gitbucket 4.23.0 and Scala 2.13.0 + ### 1.11.0 - Bump sbt-gitbucket-plugin to 1.3.0 to be hosted by the [plugin registry](https://plugins.gitbucket-community.org/) diff --git a/build.sbt b/build.sbt index 8840857..36769f5 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,6 @@ name := "gitbucket-announce-plugin" organization := "fr.brouillard.gitbucket" -version := "1.11.0" -scalaVersion := "2.12.6" -gitbucketVersion := "4.26.0" +version := "1.12.0" +scalaVersion := "2.13.0" +gitbucketVersion := "4.32.0" +scalacOptions += "-deprecation" diff --git a/project/build.properties b/project/build.properties index b991b7a..caf3725 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.1.6 +sbt.version = 1.2.8 diff --git a/project/plugins.sbt b/project/plugins.sbt index 60d166a..059a3cd 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1 +1 @@ -addSbtPlugin("io.github.gitbucket" % "sbt-gitbucket-plugin" % "1.3.0") +addSbtPlugin("io.github.gitbucket" % "sbt-gitbucket-plugin" % "1.5.0") diff --git a/src/main/scala/Plugin.scala b/src/main/scala/Plugin.scala index 0276671..81df6f7 100644 --- a/src/main/scala/Plugin.scala +++ b/src/main/scala/Plugin.scala @@ -25,6 +25,7 @@ class Plugin extends gitbucket.core.plugin.Plugin { , new Version("1.9.0") , new Version("1.10.0") , new Version("1.11.0") + , new Version("1.12.0") ) override val systemSettingMenus: Seq[(Context) => Option[Link]] = Seq( diff --git a/src/main/scala/fr/brouillard/gitbucket/announce/controller/AnnounceController.scala b/src/main/scala/fr/brouillard/gitbucket/announce/controller/AnnounceController.scala index 5f5b4b6..ffa72b9 100644 --- a/src/main/scala/fr/brouillard/gitbucket/announce/controller/AnnounceController.scala +++ b/src/main/scala/fr/brouillard/gitbucket/announce/controller/AnnounceController.scala @@ -58,7 +58,7 @@ trait AnnounceControllerBase extends ControllerBase { try { mailer.sendBcc(bcc, form.subject, form.content, Some(html), context.loginAccount) - flash += "info" -> "Announce has been sent." + flash.update("info", "Announce has been sent.") } catch { case t: EmailException => { t.getCause match { @@ -74,21 +74,21 @@ trait AnnounceControllerBase extends ControllerBase { logger.error("email not sent to: {}", ua.toString()) } } - flash += "info" -> "Announce has been sent." + flash.update("info", "Announce has been sent.") } case _ => { logger.error("failure sending email", t) - flash += "info" -> "Announce cannot be sent, verify log errors." + flash.update("info", "Announce cannot be sent, verify log errors.") } } } case e: Exception => { logger.error("unexpected exception while sending email", e) - flash += "info" -> "Announce cannot be sent, verify log errors." + flash.update("info", "Announce cannot be sent, verify log errors.") } } } else { - flash += "info" -> "Announce cannot be sent, verify SMTP settings" + flash.update("info", "Announce cannot be sent, verify SMTP settings") } redirect("/admin/announce")