From 336f52d9514dd3f61d0ef9edc710a6c2fef72075 Mon Sep 17 00:00:00 2001 From: nafg Date: Mon, 29 Jun 2020 23:15:36 -0400 Subject: [PATCH 001/326] README.md: update Variants section --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9326236..df98dae 100644 --- a/README.md +++ b/README.md @@ -23,12 +23,13 @@ write code like this: ``` ## Variants -### CSS Frameworks +### CSS libraries * Bootstrap 3 * Bootstrap 4 * Bulma * Semantic UI * Fomantic UI + * Font Awesome ### Targeted Libraries * Scalajs-react From 9df520a81b4622dc966aea80b60f61f3804e4f7e Mon Sep 17 00:00:00 2001 From: nafg Date: Tue, 30 Jun 2020 00:05:50 -0400 Subject: [PATCH 002/326] fontawesome: prefix is redundant since classes are already prefixed --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index fa2b559..aa5529f 100644 --- a/build.sbt +++ b/build.sbt @@ -76,7 +76,7 @@ val fomanticUiConfig = val fontawesomeUiConfig = CssDslConfig( "Font Awesome", - Set(Some("fa")), + Set(None, Some("fa")), latestTag("@fortawesome/fontawesome-free"), "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/" + _ + "/css/all.css" ) From e363d5b6009663eb8447941248b30e4052a591b3 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 30 Jun 2020 08:33:12 +0200 Subject: [PATCH 003/326] Update scalajs-react:core to 1.7.3 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index aa5529f..637bf45 100644 --- a/build.sbt +++ b/build.sbt @@ -22,7 +22,7 @@ def latestIn(pkg: String, versionMajor: Int) = npmView(s"$pkg@$versionMajor", "version")(_.last match { case npmViewVersionRegex(v) => v }) def scalaJsReactSettings(config: CssDslConfig) = Seq( - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.7.2", + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.7.3", cssVariant := TargetImpl.ScalaJsReact, cssDslConfig := config ) From 92fc9a3701d6ba0b28d40a8ad0085042e205f0d7 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 30 Jun 2020 22:36:22 +0200 Subject: [PATCH 004/326] Update sbt-dynver to 4.1.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 4b52310..0b39b0f 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,4 +2,4 @@ val sjsVer = sys.env.getOrElse("SCALAJS_VERSION", "1.1.0") addSbtPlugin("ch.epfl.scala" % s"sbt-scalajs-bundler${if (sjsVer.startsWith("0.6")) "-sjs06" else ""}" % "0.18.0") addSbtPlugin("org.scala-js" % "sbt-scalajs" % sjsVer) -addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.0") +addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.1") From c28812e90bfb5708c0a8d1b1ebbad51887495998 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 1 Jul 2020 00:45:53 +0200 Subject: [PATCH 005/326] Update scalameta to 4.3.18 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 3935ee1..9cfd6eb 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.3.17" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.3.18" libraryDependencies += "com.helger" % "ph-css" % "6.2.3" From 7e8e44b9c6cfe23863682e257339a3eb57e4e0b6 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 2 Jul 2020 02:16:28 +0200 Subject: [PATCH 006/326] Update sbt-scalajs, scalajs-compiler to 1.1.1 --- .travis.yml | 2 +- project/plugins.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7248cac..7760a11 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ language: scala env: - SCALAJS_VERSION=0.6.33 - - SCALAJS_VERSION=1.1.0 + - SCALAJS_VERSION=1.1.1 script: "sbt +test" diff --git a/project/plugins.sbt b/project/plugins.sbt index 0b39b0f..3fd63d7 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -val sjsVer = sys.env.getOrElse("SCALAJS_VERSION", "1.1.0") +val sjsVer = sys.env.getOrElse("SCALAJS_VERSION", "1.1.1") addSbtPlugin("ch.epfl.scala" % s"sbt-scalajs-bundler${if (sjsVer.startsWith("0.6")) "-sjs06" else ""}" % "0.18.0") addSbtPlugin("org.scala-js" % "sbt-scalajs" % sjsVer) From cde512551f2cb7c4b8459e354f3e9cb02e5c972a Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 10 Jul 2020 23:13:11 +0200 Subject: [PATCH 007/326] Update scalameta to 4.3.19 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 9cfd6eb..c05b217 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.3.18" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.3.19" libraryDependencies += "com.helger" % "ph-css" % "6.2.3" From cf60d19d94f7c247af3c5c3f3d2b0a3e508dd20b Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 13 Jul 2020 18:38:40 +0200 Subject: [PATCH 008/326] Update scalameta to 4.3.20 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index c05b217..a2f5d77 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.3.19" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.3.20" libraryDependencies += "com.helger" % "ph-css" % "6.2.3" From 45de5f56357c6ece99c20f5d93ea2ace3314b43b Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 15 Aug 2020 14:29:43 +0200 Subject: [PATCH 009/326] Update scalajs-react:core to 1.7.5 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 637bf45..5e19d0c 100644 --- a/build.sbt +++ b/build.sbt @@ -22,7 +22,7 @@ def latestIn(pkg: String, versionMajor: Int) = npmView(s"$pkg@$versionMajor", "version")(_.last match { case npmViewVersionRegex(v) => v }) def scalaJsReactSettings(config: CssDslConfig) = Seq( - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.7.3", + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.7.5", cssVariant := TargetImpl.ScalaJsReact, cssDslConfig := config ) From 077dea7041c104b41e8fe21801fb4dc57769ba69 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 26 Aug 2020 20:29:34 +0200 Subject: [PATCH 010/326] Update scalameta to 4.3.21 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index a2f5d77..b9c19f8 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.3.20" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.3.21" libraryDependencies += "com.helger" % "ph-css" % "6.2.3" From a102c7a76c5c199b7909ab2a4c091732845cb30c Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 9 Sep 2020 01:13:49 +0200 Subject: [PATCH 011/326] Update sbt-scalajs, scalajs-compiler to 1.2.0 --- .travis.yml | 2 +- project/plugins.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7760a11..8d64712 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ language: scala env: - SCALAJS_VERSION=0.6.33 - - SCALAJS_VERSION=1.1.1 + - SCALAJS_VERSION=1.2.0 script: "sbt +test" diff --git a/project/plugins.sbt b/project/plugins.sbt index 3fd63d7..072ee4e 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -val sjsVer = sys.env.getOrElse("SCALAJS_VERSION", "1.1.1") +val sjsVer = sys.env.getOrElse("SCALAJS_VERSION", "1.2.0") addSbtPlugin("ch.epfl.scala" % s"sbt-scalajs-bundler${if (sjsVer.startsWith("0.6")) "-sjs06" else ""}" % "0.18.0") addSbtPlugin("org.scala-js" % "sbt-scalajs" % sjsVer) From 95f2d8a82495d51e66839209ff868a0dbf89d312 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 10 Sep 2020 15:56:36 +0200 Subject: [PATCH 012/326] Update scalameta to 4.3.22 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index b9c19f8..62b141f 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.3.21" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.3.22" libraryDependencies += "com.helger" % "ph-css" % "6.2.3" From a26b6a4da39872209d569b2938ddd9f9ae5acf56 Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Mon, 12 Oct 2020 19:06:55 -0400 Subject: [PATCH 013/326] build.sbt: don't use cdnjs, see https://twitter.com/nafg613/status/1311147429966868482 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 5e19d0c..306c089 100644 --- a/build.sbt +++ b/build.sbt @@ -54,7 +54,7 @@ val bulmaConfig = "Bulma", Set(None, Some("b")), latestTag("bulma"), - "https://cdnjs.cloudflare.com/ajax/libs/bulma/" + _ + "/css/bulma.css" + "https://cdn.jsdelivr.net/npm/bulma@" + _ + "/css/bulma.min.css" ) val semanticUiConfig = @@ -78,7 +78,7 @@ val fontawesomeUiConfig = "Font Awesome", Set(None, Some("fa")), latestTag("@fortawesome/fontawesome-free"), - "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/" + _ + "/css/all.css" + "https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@" + _ + "/css/all.min.css" ) lazy val bootstrap3_scalajsreact = From 078b59ea29670998c2885c26d4e1f072fb5498bf Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Mon, 12 Oct 2020 19:06:55 -0400 Subject: [PATCH 014/326] GeneratorPlugin: log URL being downloaded --- project/GeneratorPlugin.scala | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/project/GeneratorPlugin.scala b/project/GeneratorPlugin.scala index b87193a..5b46d08 100644 --- a/project/GeneratorPlugin.scala +++ b/project/GeneratorPlugin.scala @@ -23,7 +23,9 @@ object GeneratorPlugin extends AutoPlugin { val cfg = cssDslConfig.value val variant = cssVariant.value val outputDir = (Compile / sourceManaged).value - val classes = CssExtractor.getClassesFromURL(new URL(cfg.versionedUrl(cfg.version))) + val url = cfg.versionedUrl(cfg.version) + streams.value.log.info(s"Processing $url...") + val classes = CssExtractor.getClassesFromURL(new URL(url)) for (prefix <- cfg.prefixes.toSeq) yield { val name = prefix.getOrElse("").capitalize + "Dsl" val generator = new Generator(cfg.scalaPackage, name, prefix, classes, variant) From 65b0be46e62cea87b8c4c0ccf15b48b527649d70 Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Mon, 12 Oct 2020 19:06:55 -0400 Subject: [PATCH 015/326] Unpin fomantic-ui https://github.com/fomantic/Fomantic-UI/issues/1544 has been fixed --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 306c089..d6087ae 100644 --- a/build.sbt +++ b/build.sbt @@ -69,7 +69,7 @@ val fomanticUiConfig = CssDslConfig( "Fomantic UI", Set(Some("f")), - "2.8.4", + latestTag("fomantic-ui"), "https://cdn.jsdelivr.net/npm/fomantic-ui@" + _ + "/dist/semantic.min.css" ) From b701b7946b49c59a28071f1636859cca74b32878 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 27 Sep 2020 08:30:02 +0200 Subject: [PATCH 016/326] Update scalatags to 0.9.2 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index d6087ae..cb57583 100644 --- a/build.sbt +++ b/build.sbt @@ -28,7 +28,7 @@ def scalaJsReactSettings(config: CssDslConfig) = Seq( ) def scalatagsSettings(config: CssDslConfig) = Seq( - libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.9.1", + libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.9.2", cssVariant := TargetImpl.Scalatags, cssDslConfig := config ) From 5c8d667460b1228469a0669938254472c8606744 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 6 Oct 2020 16:42:06 +0200 Subject: [PATCH 017/326] Update scalameta to 4.3.23 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 62b141f..a2c7f50 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.3.22" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.3.23" libraryDependencies += "com.helger" % "ph-css" % "6.2.3" From 16ab37bff4e7a3dbf7788997eb3075f2575d54d7 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 5 Oct 2020 04:01:43 +0200 Subject: [PATCH 018/326] Update sbt to 1.4.0 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index cb6a5a8..2ec6cd9 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.3.13 +sbt.version = 1.4.0 From ce2e14c7355e8ea6fcd54c566cf31d75e973dd16 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Tue, 13 Oct 2020 04:10:23 +0200 Subject: [PATCH 019/326] Update scalameta to 4.3.24 (#81) --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index a2c7f50..46d1fdd 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.3.23" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.3.24" libraryDependencies += "com.helger" % "ph-css" % "6.2.3" From 2f058d9acc5befd8073f7dcb7b97f5da9f39346d Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 16 Oct 2020 20:45:52 +0200 Subject: [PATCH 020/326] Update sbt-scalajs-bundler to 0.19.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 072ee4e..7eaf678 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ val sjsVer = sys.env.getOrElse("SCALAJS_VERSION", "1.2.0") -addSbtPlugin("ch.epfl.scala" % s"sbt-scalajs-bundler${if (sjsVer.startsWith("0.6")) "-sjs06" else ""}" % "0.18.0") +addSbtPlugin("ch.epfl.scala" % s"sbt-scalajs-bundler${if (sjsVer.startsWith("0.6")) "-sjs06" else ""}" % "0.19.0") addSbtPlugin("org.scala-js" % "sbt-scalajs" % sjsVer) addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.1") From ae887533e55fbbdf5e28dc83ab7ab5d5f7346864 Mon Sep 17 00:00:00 2001 From: nafg <98384+nafg@users.noreply.github.com> Date: Sat, 17 Oct 2020 23:17:50 -0400 Subject: [PATCH 021/326] build.sbt: bootstrapcdn is failing for 4.5.3, change that too --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index cb57583..78944b2 100644 --- a/build.sbt +++ b/build.sbt @@ -38,7 +38,7 @@ val bootstrap3Config = "Bootstrap 3", Set(None, Some("bs"), Some("bs3")), latestIn("bootstrap", 3), - "https://maxcdn.bootstrapcdn.com/bootstrap/" + _ + "/css/bootstrap.min.css" + "https://stackpath.bootstrapcdn.com/bootstrap/" + _ + "/css/bootstrap.min.css" ) val bootstrap4Config = @@ -46,7 +46,7 @@ val bootstrap4Config = "Bootstrap 4", Set(None, Some("bs"), Some("bs4")), latestIn("bootstrap", 4), - "https://maxcdn.bootstrapcdn.com/bootstrap/" + _ + "/css/bootstrap.min.css" + "https://cdn.jsdelivr.net/npm/bootstrap@" + _ + "/dist/css/bootstrap.min.css" ) val bulmaConfig = From da334e27d91d8b9217f874c5f0f6786687169d67 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Sun, 18 Oct 2020 15:04:04 +0200 Subject: [PATCH 022/326] Update sbt-scalajs, scalajs-compiler to 1.3.0 (#82) --- .travis.yml | 2 +- project/plugins.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8d64712..8d94c2b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ language: scala env: - SCALAJS_VERSION=0.6.33 - - SCALAJS_VERSION=1.2.0 + - SCALAJS_VERSION=1.3.0 script: "sbt +test" diff --git a/project/plugins.sbt b/project/plugins.sbt index 7eaf678..261bcb4 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -val sjsVer = sys.env.getOrElse("SCALAJS_VERSION", "1.2.0") +val sjsVer = sys.env.getOrElse("SCALAJS_VERSION", "1.3.0") addSbtPlugin("ch.epfl.scala" % s"sbt-scalajs-bundler${if (sjsVer.startsWith("0.6")) "-sjs06" else ""}" % "0.19.0") addSbtPlugin("org.scala-js" % "sbt-scalajs" % sjsVer) From adc54a0317320fbaa023e9dbbe1f6d90640acd02 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 19 Oct 2020 23:12:13 +0200 Subject: [PATCH 023/326] Update sbt to 1.4.1 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 2ec6cd9..4c69e16 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.4.0 +sbt.version = 1.4.1 From 9d10b325e23454e87b0697aef5b3b702495eb214 Mon Sep 17 00:00:00 2001 From: nafg <98384+nafg@users.noreply.github.com> Date: Thu, 22 Oct 2020 15:17:47 -0400 Subject: [PATCH 024/326] project/plugins.sbt: update scalajs-bundler selection logic --- project/plugins.sbt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 261bcb4..6cd494f 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,10 @@ val sjsVer = sys.env.getOrElse("SCALAJS_VERSION", "1.3.0") -addSbtPlugin("ch.epfl.scala" % s"sbt-scalajs-bundler${if (sjsVer.startsWith("0.6")) "-sjs06" else ""}" % "0.19.0") addSbtPlugin("org.scala-js" % "sbt-scalajs" % sjsVer) +sjsVer.split("\\.") match { + case Array("0", "6", _) => addSbtPlugin("ch.epfl.scala" % s"sbt-scalajs-bundler-sjs06" % "0.19.0") + case Array("1", "0" | "1" | "2", _) => addSbtPlugin("ch.epfl.scala" % s"sbt-scalajs-bundler" % "0.19.0") + case Array("1", "3", _) => addSbtPlugin("ch.epfl.scala" % s"sbt-scalajs-bundler" % "0.20.0") +} + addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.1") From 37a33776b6fcf15cc02c9669247bbfd927243b5c Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 2 Nov 2020 08:07:31 +0100 Subject: [PATCH 025/326] Update sbt to 1.4.2 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 4c69e16..edb6942 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.4.1 +sbt.version = 1.4.2 From 444b12b3836ea128b686101d55e75d97d4ad0ead Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 22 Mar 2021 02:22:50 +0100 Subject: [PATCH 026/326] Update scalajs-react:core to 1.7.7 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 78944b2..5994ae9 100644 --- a/build.sbt +++ b/build.sbt @@ -22,7 +22,7 @@ def latestIn(pkg: String, versionMajor: Int) = npmView(s"$pkg@$versionMajor", "version")(_.last match { case npmViewVersionRegex(v) => v }) def scalaJsReactSettings(config: CssDslConfig) = Seq( - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.7.5", + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.7.7", cssVariant := TargetImpl.ScalaJsReact, cssDslConfig := config ) From 3b4e6f0bc66cf99643f14d31ec1f1ec72a5e6724 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 22 Mar 2021 02:22:54 +0100 Subject: [PATCH 027/326] Update ph-css to 6.2.4 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 46d1fdd..5144beb 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ libraryDependencies += "org.scalameta" %% "scalameta" % "4.3.24" -libraryDependencies += "com.helger" % "ph-css" % "6.2.3" +libraryDependencies += "com.helger" % "ph-css" % "6.2.4" From 7695ea178685244052e32462ea3cdf4f3c13324c Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 22 Mar 2021 02:22:57 +0100 Subject: [PATCH 028/326] Update scalatags to 0.9.3 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 78944b2..65d5674 100644 --- a/build.sbt +++ b/build.sbt @@ -28,7 +28,7 @@ def scalaJsReactSettings(config: CssDslConfig) = Seq( ) def scalatagsSettings(config: CssDslConfig) = Seq( - libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.9.2", + libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.9.3", cssVariant := TargetImpl.Scalatags, cssDslConfig := config ) From 8d085e232ba92fc506873d2ea0ec14efa0a716b5 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 22 Mar 2021 02:23:27 +0100 Subject: [PATCH 029/326] Update sbt to 1.4.9 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index edb6942..ddffd37 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.4.2 +sbt.version = 1.4.9 From 76cba1352f3dc6cb9936d9708ff6d2141247de39 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 22 Mar 2021 02:23:43 +0100 Subject: [PATCH 030/326] Update scalameta to 4.4.10 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 46d1fdd..a72eb6b 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.3.24" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.10" libraryDependencies += "com.helger" % "ph-css" % "6.2.3" From c845b7725f86e8f0252c641065bd5059a6cdc524 Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim Date: Mon, 22 Mar 2021 04:44:40 +0000 Subject: [PATCH 031/326] Switch to sbt-ci-release / sbt-github-actions (and scala.js 1.5.0) --- .github/workflows/ci.yml | 125 ++++++++++++++++++++++++++++++++++++ .github/workflows/clean.yml | 59 +++++++++++++++++ .mergify.yml | 10 +++ .travis.yml | 15 ----- bintray.sbt | 11 ---- ci.sbt | 24 +++++++ project/WriteMergify.scala | 28 ++++++++ project/plugins.sbt | 15 ++--- 8 files changed, 251 insertions(+), 36 deletions(-) create mode 100644 .github/workflows/ci.yml create mode 100644 .github/workflows/clean.yml create mode 100644 .mergify.yml delete mode 100644 .travis.yml delete mode 100644 bintray.sbt create mode 100644 ci.sbt create mode 100644 project/WriteMergify.scala diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..8d37069 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,125 @@ +# This file was automatically generated by sbt-github-actions using the +# githubWorkflowGenerate task. You should add and commit this file to +# your git repository. It goes without saying that you shouldn't edit +# this file by hand! Instead, if you wish to make changes, you should +# change your sbt build configuration to revise the workflow description +# to meet your needs, then regenerate this file. + +name: Continuous Integration + +on: + pull_request: + branches: ['*'] + push: + branches: ['*'] + tags: [v*] + +env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + +jobs: + build: + name: Build and Test + strategy: + matrix: + os: [ubuntu-latest] + scala: [2.12.11, 2.13.2] + java: [adopt@1.8] + runs-on: ${{ matrix.os }} + steps: + - name: Checkout current branch (full) + uses: actions/checkout@v2 + with: + fetch-depth: 0 + + - name: Setup Java and Scala + uses: olafurpg/setup-scala@v10 + with: + java-version: ${{ matrix.java }} + + - name: Cache sbt + uses: actions/cache@v2 + with: + path: | + ~/.sbt + ~/.ivy2/cache + ~/.coursier/cache/v1 + ~/.cache/coursier/v1 + ~/AppData/Local/Coursier/Cache/v1 + ~/Library/Caches/Coursier/v1 + key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} + + - name: Check that workflows are up to date + run: sbt ++${{ matrix.scala }} githubWorkflowCheck + + - name: Build project + run: sbt ++${{ matrix.scala }} test + + - name: Compress target directories + run: tar cf targets.tar bootstrap3_scalatags/target fomanticui_scalatags/target bootstrap4_scalatags/target bulma_scalatags/target bootstrap3_scalajsreact/target fontawesome_scalatags/target target bulma_scalajsreact/target bootstrap4_scalajsreact/target fontawesome_scalajsreact/target semanticui_scalajsreact/target semanticui_scalatags/target fomanticui_scalajsreact/target project/target + + - name: Upload target directories + uses: actions/upload-artifact@v2 + with: + name: target-${{ matrix.os }}-${{ matrix.scala }}-${{ matrix.java }} + path: targets.tar + + publish: + name: Publish Artifacts + needs: [build] + if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v')) + strategy: + matrix: + os: [ubuntu-latest] + scala: [2.13.2] + java: [adopt@1.8] + runs-on: ${{ matrix.os }} + steps: + - name: Checkout current branch (full) + uses: actions/checkout@v2 + with: + fetch-depth: 0 + + - name: Setup Java and Scala + uses: olafurpg/setup-scala@v10 + with: + java-version: ${{ matrix.java }} + + - name: Cache sbt + uses: actions/cache@v2 + with: + path: | + ~/.sbt + ~/.ivy2/cache + ~/.coursier/cache/v1 + ~/.cache/coursier/v1 + ~/AppData/Local/Coursier/Cache/v1 + ~/Library/Caches/Coursier/v1 + key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} + + - name: Download target directories (2.12.11) + uses: actions/download-artifact@v2 + with: + name: target-${{ matrix.os }}-2.12.11-${{ matrix.java }} + + - name: Inflate target directories (2.12.11) + run: | + tar xf targets.tar + rm targets.tar + + - name: Download target directories (2.13.2) + uses: actions/download-artifact@v2 + with: + name: target-${{ matrix.os }}-2.13.2-${{ matrix.java }} + + - name: Inflate target directories (2.13.2) + run: | + tar xf targets.tar + rm targets.tar + + - env: + PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }} + PGP_SECRET: ${{ secrets.PGP_SECRET }} + SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} + SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} + run: sbt ++${{ matrix.scala }} ci-release \ No newline at end of file diff --git a/.github/workflows/clean.yml b/.github/workflows/clean.yml new file mode 100644 index 0000000..b535fcc --- /dev/null +++ b/.github/workflows/clean.yml @@ -0,0 +1,59 @@ +# This file was automatically generated by sbt-github-actions using the +# githubWorkflowGenerate task. You should add and commit this file to +# your git repository. It goes without saying that you shouldn't edit +# this file by hand! Instead, if you wish to make changes, you should +# change your sbt build configuration to revise the workflow description +# to meet your needs, then regenerate this file. + +name: Clean + +on: push + +jobs: + delete-artifacts: + name: Delete Artifacts + runs-on: ubuntu-latest + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + steps: + - name: Delete artifacts + run: | + # Customize those three lines with your repository and credentials: + REPO=${GITHUB_API_URL}/repos/${{ github.repository }} + + # A shortcut to call GitHub API. + ghapi() { curl --silent --location --user _:$GITHUB_TOKEN "$@"; } + + # A temporary file which receives HTTP response headers. + TMPFILE=/tmp/tmp.$$ + + # An associative array, key: artifact name, value: number of artifacts of that name. + declare -A ARTCOUNT + + # Process all artifacts on this repository, loop on returned "pages". + URL=$REPO/actions/artifacts + while [[ -n "$URL" ]]; do + + # Get current page, get response headers in a temporary file. + JSON=$(ghapi --dump-header $TMPFILE "$URL") + + # Get URL of next page. Will be empty if we are at the last page. + URL=$(grep '^Link:' "$TMPFILE" | tr ',' '\n' | grep 'rel="next"' | head -1 | sed -e 's/.*.*//') + rm -f $TMPFILE + + # Number of artifacts on this page: + COUNT=$(( $(jq <<<$JSON -r '.artifacts | length') )) + + # Loop on all artifacts on this page. + for ((i=0; $i < $COUNT; i++)); do + + # Get name of artifact and count instances of this name. + name=$(jq <<<$JSON -r ".artifacts[$i].name?") + ARTCOUNT[$name]=$(( $(( ${ARTCOUNT[$name]} )) + 1)) + + id=$(jq <<<$JSON -r ".artifacts[$i].id?") + size=$(( $(jq <<<$JSON -r ".artifacts[$i].size_in_bytes?") )) + printf "Deleting '%s' #%d, %'d bytes\n" $name ${ARTCOUNT[$name]} $size + ghapi -X DELETE $REPO/actions/artifacts/$id + done + done \ No newline at end of file diff --git a/.mergify.yml b/.mergify.yml new file mode 100644 index 0000000..1f8a1f6 --- /dev/null +++ b/.mergify.yml @@ -0,0 +1,10 @@ +defaults: {} +pull_request_rules: + - name: Automatically merge successful scala-steward PRs + conditions: + - author=scala-steward + - check-success=Build and Test (ubuntu-latest, 2.12.11, adopt@1.8) + - check-success=Build and Test (ubuntu-latest, 2.13.2, adopt@1.8) + actions: + merge: + strict: true diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 8d94c2b..0000000 --- a/.travis.yml +++ /dev/null @@ -1,15 +0,0 @@ -jdk: - - openjdk8 -language: scala - -env: - - SCALAJS_VERSION=0.6.33 - - SCALAJS_VERSION=1.3.0 - -script: "sbt +test" - -deploy: - provider: script - script: sbt +publish - on: - tags: true diff --git a/bintray.sbt b/bintray.sbt deleted file mode 100644 index fb154da..0000000 --- a/bintray.sbt +++ /dev/null @@ -1,11 +0,0 @@ -ThisBuild / publishMavenStyle := true -ThisBuild / publishTo := Some("bintray" at "https://api.bintray.com/maven/naftoligug/maven/css-dsl") - -sys.env.get("BINTRAYKEY").toSeq.map { key => - ThisBuild / credentials += Credentials( - "Bintray API Realm", - "api.bintray.com", - "naftoligug", - key - ) -} diff --git a/ci.sbt b/ci.sbt new file mode 100644 index 0000000..65cf951 --- /dev/null +++ b/ci.sbt @@ -0,0 +1,24 @@ +inThisBuild(List( + homepage := Some(url("https://github.com/nafg/mergify-yaml")), + licenses := List("Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0")), + developers := List( + Developer("nafg", "Naftoli Gugenheim", "98384+nafg@users.noreply.github.com", url("https://github.com/nafg")) + ), + dynverGitDescribeOutput ~= (_.map(o => o.copy(dirtySuffix = sbtdynver.GitDirtySuffix("")))), + dynverSonatypeSnapshots := true, + githubWorkflowTargetTags ++= Seq("v*"), + githubWorkflowPublishTargetBranches := Seq(RefPredicate.StartsWith(Ref.Tag("v"))), + githubWorkflowPublish := Seq( + WorkflowStep.Sbt( + List("ci-release"), + env = Map( + "PGP_PASSPHRASE" -> "${{ secrets.PGP_PASSPHRASE }}", + "PGP_SECRET" -> "${{ secrets.PGP_SECRET }}", + "SONATYPE_PASSWORD" -> "${{ secrets.SONATYPE_PASSWORD }}", + "SONATYPE_USERNAME" -> "${{ secrets.SONATYPE_USERNAME }}" + ) + ) + ) +)) + +sonatypeProfileName := "io.github.nafg" diff --git a/project/WriteMergify.scala b/project/WriteMergify.scala new file mode 100644 index 0000000..f99df17 --- /dev/null +++ b/project/WriteMergify.scala @@ -0,0 +1,28 @@ +import io.github.nafg.mergify.dsl._ +import sbt._ +import sbtghactions.GenerativePlugin +import sbtghactions.GenerativePlugin.autoImport._ + + +object WriteMergify extends AutoPlugin { + override def requires = GenerativePlugin + + override def trigger = allRequirements + + override def projectSettings = Seq( + githubWorkflowGenerate := { + githubWorkflowGenerate.value + for (job <- githubWorkflowGeneratedCI.value if job.id == "build") + IO.write( + file(".mergify.yml"), + mergify + .withRule("Automatically merge successful scala-steward PRs")( + (Attr.Author :== "scala-steward") +: + (for (o <- job.oses; s <- job.scalas; v <- job.javas) yield + Attr.CheckSuccess :== s"${job.name} ($o, $s, $v)"): _* + )(Action.Merge(strict = true)) + .toYaml + ) + } + ) +} diff --git a/project/plugins.sbt b/project/plugins.sbt index 6cd494f..3814358 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,10 +1,5 @@ -val sjsVer = sys.env.getOrElse("SCALAJS_VERSION", "1.3.0") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % sjsVer) - -sjsVer.split("\\.") match { - case Array("0", "6", _) => addSbtPlugin("ch.epfl.scala" % s"sbt-scalajs-bundler-sjs06" % "0.19.0") - case Array("1", "0" | "1" | "2", _) => addSbtPlugin("ch.epfl.scala" % s"sbt-scalajs-bundler" % "0.19.0") - case Array("1", "3", _) => addSbtPlugin("ch.epfl.scala" % s"sbt-scalajs-bundler" % "0.20.0") -} - -addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.1") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.5.0") +addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") +addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.6") +addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.10.1") +libraryDependencies += "io.github.nafg.mergify" %% "mergify-writer" % "0.2.1" From 1d0aa3ac89110b37f870e46309bdf941e868028d Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 22 Mar 2021 16:35:26 +0100 Subject: [PATCH 032/326] Update ph-css to 6.3.0 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 1cc1a43..3e93acf 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.10" -libraryDependencies += "com.helger" % "ph-css" % "6.2.4" +libraryDependencies += "com.helger" % "ph-css" % "6.3.0" From c26fe182f896356be0089d0383e6a554d5489df2 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 22 Mar 2021 02:23:15 +0100 Subject: [PATCH 033/326] Update scala-library to 2.12.13 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 71577b0..6999f30 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ import scala.sys.process.stringToProcess ThisBuild / organization := "io.github.nafg.css-dsl" -ThisBuild / crossScalaVersions := Seq("2.12.11", "2.13.2") +ThisBuild / crossScalaVersions := Seq("2.12.13", "2.13.2") ThisBuild / scalaVersion := (ThisBuild / crossScalaVersions).value.last ThisBuild / scalacOptions += "-feature" ThisBuild / scalacOptions += "-deprecation" From 807b684993bfba12a72006eafdd53a391aa27812 Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Mon, 22 Mar 2021 11:37:16 -0400 Subject: [PATCH 034/326] run sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 8 ++++---- .mergify.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d37069..f0e9de3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.11, 2.13.2] + scala: [2.12.13, 2.13.2] java: [adopt@1.8] runs-on: ${{ matrix.os }} steps: @@ -97,12 +97,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.12.11) + - name: Download target directories (2.12.13) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.12.11-${{ matrix.java }} + name: target-${{ matrix.os }}-2.12.13-${{ matrix.java }} - - name: Inflate target directories (2.12.11) + - name: Inflate target directories (2.12.13) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 1f8a1f6..8eddab8 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -3,7 +3,7 @@ pull_request_rules: - name: Automatically merge successful scala-steward PRs conditions: - author=scala-steward - - check-success=Build and Test (ubuntu-latest, 2.12.11, adopt@1.8) + - check-success=Build and Test (ubuntu-latest, 2.12.13, adopt@1.8) - check-success=Build and Test (ubuntu-latest, 2.13.2, adopt@1.8) actions: merge: From 24445f0670697754682b0c3b9360c13bb14591c6 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 22 Mar 2021 02:23:23 +0100 Subject: [PATCH 035/326] Update scala-library to 2.13.5 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 6999f30..992da77 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ import scala.sys.process.stringToProcess ThisBuild / organization := "io.github.nafg.css-dsl" -ThisBuild / crossScalaVersions := Seq("2.12.13", "2.13.2") +ThisBuild / crossScalaVersions := Seq("2.12.13", "2.13.5") ThisBuild / scalaVersion := (ThisBuild / crossScalaVersions).value.last ThisBuild / scalacOptions += "-feature" ThisBuild / scalacOptions += "-deprecation" From 7ddd7d73b73b34a0c9a49f06cf3bc798bed2d236 Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Mon, 22 Mar 2021 11:40:58 -0400 Subject: [PATCH 036/326] run sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 10 +++++----- .mergify.yml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f0e9de3..d647037 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.13, 2.13.2] + scala: [2.12.13, 2.13.5] java: [adopt@1.8] runs-on: ${{ matrix.os }} steps: @@ -71,7 +71,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.2] + scala: [2.13.5] java: [adopt@1.8] runs-on: ${{ matrix.os }} steps: @@ -107,12 +107,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.2) + - name: Download target directories (2.13.5) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.2-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.5-${{ matrix.java }} - - name: Inflate target directories (2.13.2) + - name: Inflate target directories (2.13.5) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 8eddab8..0c7db39 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -4,7 +4,7 @@ pull_request_rules: conditions: - author=scala-steward - check-success=Build and Test (ubuntu-latest, 2.12.13, adopt@1.8) - - check-success=Build and Test (ubuntu-latest, 2.13.2, adopt@1.8) + - check-success=Build and Test (ubuntu-latest, 2.13.5, adopt@1.8) actions: merge: strict: true From 576598e3fb4387b8d78cbec9b614dadc6e83608f Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 23 Mar 2021 10:53:16 +0100 Subject: [PATCH 037/326] Update sbt-ci-release to 1.5.7 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 3814358..e091f77 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.5.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") -addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.6") +addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.7") addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.10.1") libraryDependencies += "io.github.nafg.mergify" %% "mergify-writer" % "0.2.1" From e5ba1331f02e6a8f83751a5e3613619cbd54c98c Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 25 Mar 2021 12:37:04 +0100 Subject: [PATCH 038/326] Update scalatags to 0.9.4 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 992da77..6d74d23 100644 --- a/build.sbt +++ b/build.sbt @@ -28,7 +28,7 @@ def scalaJsReactSettings(config: CssDslConfig) = Seq( ) def scalatagsSettings(config: CssDslConfig) = Seq( - libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.9.3", + libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.9.4", cssVariant := TargetImpl.Scalatags, cssDslConfig := config ) From 9820ebbdc36640c0cf846fa95f5618477a8dbbdb Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 31 Mar 2021 19:04:23 +0200 Subject: [PATCH 039/326] Update sbt-scalajs, scalajs-compiler, ... to 1.5.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index e091f77..10541a1 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.5.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.5.1") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.7") addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.10.1") From 2979826c94fcf040b1c65522a80998a627179217 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 1 Apr 2021 19:11:48 +0200 Subject: [PATCH 040/326] Update scalameta to 4.4.11 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 3e93acf..d6b19b3 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.10" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.11" libraryDependencies += "com.helger" % "ph-css" % "6.3.0" From eba18ee6714d66d305b13062751e06b5e6b91d77 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 4 Apr 2021 23:07:24 +0200 Subject: [PATCH 041/326] Update sbt to 1.5.0 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index ddffd37..b366316 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.4.9 +sbt.version = 1.5.0 From 09b240c498ed11b96e46815bec969c914e88ced2 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 8 Apr 2021 20:44:37 +0200 Subject: [PATCH 042/326] Update scalameta to 4.4.12 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index d6b19b3..bc1bd97 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.11" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.12" libraryDependencies += "com.helger" % "ph-css" % "6.3.0" From f7f47dbf557806e05c8bdc36c9afa9b9854619e0 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 9 Apr 2021 20:32:48 +0200 Subject: [PATCH 043/326] Update scalameta to 4.4.13 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index bc1bd97..02e0f4a 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.12" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.13" libraryDependencies += "com.helger" % "ph-css" % "6.3.0" From 36f856557384f436f7fd40e99bb9f062084f5572 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 22 Apr 2021 00:34:07 +0200 Subject: [PATCH 044/326] Update scalameta to 4.4.14 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 02e0f4a..e8a95a5 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.13" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.14" libraryDependencies += "com.helger" % "ph-css" % "6.3.0" From 9712c0d10ebe665aa9de757d9bf7dfb541ea1aa3 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 26 Apr 2021 14:25:32 +0200 Subject: [PATCH 045/326] Update sbt to 1.5.1 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index b366316..7bb94aa 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.5.0 +sbt.version = 1.5.1 From 1094978c2e6829fd69f5c34ce55dd2de615cbd7c Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 26 Apr 2021 21:42:23 +0200 Subject: [PATCH 046/326] Update scalameta to 4.4.15 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index e8a95a5..17fd31d 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.14" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.15" libraryDependencies += "com.helger" % "ph-css" % "6.3.0" From c0e501476019ed8da24f4ddc7494a53a6c7b2a05 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 3 May 2021 02:48:53 +0200 Subject: [PATCH 047/326] Update ph-css to 6.3.1 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 17fd31d..1cf55cf 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.15" -libraryDependencies += "com.helger" % "ph-css" % "6.3.0" +libraryDependencies += "com.helger" % "ph-css" % "6.3.1" From 0ab30f3f60784587ec5ee8dcd9457096e6cd7f38 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 8 May 2021 00:34:34 +0200 Subject: [PATCH 048/326] Update scalameta to 4.4.16 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 1cf55cf..63dec65 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.15" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.16" libraryDependencies += "com.helger" % "ph-css" % "6.3.1" From 66992d85573fa6145797f34e19bce64c2df58215 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 10 May 2021 02:39:20 +0200 Subject: [PATCH 049/326] Update sbt to 1.5.2 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 7bb94aa..1a1496c 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.5.1 +sbt.version = 1.5.2 From 93c94c6a366c0031f5f3c8952733ca03594a7fa6 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 12 May 2021 22:36:13 +0200 Subject: [PATCH 050/326] Update scalameta to 4.4.17 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 63dec65..47cc43d 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.16" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.17" libraryDependencies += "com.helger" % "ph-css" % "6.3.1" From fd964ac2379a239d8a0ef4478817216c6e276da1 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 17 May 2021 13:14:30 +0200 Subject: [PATCH 051/326] Update scala-library to 2.13.6 --- .github/workflows/ci.yml | 4 ++-- build.sbt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d647037..f4a46ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.13, 2.13.5] + scala: [2.12.13, 2.13.6] java: [adopt@1.8] runs-on: ${{ matrix.os }} steps: @@ -71,7 +71,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.5] + scala: [2.13.6] java: [adopt@1.8] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index 6d74d23..c8025df 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ import scala.sys.process.stringToProcess ThisBuild / organization := "io.github.nafg.css-dsl" -ThisBuild / crossScalaVersions := Seq("2.12.13", "2.13.5") +ThisBuild / crossScalaVersions := Seq("2.12.13", "2.13.6") ThisBuild / scalaVersion := (ThisBuild / crossScalaVersions).value.last ThisBuild / scalacOptions += "-feature" ThisBuild / scalacOptions += "-deprecation" From 825449479f7789d47c5ee0affa428c6b8847ca8c Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 17 May 2021 13:15:14 +0200 Subject: [PATCH 052/326] Regenerate workflow with sbt-github-actions --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4a46ae..fceff84 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -107,12 +107,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.5) + - name: Download target directories (2.13.6) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.5-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.6-${{ matrix.java }} - - name: Inflate target directories (2.13.5) + - name: Inflate target directories (2.13.6) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 0c7db39..585738e 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -4,7 +4,7 @@ pull_request_rules: conditions: - author=scala-steward - check-success=Build and Test (ubuntu-latest, 2.12.13, adopt@1.8) - - check-success=Build and Test (ubuntu-latest, 2.13.5, adopt@1.8) + - check-success=Build and Test (ubuntu-latest, 2.13.6, adopt@1.8) actions: merge: strict: true From d2a200d43cb4ce7ee51876c5f2461cdc8b1fb054 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 17 May 2021 23:47:57 +0200 Subject: [PATCH 053/326] Update scalameta to 4.4.18 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 47cc43d..fbe5e8c 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.17" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.18" libraryDependencies += "com.helger" % "ph-css" % "6.3.1" From 71e992ad1073538ae2dfc28ade06ff483bbf1b04 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 24 May 2021 03:03:05 +0200 Subject: [PATCH 054/326] Update sbt-github-actions to 0.11.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 10541a1..1d49844 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.5.1") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.7") -addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.10.1") +addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.11.0") libraryDependencies += "io.github.nafg.mergify" %% "mergify-writer" % "0.2.1" From 46c6c81217cb89a8cc40538b33abbce49092afe9 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 24 May 2021 03:03:51 +0200 Subject: [PATCH 055/326] Regenerate workflow with sbt-github-actions --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fceff84..aa14e2d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,9 +9,9 @@ name: Continuous Integration on: pull_request: - branches: ['*'] + branches: ['**'] push: - branches: ['*'] + branches: ['**'] tags: [v*] env: @@ -50,10 +50,10 @@ jobs: key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - name: Check that workflows are up to date - run: sbt ++${{ matrix.scala }} githubWorkflowCheck + run: sbt --client '++${{ matrix.scala }}; githubWorkflowCheck' - name: Build project - run: sbt ++${{ matrix.scala }} test + run: sbt --client '++${{ matrix.scala }}; test' - name: Compress target directories run: tar cf targets.tar bootstrap3_scalatags/target fomanticui_scalatags/target bootstrap4_scalatags/target bulma_scalatags/target bootstrap3_scalajsreact/target fontawesome_scalatags/target target bulma_scalajsreact/target bootstrap4_scalajsreact/target fontawesome_scalajsreact/target semanticui_scalajsreact/target semanticui_scalatags/target fomanticui_scalajsreact/target project/target @@ -122,4 +122,4 @@ jobs: PGP_SECRET: ${{ secrets.PGP_SECRET }} SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} - run: sbt ++${{ matrix.scala }} ci-release \ No newline at end of file + run: sbt --client '++${{ matrix.scala }}; ci-release' \ No newline at end of file From 1400eb81e8c8c69def90e0d456ad5178fbd5b3bc Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 26 May 2021 02:39:28 +0200 Subject: [PATCH 056/326] Update ph-css to 6.3.2 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index fbe5e8c..52f00e9 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.18" -libraryDependencies += "com.helger" % "ph-css" % "6.3.1" +libraryDependencies += "com.helger" % "ph-css" % "6.3.2" From d6bf787b765eaaf4a3474106871e319844070cef Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 28 May 2021 13:02:55 +0200 Subject: [PATCH 057/326] Update scala-library to 2.12.14 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa14e2d..98f05a0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.13, 2.13.6] + scala: [2.12.14, 2.13.6] java: [adopt@1.8] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index c8025df..a74a8fd 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ import scala.sys.process.stringToProcess ThisBuild / organization := "io.github.nafg.css-dsl" -ThisBuild / crossScalaVersions := Seq("2.12.13", "2.13.6") +ThisBuild / crossScalaVersions := Seq("2.12.14", "2.13.6") ThisBuild / scalaVersion := (ThisBuild / crossScalaVersions).value.last ThisBuild / scalacOptions += "-feature" ThisBuild / scalacOptions += "-deprecation" From d16bfb2f27500742bb57eff8ecf7c3ca250d814c Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 28 May 2021 13:03:41 +0200 Subject: [PATCH 058/326] Regenerate workflow with sbt-github-actions --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 98f05a0..e2cc80e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -97,12 +97,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.12.13) + - name: Download target directories (2.12.14) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.12.13-${{ matrix.java }} + name: target-${{ matrix.os }}-2.12.14-${{ matrix.java }} - - name: Inflate target directories (2.12.13) + - name: Inflate target directories (2.12.14) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 585738e..80d82e5 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -3,7 +3,7 @@ pull_request_rules: - name: Automatically merge successful scala-steward PRs conditions: - author=scala-steward - - check-success=Build and Test (ubuntu-latest, 2.12.13, adopt@1.8) + - check-success=Build and Test (ubuntu-latest, 2.12.14, adopt@1.8) - check-success=Build and Test (ubuntu-latest, 2.13.6, adopt@1.8) actions: merge: From 1b1e177918b529890766925575bc96175f3bae38 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 28 May 2021 13:03:45 +0200 Subject: [PATCH 059/326] Update scalameta to 4.4.19 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 52f00e9..3cf2ed8 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.18" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.19" libraryDependencies += "com.helger" % "ph-css" % "6.3.2" From 6a20f401dfd7f818a24b9e303dfba18a94eccd20 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 28 May 2021 20:03:37 +0200 Subject: [PATCH 060/326] Update scalameta to 4.4.20 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 3cf2ed8..20dd19d 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.19" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.20" libraryDependencies += "com.helger" % "ph-css" % "6.3.2" From dcaf3142534cb2e2e952e5bf4eb18c7d601d9438 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 31 May 2021 12:35:54 +0200 Subject: [PATCH 061/326] Update ph-css to 6.3.3 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 20dd19d..e8bc29a 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.20" -libraryDependencies += "com.helger" % "ph-css" % "6.3.2" +libraryDependencies += "com.helger" % "ph-css" % "6.3.3" From 00d2ed3a437da633b33d449eb2d57894ab6f63ec Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 1 Jun 2021 07:55:17 +0200 Subject: [PATCH 062/326] Update sbt to 1.5.3 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 1a1496c..f58f9dd 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.5.2 +sbt.version = 1.5.3 From 7439441dda469733f4ff15ab94b719bfe2aa5114 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 1 Jun 2021 23:29:24 +0200 Subject: [PATCH 063/326] Update sbt-github-actions to 0.12.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 1d49844..ceb2763 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.5.1") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.7") -addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.11.0") +addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.12.0") libraryDependencies += "io.github.nafg.mergify" %% "mergify-writer" % "0.2.1" From ddf9f1063fd54d02963ae245eddd93a6afbef210 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 1 Jun 2021 23:30:09 +0200 Subject: [PATCH 064/326] Regenerate workflow with sbt-github-actions --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2cc80e..3b1efb4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: fetch-depth: 0 - name: Setup Java and Scala - uses: olafurpg/setup-scala@v10 + uses: olafurpg/setup-scala@v12 with: java-version: ${{ matrix.java }} @@ -81,7 +81,7 @@ jobs: fetch-depth: 0 - name: Setup Java and Scala - uses: olafurpg/setup-scala@v10 + uses: olafurpg/setup-scala@v12 with: java-version: ${{ matrix.java }} From 35d59a7ee33da0fcbd58cde2ca6f8fb2f8b1a724 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 5 Jun 2021 22:29:43 +0200 Subject: [PATCH 065/326] Update scalameta to 4.4.21 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index e8bc29a..23823c0 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.20" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.21" libraryDependencies += "com.helger" % "ph-css" % "6.3.3" From 2d8f031f84728e0b81f9ec890116e9417398b737 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 8 Jun 2021 18:58:44 +0200 Subject: [PATCH 066/326] Update sbt-scalajs, scalajs-library, ... to 1.6.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index ceb2763..90089b2 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.5.1") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.6.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.7") addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.12.0") From 311459750185df4c4bcc367ff8c26c7ade55a87f Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 9 Jun 2021 22:38:50 +0200 Subject: [PATCH 067/326] Update ph-css to 6.3.4 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 23823c0..d62be76 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.21" -libraryDependencies += "com.helger" % "ph-css" % "6.3.3" +libraryDependencies += "com.helger" % "ph-css" % "6.3.4" From 594e56a8e1df550a128bc98dab9161a9613b1d51 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 14 Jun 2021 08:00:11 +0200 Subject: [PATCH 068/326] Update sbt to 1.5.4 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index f58f9dd..7d9ef1e 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.5.3 +sbt.version = 1.5.4 From be3484f5f124127bddc68f6324485625d5ca911f Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 21 Jun 2021 18:44:05 +0200 Subject: [PATCH 069/326] Update scalameta to 4.4.22 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index d62be76..ea481e5 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.21" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.22" libraryDependencies += "com.helger" % "ph-css" % "6.3.4" From a6308c7269069f7e8a72198169334adf999f04e1 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 29 Jun 2021 04:24:04 +0200 Subject: [PATCH 070/326] Update scalameta to 4.4.23 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index ea481e5..12859f6 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.22" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.23" libraryDependencies += "com.helger" % "ph-css" % "6.3.4" From bbc501901629bd81eeb4a53d2fabca1866e8f04f Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 12 Jul 2021 12:09:15 +0200 Subject: [PATCH 071/326] Update sbt to 1.5.5 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 7d9ef1e..7a7e80d 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.5.4 +sbt.version = 1.5.5 From 2622071b5ee9c89260c31435b8133f292e8cb68f Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 13 Jul 2021 14:29:06 +0200 Subject: [PATCH 072/326] Update scalameta to 4.4.24 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 12859f6..9838525 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.23" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.24" libraryDependencies += "com.helger" % "ph-css" % "6.3.4" From 8a4947d5f35568a2bcb8f861b8e8feb0e9430e48 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 30 Jul 2021 06:48:12 +0200 Subject: [PATCH 073/326] Update scalameta to 4.4.25 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 9838525..1d448e7 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.24" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.25" libraryDependencies += "com.helger" % "ph-css" % "6.3.4" From 356417417241757a61bc96f7404d5aca9bbb91d6 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 3 Aug 2021 22:58:11 +0200 Subject: [PATCH 074/326] Update sbt-scalajs, scalajs-compiler, ... to 1.7.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 90089b2..f563ef2 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.6.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.7") addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.12.0") From 47264958152ce750778abe3c7b4de2095d0cff66 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 5 Aug 2021 20:47:43 +0200 Subject: [PATCH 075/326] Update scalameta to 4.4.26 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 1d448e7..583a38c 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.25" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.26" libraryDependencies += "com.helger" % "ph-css" % "6.3.4" From 6d1a687632a841b0fb91425c381fb6c9e2015862 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 15 Aug 2021 01:46:50 +0200 Subject: [PATCH 076/326] Update sbt-github-actions to 0.13.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index f563ef2..9920e92 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.7") -addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.12.0") +addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.13.0") libraryDependencies += "io.github.nafg.mergify" %% "mergify-writer" % "0.2.1" From 1765ed6188dde95bbd5826440d21bed0c1ffdb05 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 15 Aug 2021 01:47:34 +0200 Subject: [PATCH 077/326] Regenerate workflow with sbt-github-actions --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/clean.yml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b1efb4..5a3d8d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: fetch-depth: 0 - name: Setup Java and Scala - uses: olafurpg/setup-scala@v12 + uses: olafurpg/setup-scala@v13 with: java-version: ${{ matrix.java }} @@ -50,10 +50,10 @@ jobs: key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - name: Check that workflows are up to date - run: sbt --client '++${{ matrix.scala }}; githubWorkflowCheck' + run: sbt ++${{ matrix.scala }} githubWorkflowCheck - name: Build project - run: sbt --client '++${{ matrix.scala }}; test' + run: sbt ++${{ matrix.scala }} test - name: Compress target directories run: tar cf targets.tar bootstrap3_scalatags/target fomanticui_scalatags/target bootstrap4_scalatags/target bulma_scalatags/target bootstrap3_scalajsreact/target fontawesome_scalatags/target target bulma_scalajsreact/target bootstrap4_scalajsreact/target fontawesome_scalajsreact/target semanticui_scalajsreact/target semanticui_scalatags/target fomanticui_scalajsreact/target project/target @@ -81,7 +81,7 @@ jobs: fetch-depth: 0 - name: Setup Java and Scala - uses: olafurpg/setup-scala@v12 + uses: olafurpg/setup-scala@v13 with: java-version: ${{ matrix.java }} @@ -122,4 +122,4 @@ jobs: PGP_SECRET: ${{ secrets.PGP_SECRET }} SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} - run: sbt --client '++${{ matrix.scala }}; ci-release' \ No newline at end of file + run: sbt ++${{ matrix.scala }} ci-release diff --git a/.github/workflows/clean.yml b/.github/workflows/clean.yml index b535fcc..547aaa4 100644 --- a/.github/workflows/clean.yml +++ b/.github/workflows/clean.yml @@ -56,4 +56,4 @@ jobs: printf "Deleting '%s' #%d, %'d bytes\n" $name ${ARTCOUNT[$name]} $size ghapi -X DELETE $REPO/actions/artifacts/$id done - done \ No newline at end of file + done From f3d4a7e622a6a81507fae0fda3b9defe5145df6b Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 14 Sep 2021 23:43:30 +0200 Subject: [PATCH 078/326] Update scala-library to 2.12.15 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a3d8d2..8f44fb9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.14, 2.13.6] + scala: [2.12.15, 2.13.6] java: [adopt@1.8] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index a74a8fd..1096249 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ import scala.sys.process.stringToProcess ThisBuild / organization := "io.github.nafg.css-dsl" -ThisBuild / crossScalaVersions := Seq("2.12.14", "2.13.6") +ThisBuild / crossScalaVersions := Seq("2.12.15", "2.13.6") ThisBuild / scalaVersion := (ThisBuild / crossScalaVersions).value.last ThisBuild / scalacOptions += "-feature" ThisBuild / scalacOptions += "-deprecation" From 245e7bcdd631d965c57d61f5280b2d3c93a87913 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 14 Sep 2021 23:44:14 +0200 Subject: [PATCH 079/326] Regenerate workflow with sbt-github-actions --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f44fb9..578dfad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -97,12 +97,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.12.14) + - name: Download target directories (2.12.15) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.12.14-${{ matrix.java }} + name: target-${{ matrix.os }}-2.12.15-${{ matrix.java }} - - name: Inflate target directories (2.12.14) + - name: Inflate target directories (2.12.15) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 80d82e5..990a222 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -3,7 +3,7 @@ pull_request_rules: - name: Automatically merge successful scala-steward PRs conditions: - author=scala-steward - - check-success=Build and Test (ubuntu-latest, 2.12.14, adopt@1.8) + - check-success=Build and Test (ubuntu-latest, 2.12.15, adopt@1.8) - check-success=Build and Test (ubuntu-latest, 2.13.6, adopt@1.8) actions: merge: From 05facbee05bbd3dbafde041cf57b9276e2e85fb9 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 15 Sep 2021 16:40:33 +0200 Subject: [PATCH 080/326] Update scalameta to 4.4.28 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 583a38c..53e9192 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.26" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.28" libraryDependencies += "com.helger" % "ph-css" % "6.3.4" From 07c1d9c63af9dedde37329057d0e66b49a4febae Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 22 Sep 2021 21:23:21 +0200 Subject: [PATCH 081/326] Update sbt-ci-release to 1.5.9 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 9920e92..0cc8b2e 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") -addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.7") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.9") addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.13.0") libraryDependencies += "io.github.nafg.mergify" %% "mergify-writer" % "0.2.1" From 9f43d733d08adec75290550d05410b35d33fa946 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 6 Oct 2021 21:35:22 +0200 Subject: [PATCH 082/326] Update sbt-scalajs, scalajs-compiler, ... to 1.7.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 0cc8b2e..addb75c 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.1") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.9") addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.13.0") From 91bfed3b5b8ea53112d6963e7e2eae1878e7cd8c Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 14 Oct 2021 16:43:20 +0200 Subject: [PATCH 083/326] Update sbt-ci-release to 1.5.10 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index addb75c..741a88f 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.1") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") -addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.9") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.13.0") libraryDependencies += "io.github.nafg.mergify" %% "mergify-writer" % "0.2.1" From 9347d085ec445fe2609946d793d5482d6b8a7ef3 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 18 Oct 2021 23:13:27 +0200 Subject: [PATCH 084/326] Update scalameta to 4.4.29 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 53e9192..f6fa752 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.28" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.29" libraryDependencies += "com.helger" % "ph-css" % "6.3.4" From 856cf01787b612040e131261e1b8ca78c3257842 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 22 Oct 2021 16:41:25 +0200 Subject: [PATCH 085/326] Update scalatags to 0.10.0 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1096249..599c7d9 100644 --- a/build.sbt +++ b/build.sbt @@ -28,7 +28,7 @@ def scalaJsReactSettings(config: CssDslConfig) = Seq( ) def scalatagsSettings(config: CssDslConfig) = Seq( - libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.9.4", + libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.10.0", cssVariant := TargetImpl.Scalatags, cssDslConfig := config ) From 31722306271ad54f75436eb5767956aec96efea9 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 1 Nov 2021 18:15:59 +0100 Subject: [PATCH 086/326] Update scala-library to 2.13.7 --- .github/workflows/ci.yml | 4 ++-- build.sbt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 578dfad..7fc1bf9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.15, 2.13.6] + scala: [2.12.15, 2.13.7] java: [adopt@1.8] runs-on: ${{ matrix.os }} steps: @@ -71,7 +71,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.6] + scala: [2.13.7] java: [adopt@1.8] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index 599c7d9..eaead3f 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ import scala.sys.process.stringToProcess ThisBuild / organization := "io.github.nafg.css-dsl" -ThisBuild / crossScalaVersions := Seq("2.12.15", "2.13.6") +ThisBuild / crossScalaVersions := Seq("2.12.15", "2.13.7") ThisBuild / scalaVersion := (ThisBuild / crossScalaVersions).value.last ThisBuild / scalacOptions += "-feature" ThisBuild / scalacOptions += "-deprecation" From 6255120577ac5284a7f56163c2a3ff07095139bf Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 1 Nov 2021 18:16:55 +0100 Subject: [PATCH 087/326] Regenerate workflow with sbt-github-actions --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7fc1bf9..8f87f81 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -107,12 +107,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.6) + - name: Download target directories (2.13.7) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.6-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.7-${{ matrix.java }} - - name: Inflate target directories (2.13.6) + - name: Inflate target directories (2.13.7) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 990a222..f803468 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -4,7 +4,7 @@ pull_request_rules: conditions: - author=scala-steward - check-success=Build and Test (ubuntu-latest, 2.12.15, adopt@1.8) - - check-success=Build and Test (ubuntu-latest, 2.13.6, adopt@1.8) + - check-success=Build and Test (ubuntu-latest, 2.13.7, adopt@1.8) actions: merge: strict: true From e82a992a620b1a4a76aecbad988a4cbb428ba541 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 2 Nov 2021 19:34:38 +0100 Subject: [PATCH 088/326] Update scalameta to 4.4.30 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index f6fa752..6ecf854 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.29" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.30" libraryDependencies += "com.helger" % "ph-css" % "6.3.4" From 06cf3014df56e1b03dbf248311f4c5b070097119 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 22 Nov 2021 21:17:30 +0100 Subject: [PATCH 089/326] Update ph-css to 6.4.0 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 6ecf854..d658f31 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.30" -libraryDependencies += "com.helger" % "ph-css" % "6.3.4" +libraryDependencies += "com.helger" % "ph-css" % "6.4.0" From b8edbe37de11756a862bd86998837e00cc90648d Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 1 Dec 2021 12:55:29 +0100 Subject: [PATCH 090/326] Update mergify-writer to 0.2.2 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 741a88f..6976d27 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,4 +2,4 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.1") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.13.0") -libraryDependencies += "io.github.nafg.mergify" %% "mergify-writer" % "0.2.1" +libraryDependencies += "io.github.nafg.mergify" %% "mergify-writer" % "0.2.2" From cabe723bc820b42b2ec00b403df19f2899058e4e Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 2 Dec 2021 18:33:39 +0100 Subject: [PATCH 091/326] Update scalatags to 0.11.0 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index eaead3f..fdbeb56 100644 --- a/build.sbt +++ b/build.sbt @@ -28,7 +28,7 @@ def scalaJsReactSettings(config: CssDslConfig) = Seq( ) def scalatagsSettings(config: CssDslConfig) = Seq( - libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.10.0", + libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.11.0", cssVariant := TargetImpl.Scalatags, cssDslConfig := config ) From ba8d4a848226ed7f2d9d2f1c26e60da0121f3f24 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 9 Dec 2021 02:35:28 +0100 Subject: [PATCH 092/326] Update scalameta to 4.4.31 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index d658f31..bb6dfe5 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.30" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.31" libraryDependencies += "com.helger" % "ph-css" % "6.4.0" From eb53e850d9423b1edeb42794139c2c16d8ec45ec Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 11 Dec 2021 11:11:06 +0100 Subject: [PATCH 093/326] Update sbt-scalajs, scalajs-compiler, ... to 1.8.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 6976d27..866b1b2 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.1") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.8.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.13.0") From 1eca5aa77554b70faa8d794e0733e5157374eaba Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 11 Dec 2021 11:11:10 +0100 Subject: [PATCH 094/326] Update sbt to 1.5.6 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 7a7e80d..da9d652 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.5.5 +sbt.version = 1.5.6 From 54296b98b6a62a74e5d02f7098b22c293b081a34 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 16 Dec 2021 02:38:24 +0100 Subject: [PATCH 095/326] Update sbt to 1.5.7 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index da9d652..8378cad 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.5.6 +sbt.version = 1.5.7 From 82c6468a72dfedbda24e752da67f7bea906d532c Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 19 Dec 2021 08:35:07 +0100 Subject: [PATCH 096/326] Update mergify-writer to 0.3.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 866b1b2..cfe7e2f 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,4 +2,4 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.8.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.13.0") -libraryDependencies += "io.github.nafg.mergify" %% "mergify-writer" % "0.2.2" +libraryDependencies += "io.github.nafg.mergify" %% "mergify-writer" % "0.3.0" From d8e4f14bb8fd9480dcb93f0ca5bfaf207184a2bd Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim Date: Sun, 19 Dec 2021 14:45:37 -0500 Subject: [PATCH 097/326] Use sbt-mergify-github-actions --- .github/workflows/ci.yml | 20 ++++++++++++-------- .mergify.yml | 4 ++-- project/WriteMergify.scala | 28 ---------------------------- project/plugins.sbt | 3 +-- 4 files changed, 15 insertions(+), 40 deletions(-) delete mode 100644 project/WriteMergify.scala diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f87f81..cd51e83 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: matrix: os: [ubuntu-latest] scala: [2.12.15, 2.13.7] - java: [adopt@1.8] + java: [temurin@11] runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) @@ -32,10 +32,12 @@ jobs: with: fetch-depth: 0 - - name: Setup Java and Scala - uses: olafurpg/setup-scala@v13 + - name: Setup Java (temurin@11) + if: matrix.java == 'temurin@11' + uses: actions/setup-java@v2 with: - java-version: ${{ matrix.java }} + distribution: temurin + java-version: 11 - name: Cache sbt uses: actions/cache@v2 @@ -72,7 +74,7 @@ jobs: matrix: os: [ubuntu-latest] scala: [2.13.7] - java: [adopt@1.8] + java: [temurin@11] runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) @@ -80,10 +82,12 @@ jobs: with: fetch-depth: 0 - - name: Setup Java and Scala - uses: olafurpg/setup-scala@v13 + - name: Setup Java (temurin@11) + if: matrix.java == 'temurin@11' + uses: actions/setup-java@v2 with: - java-version: ${{ matrix.java }} + distribution: temurin + java-version: 11 - name: Cache sbt uses: actions/cache@v2 diff --git a/.mergify.yml b/.mergify.yml index f803468..8602e29 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -3,8 +3,8 @@ pull_request_rules: - name: Automatically merge successful scala-steward PRs conditions: - author=scala-steward - - check-success=Build and Test (ubuntu-latest, 2.12.15, adopt@1.8) - - check-success=Build and Test (ubuntu-latest, 2.13.7, adopt@1.8) + - check-success=Build and Test (ubuntu-latest, 2.12.15, temurin@11) + - check-success=Build and Test (ubuntu-latest, 2.13.7, temurin@11) actions: merge: strict: true diff --git a/project/WriteMergify.scala b/project/WriteMergify.scala deleted file mode 100644 index f99df17..0000000 --- a/project/WriteMergify.scala +++ /dev/null @@ -1,28 +0,0 @@ -import io.github.nafg.mergify.dsl._ -import sbt._ -import sbtghactions.GenerativePlugin -import sbtghactions.GenerativePlugin.autoImport._ - - -object WriteMergify extends AutoPlugin { - override def requires = GenerativePlugin - - override def trigger = allRequirements - - override def projectSettings = Seq( - githubWorkflowGenerate := { - githubWorkflowGenerate.value - for (job <- githubWorkflowGeneratedCI.value if job.id == "build") - IO.write( - file(".mergify.yml"), - mergify - .withRule("Automatically merge successful scala-steward PRs")( - (Attr.Author :== "scala-steward") +: - (for (o <- job.oses; s <- job.scalas; v <- job.javas) yield - Attr.CheckSuccess :== s"${job.name} ($o, $s, $v)"): _* - )(Action.Merge(strict = true)) - .toYaml - ) - } - ) -} diff --git a/project/plugins.sbt b/project/plugins.sbt index cfe7e2f..80f6ccd 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,4 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.8.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") -addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.13.0") -libraryDependencies += "io.github.nafg.mergify" %% "mergify-writer" % "0.3.0" +addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.3.0") From 5dd67e0ec5ee2ab82cf50f492c7c8d49da5a2888 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 20 Dec 2021 08:34:32 +0100 Subject: [PATCH 098/326] Update sbt-mergify-github-actions to 0.4.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 80f6ccd..cb5eb9a 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.8.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") -addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.3.0") +addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.4.0") From 61cb13188d1fa38ed23f5d06a20b5a302f042d34 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 20 Dec 2021 08:35:32 +0100 Subject: [PATCH 099/326] Regenerate workflow with sbt-github-actions --- .mergify.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.mergify.yml b/.mergify.yml index 8602e29..d380ab6 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -1,4 +1,7 @@ defaults: {} +queue_rules: + - name: default + conditions: [] pull_request_rules: - name: Automatically merge successful scala-steward PRs conditions: @@ -6,5 +9,5 @@ pull_request_rules: - check-success=Build and Test (ubuntu-latest, 2.12.15, temurin@11) - check-success=Build and Test (ubuntu-latest, 2.13.7, temurin@11) actions: - merge: - strict: true + queue: + name: default From 2ad6aa62bc603fe64b5511b5560af4ce1057b91f Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 21 Dec 2021 17:33:59 +0100 Subject: [PATCH 100/326] Update sbt to 1.5.8 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 8378cad..f4f743c 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.5.7 +sbt.version = 1.5.8 From b1c7703b2570f3c2eb8ad9649894d2a93120cb70 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 27 Dec 2021 02:33:24 +0100 Subject: [PATCH 101/326] Update sbt to 1.6.0 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index f4f743c..5c9c9e3 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.5.8 +sbt.version = 1.6.0 From 002c6ab4ec70f940a961091ff5b63fe288a979a4 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 29 Dec 2021 20:35:29 +0100 Subject: [PATCH 102/326] Update sbt to 1.6.1 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 5c9c9e3..dd4ff43 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.6.0 +sbt.version = 1.6.1 From 8a996b04663b96a9ac72e56c50b191c1dda263fa Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 11 Jan 2022 02:40:22 +0100 Subject: [PATCH 103/326] Update ph-css to 6.4.1 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index bb6dfe5..ef90f70 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.31" -libraryDependencies += "com.helger" % "ph-css" % "6.4.0" +libraryDependencies += "com.helger" % "ph-css" % "6.4.1" From 77967c60a378a46be99250bbe0a8ebb5be6deb04 Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Tue, 11 Jan 2022 02:36:09 -0500 Subject: [PATCH 104/326] scalajs-react 2.0.0. Add Scala 3 and drop 2.12 --- build.sbt | 21 +++++++++++++++------ project/plugins.sbt | 1 + 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/build.sbt b/build.sbt index fdbeb56..0b5948a 100644 --- a/build.sbt +++ b/build.sbt @@ -1,12 +1,21 @@ import scala.sys.process.stringToProcess +import _root_.io.github.nafg.scalacoptions._ -ThisBuild / organization := "io.github.nafg.css-dsl" -ThisBuild / crossScalaVersions := Seq("2.12.15", "2.13.7") -ThisBuild / scalaVersion := (ThisBuild / crossScalaVersions).value.last -ThisBuild / scalacOptions += "-feature" -ThisBuild / scalacOptions += "-deprecation" +def myScalacOptions(version: String) = + ScalacOptions.all(version)( + (opts: options.Common) => opts.feature ++ opts.deprecation, + ) + +inThisBuild( + List( + organization := "io.github.nafg.css-dsl", + scalaVersion := "3.0.2", + crossScalaVersions := Seq("2.13.7", scalaVersion.value), + scalacOptions ++= myScalacOptions(scalaVersion.value) + ) +) name := "css-dsl" publish / skip := true @@ -22,7 +31,7 @@ def latestIn(pkg: String, versionMajor: Int) = npmView(s"$pkg@$versionMajor", "version")(_.last match { case npmViewVersionRegex(v) => v }) def scalaJsReactSettings(config: CssDslConfig) = Seq( - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "1.7.7", + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "2.0.0", cssVariant := TargetImpl.ScalaJsReact, cssDslConfig := config ) diff --git a/project/plugins.sbt b/project/plugins.sbt index cb5eb9a..21e68fd 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,3 +2,4 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.8.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.4.0") +libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.1.9" From 04c41dd48dd05025ca3b63fec34c5d3d3fa0ad49 Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Tue, 11 Jan 2022 02:39:02 -0500 Subject: [PATCH 105/326] build.sbt: set versionScheme to early-semver --- build.sbt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 0b5948a..ec7e18e 100644 --- a/build.sbt +++ b/build.sbt @@ -13,7 +13,8 @@ inThisBuild( organization := "io.github.nafg.css-dsl", scalaVersion := "3.0.2", crossScalaVersions := Seq("2.13.7", scalaVersion.value), - scalacOptions ++= myScalacOptions(scalaVersion.value) + scalacOptions ++= myScalacOptions(scalaVersion.value), + versionScheme := Some("early-semver") ) ) From 81d44885ded9b3686999ac9ab0c2bdd6a34cdec6 Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Tue, 11 Jan 2022 02:39:25 -0500 Subject: [PATCH 106/326] .gitignore: add a few metals-related things --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 92322c4..face47b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,5 @@ .idea/ target/ +/.bsp/ +/.metals/ +/.bloop/ From eead548dcc7418e7c3df2670faf835c8deb79005 Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Tue, 11 Jan 2022 02:48:56 -0500 Subject: [PATCH 107/326] Add Bootstrap 5 --- build.sbt | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/build.sbt b/build.sbt index ec7e18e..e3e74d1 100644 --- a/build.sbt +++ b/build.sbt @@ -59,6 +59,14 @@ val bootstrap4Config = "https://cdn.jsdelivr.net/npm/bootstrap@" + _ + "/dist/css/bootstrap.min.css" ) +val bootstrap5Config = + CssDslConfig( + "Bootstrap 5", + Set(None, Some("bs"), Some("bs5")), + latestIn("bootstrap", 5), + "https://cdn.jsdelivr.net/npm/bootstrap@" + _ + "/dist/css/bootstrap.min.css" + ) + val bulmaConfig = CssDslConfig( "Bulma", @@ -101,6 +109,11 @@ lazy val bootstrap4_scalajsreact = lazy val bootstrap4_scalatags = project.enablePlugins(GeneratorPlugin).settings(scalatagsSettings(bootstrap4Config)) +lazy val bootstrap5_scalajsreact = + project.enablePlugins(ScalaJSPlugin, GeneratorPlugin).settings(scalaJsReactSettings(bootstrap5Config)) +lazy val bootstrap5_scalatags = + project.enablePlugins(GeneratorPlugin).settings(scalatagsSettings(bootstrap5Config)) + lazy val bulma_scalajsreact = project.enablePlugins(ScalaJSPlugin, GeneratorPlugin).settings(scalaJsReactSettings(bulmaConfig)) lazy val bulma_scalatags = From 506412298034de0d4ef2af99f819393c7eed1402 Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Tue, 11 Jan 2022 02:51:30 -0500 Subject: [PATCH 108/326] Update README.md --- README.md | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index df98dae..58f0b40 100644 --- a/README.md +++ b/README.md @@ -54,18 +54,20 @@ Artifacts are published to Bintray and synced to Bintray JCenter. For SBT use `r | CSS library | Scala DOM library | SBT Module ID | |--------------|--------------------------|---------------------------------------------------------------------| -| Bootstrap 3 | `scalatags.Text` (JVM) | `"io.github.nafg.css-dsl" %% "bootstrap3_scalatags" % "0.7.1"` | -| Bootstrap 3 | scalajs-react (scala.js) | `"io.github.nafg.css-dsl" %%% "bootstrap3_scalajsreact" % "0.7.1"` | -| Bootstrap 4 | `scalatags.Text` (JVM) | `"io.github.nafg.css-dsl" %% "bootstrap4_scalatags" % "0.7.1"` | -| Bootstrap 4 | scalajs-react (scala.js) | `"io.github.nafg.css-dsl" %%% "bootstrap4_scalajsreact" % "0.7.1"` | -| Bulma | `scalatags.Text` (JVM) | `"io.github.nafg.css-dsl" %% "bulma_scalatags" % "0.7.1"` | -| Bulma | scalajs-react (scala.js) | `"io.github.nafg.css-dsl" %%% "bulma_scalajsreact" % "0.7.1"` | -| Fomantic UI | `scalatags.Text` (JVM) | `"io.github.nafg.css-dsl" %% "fomanticui_scalatags" % "0.7.1"` | -| Fomantic UI | scalajs-react (scala.js) | `"io.github.nafg.css-dsl" %%% "fomanticui_scalajsreact" % "0.7.1"` | -| Font Awesome | `scalatags.Text` (JVM) | `"io.github.nafg.css-dsl" %% "fontawesome_scalatags" % "0.7.1"` | -| Font Awesome | scalajs-react (scala.js) | `"io.github.nafg.css-dsl" %%% "fontawesome_scalajsreact" % "0.7.1"` | -| Semantic UI | `scalatags.Text` (JVM) | `"io.github.nafg.css-dsl" %% "semanticui_scalatags" % "0.7.1"` | -| Semantic UI | scalajs-react (scala.js) | `"io.github.nafg.css-dsl" %%% "semanticui_scalajsreact" % "0.7.1"` | +| Bootstrap 3 | `scalatags.Text` (JVM) | `"io.github.nafg.css-dsl" %% "bootstrap3_scalatags" % "0.9.0"` | +| Bootstrap 3 | scalajs-react (scala.js) | `"io.github.nafg.css-dsl" %%% "bootstrap3_scalajsreact" % "0.9.0"` | +| Bootstrap 4 | `scalatags.Text` (JVM) | `"io.github.nafg.css-dsl" %% "bootstrap4_scalatags" % "0.9.0"` | +| Bootstrap 4 | scalajs-react (scala.js) | `"io.github.nafg.css-dsl" %%% "bootstrap4_scalajsreact" % "0.9.0"` | +| Bootstrap 5 | `scalatags.Text` (JVM) | `"io.github.nafg.css-dsl" %% "bootstrap5_scalatags" % "0.9.0"` | +| Bootstrap 5 | scalajs-react (scala.js) | `"io.github.nafg.css-dsl" %%% "bootstrap5_scalajsreact" % "0.9.0"` | +| Bulma | `scalatags.Text` (JVM) | `"io.github.nafg.css-dsl" %% "bulma_scalatags" % "0.9.0"` | +| Bulma | scalajs-react (scala.js) | `"io.github.nafg.css-dsl" %%% "bulma_scalajsreact" % "0.9.0"` | +| Fomantic UI | `scalatags.Text` (JVM) | `"io.github.nafg.css-dsl" %% "fomanticui_scalatags" % "0.9.0"` | +| Fomantic UI | scalajs-react (scala.js) | `"io.github.nafg.css-dsl" %%% "fomanticui_scalajsreact" % "0.9.0"` | +| Font Awesome | `scalatags.Text` (JVM) | `"io.github.nafg.css-dsl" %% "fontawesome_scalatags" % "0.9.0"` | +| Font Awesome | scalajs-react (scala.js) | `"io.github.nafg.css-dsl" %%% "fontawesome_scalajsreact" % "0.9.0"` | +| Semantic UI | `scalatags.Text` (JVM) | `"io.github.nafg.css-dsl" %% "semanticui_scalatags" % "0.9.0"` | +| Semantic UI | scalajs-react (scala.js) | `"io.github.nafg.css-dsl" %%% "semanticui_scalajsreact" % "0.9.0"` | ### Import @@ -78,9 +80,13 @@ Artifacts are published to Bintray and synced to Bintray JCenter. For SBT use `r | Bootstrap 4 | None | `import cssdsl.bootstrap4.Dsl._` | | Bootstrap 4 | `bs` | `import cssdsl.bootstrap4.BsDsl._` | | Bootstrap 4 | `bs4` | `import cssdsl.bootstrap4.Bs4Dsl._` | +| Bootstrap 5 | None | `import cssdsl.bootstrap5.Dsl._` | +| Bootstrap 5 | `bs` | `import cssdsl.bootstrap5.BsDsl._` | +| Bootstrap 5 | `bs5` | `import cssdsl.bootstrap5.Bs5Dsl._` | | Bulma | None | `import cssdsl.bulma.Dsl._` | | Bulma | `b` | `import cssdsl.bulma.BDsl._` | | Fomantic UI | `f` | `import cssdsl.fomanticui.FDsl._` | +| Font Awesome | None | `import cssdsl.fontawesome.Dsl._` | | Font Awesome | `fa` | `import cssdsl.fontawesome.FaDsl._` | | Semantic UI | `s` | `import cssdsl.semanticui.SDsl._` | From 4c04f2a367c6381e8044aa2d8084c9905fb362e7 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 11 Jan 2022 10:38:48 +0100 Subject: [PATCH 109/326] Update scala3-library, ... to 3.1.0 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index e3e74d1..2ba9455 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ def myScalacOptions(version: String) = inThisBuild( List( organization := "io.github.nafg.css-dsl", - scalaVersion := "3.0.2", + scalaVersion := "3.1.0", crossScalaVersions := Seq("2.13.7", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") From 277990543332b7af808baca98b6b28e4b63f877b Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 11 Jan 2022 10:39:26 +0100 Subject: [PATCH 110/326] Regenerate workflow with sbt-github-actions --- .github/workflows/ci.yml | 18 +++++++++--------- .mergify.yml | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd51e83..34efc19 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.15, 2.13.7] + scala: [2.13.7, 3.1.0] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -58,7 +58,7 @@ jobs: run: sbt ++${{ matrix.scala }} test - name: Compress target directories - run: tar cf targets.tar bootstrap3_scalatags/target fomanticui_scalatags/target bootstrap4_scalatags/target bulma_scalatags/target bootstrap3_scalajsreact/target fontawesome_scalatags/target target bulma_scalajsreact/target bootstrap4_scalajsreact/target fontawesome_scalajsreact/target semanticui_scalajsreact/target semanticui_scalatags/target fomanticui_scalajsreact/target project/target + run: tar cf targets.tar bootstrap3_scalatags/target fomanticui_scalatags/target bootstrap4_scalatags/target bulma_scalatags/target bootstrap3_scalajsreact/target fontawesome_scalatags/target bootstrap5_scalajsreact/target target bulma_scalajsreact/target bootstrap4_scalajsreact/target fontawesome_scalajsreact/target semanticui_scalajsreact/target semanticui_scalatags/target fomanticui_scalajsreact/target bootstrap5_scalatags/target project/target - name: Upload target directories uses: actions/upload-artifact@v2 @@ -73,7 +73,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.7] + scala: [3.1.0] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -101,22 +101,22 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.12.15) + - name: Download target directories (2.13.7) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.12.15-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.7-${{ matrix.java }} - - name: Inflate target directories (2.12.15) + - name: Inflate target directories (2.13.7) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.7) + - name: Download target directories (3.1.0) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.7-${{ matrix.java }} + name: target-${{ matrix.os }}-3.1.0-${{ matrix.java }} - - name: Inflate target directories (2.13.7) + - name: Inflate target directories (3.1.0) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index d380ab6..a4845e1 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -6,8 +6,8 @@ pull_request_rules: - name: Automatically merge successful scala-steward PRs conditions: - author=scala-steward - - check-success=Build and Test (ubuntu-latest, 2.12.15, temurin@11) - check-success=Build and Test (ubuntu-latest, 2.13.7, temurin@11) + - check-success=Build and Test (ubuntu-latest, 3.1.0, temurin@11) actions: queue: name: default From e3b796ec346a9175b21074d48e67c31e1ea61af5 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 14 Jan 2022 11:32:07 +0100 Subject: [PATCH 111/326] Update ph-css to 6.4.3 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index ef90f70..d86984a 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.31" -libraryDependencies += "com.helger" % "ph-css" % "6.4.1" +libraryDependencies += "com.helger" % "ph-css" % "6.4.3" From 6e1911ffe265f021422363d6c5f0fe37422c6c27 Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Sun, 16 Jan 2022 11:49:09 -0500 Subject: [PATCH 112/326] Run sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 18 +++++++++--------- .mergify.yml | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd51e83..643fa9c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.15, 2.13.7] + scala: [2.13.7, 3.0.2] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -58,7 +58,7 @@ jobs: run: sbt ++${{ matrix.scala }} test - name: Compress target directories - run: tar cf targets.tar bootstrap3_scalatags/target fomanticui_scalatags/target bootstrap4_scalatags/target bulma_scalatags/target bootstrap3_scalajsreact/target fontawesome_scalatags/target target bulma_scalajsreact/target bootstrap4_scalajsreact/target fontawesome_scalajsreact/target semanticui_scalajsreact/target semanticui_scalatags/target fomanticui_scalajsreact/target project/target + run: tar cf targets.tar bootstrap3_scalatags/target fomanticui_scalatags/target bootstrap4_scalatags/target bulma_scalatags/target bootstrap3_scalajsreact/target fontawesome_scalatags/target bootstrap5_scalajsreact/target target bulma_scalajsreact/target bootstrap4_scalajsreact/target fontawesome_scalajsreact/target semanticui_scalajsreact/target semanticui_scalatags/target fomanticui_scalajsreact/target bootstrap5_scalatags/target project/target - name: Upload target directories uses: actions/upload-artifact@v2 @@ -73,7 +73,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.7] + scala: [3.0.2] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -101,22 +101,22 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.12.15) + - name: Download target directories (2.13.7) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.12.15-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.7-${{ matrix.java }} - - name: Inflate target directories (2.12.15) + - name: Inflate target directories (2.13.7) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (2.13.7) + - name: Download target directories (3.0.2) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.7-${{ matrix.java }} + name: target-${{ matrix.os }}-3.0.2-${{ matrix.java }} - - name: Inflate target directories (2.13.7) + - name: Inflate target directories (3.0.2) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index d380ab6..d59f50e 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -6,8 +6,8 @@ pull_request_rules: - name: Automatically merge successful scala-steward PRs conditions: - author=scala-steward - - check-success=Build and Test (ubuntu-latest, 2.12.15, temurin@11) - check-success=Build and Test (ubuntu-latest, 2.13.7, temurin@11) + - check-success=Build and Test (ubuntu-latest, 3.0.2, temurin@11) actions: queue: name: default From 717fbbe17c070c384edbd127e27094cc648878c4 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 16 Jan 2022 18:25:53 +0100 Subject: [PATCH 113/326] Update scala3-library, ... to 3.1.0 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 643fa9c..6fd47c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.7, 3.0.2] + scala: [2.13.7, 3.1.0] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -73,7 +73,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.0.2] + scala: [3.1.0] java: [temurin@11] runs-on: ${{ matrix.os }} steps: From ee93df27387618e883485126b548984fd8fa6ce7 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 16 Jan 2022 18:26:33 +0100 Subject: [PATCH 114/326] Regenerate workflow with sbt-github-actions --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6fd47c7..34efc19 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -111,12 +111,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.0.2) + - name: Download target directories (3.1.0) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.0.2-${{ matrix.java }} + name: target-${{ matrix.os }}-3.1.0-${{ matrix.java }} - - name: Inflate target directories (3.0.2) + - name: Inflate target directories (3.1.0) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index d59f50e..a4845e1 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -7,7 +7,7 @@ pull_request_rules: conditions: - author=scala-steward - check-success=Build and Test (ubuntu-latest, 2.13.7, temurin@11) - - check-success=Build and Test (ubuntu-latest, 3.0.2, temurin@11) + - check-success=Build and Test (ubuntu-latest, 3.1.0, temurin@11) actions: queue: name: default From cdb82130929170e431fb1183263fa994ec57f8c8 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 11 Jan 2022 12:49:08 +0100 Subject: [PATCH 115/326] Update scalameta to 4.4.32 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index ef90f70..6b150b3 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.31" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.32" libraryDependencies += "com.helger" % "ph-css" % "6.4.1" From 39e733352764a95b4555ad0ea7b5e3296dd4a160 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Sun, 16 Jan 2022 23:29:02 +0100 Subject: [PATCH 116/326] Update scala-library to 2.13.8 (#163) * Update scala-library to 2.13.8 * Regenerate workflow with sbt-github-actions * Update scala-library to 2.13.8 * Regenerate workflow with sbt-github-actions * Update scala-library to 2.13.8 * Regenerate workflow with sbt-github-actions --- .github/workflows/ci.yml | 8 ++++---- .mergify.yml | 2 +- build.sbt | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 34efc19..8f43beb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.7, 3.1.0] + scala: [2.13.8, 3.1.0] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -101,12 +101,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.13.7) + - name: Download target directories (2.13.8) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.7-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.8-${{ matrix.java }} - - name: Inflate target directories (2.13.7) + - name: Inflate target directories (2.13.8) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index a4845e1..8f59eed 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -6,7 +6,7 @@ pull_request_rules: - name: Automatically merge successful scala-steward PRs conditions: - author=scala-steward - - check-success=Build and Test (ubuntu-latest, 2.13.7, temurin@11) + - check-success=Build and Test (ubuntu-latest, 2.13.8, temurin@11) - check-success=Build and Test (ubuntu-latest, 3.1.0, temurin@11) actions: queue: diff --git a/build.sbt b/build.sbt index 2ba9455..adeeaaa 100644 --- a/build.sbt +++ b/build.sbt @@ -12,7 +12,7 @@ inThisBuild( List( organization := "io.github.nafg.css-dsl", scalaVersion := "3.1.0", - crossScalaVersions := Seq("2.13.7", scalaVersion.value), + crossScalaVersions := Seq("2.13.8", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") ) From 30a7818e91cea385e5c0151de5dbaef465e3133a Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 19 Jan 2022 02:16:58 +0100 Subject: [PATCH 117/326] Update ph-css to 6.4.4 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 9962d58..8c07702 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.32" -libraryDependencies += "com.helger" % "ph-css" % "6.4.3" +libraryDependencies += "com.helger" % "ph-css" % "6.4.4" From 90857add0b889b4aec0b4de6a4135f9d2e064ed7 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 19 Jan 2022 23:21:59 +0100 Subject: [PATCH 118/326] Update scalatags to 0.11.1 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index adeeaaa..edc363c 100644 --- a/build.sbt +++ b/build.sbt @@ -38,7 +38,7 @@ def scalaJsReactSettings(config: CssDslConfig) = Seq( ) def scalatagsSettings(config: CssDslConfig) = Seq( - libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.11.0", + libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.11.1", cssVariant := TargetImpl.Scalatags, cssDslConfig := config ) From 63894668b442af81d343ca30856ef82ed902b796 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 20 Jan 2022 05:49:02 +0100 Subject: [PATCH 119/326] Update scalameta to 4.4.33 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 8c07702..15eeea0 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.32" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.33" libraryDependencies += "com.helger" % "ph-css" % "6.4.4" From 6d3537b45ea8784f3c84c5fe6af6e8f5d3ff2121 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 21 Jan 2022 08:43:58 +0100 Subject: [PATCH 120/326] Update scalajs-react:core to 2.0.1 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index edc363c..a7b6386 100644 --- a/build.sbt +++ b/build.sbt @@ -32,7 +32,7 @@ def latestIn(pkg: String, versionMajor: Int) = npmView(s"$pkg@$versionMajor", "version")(_.last match { case npmViewVersionRegex(v) => v }) def scalaJsReactSettings(config: CssDslConfig) = Seq( - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "2.0.0", + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "2.0.1", cssVariant := TargetImpl.ScalaJsReact, cssDslConfig := config ) From 864a7c867ad62e7626e89a1bd339ef15efbac7a5 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 28 Jan 2022 20:52:52 +0100 Subject: [PATCH 121/326] Update ph-css to 6.5.0 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 15eeea0..a76d8e6 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.33" -libraryDependencies += "com.helger" % "ph-css" % "6.4.4" +libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From 743b09fc0a81364f852c8f5367302943d741cea0 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 2 Feb 2022 01:53:51 +0100 Subject: [PATCH 122/326] Update scala3-library, ... to 3.1.1 --- .github/workflows/ci.yml | 4 ++-- build.sbt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f43beb..8328daf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.8, 3.1.0] + scala: [2.13.8, 3.1.1] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -73,7 +73,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.1.0] + scala: [3.1.1] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index a7b6386..603d11f 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ def myScalacOptions(version: String) = inThisBuild( List( organization := "io.github.nafg.css-dsl", - scalaVersion := "3.1.0", + scalaVersion := "3.1.1", crossScalaVersions := Seq("2.13.8", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") From 008ffbcafd089d5b6968bac71ca8253f4eff43a2 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 2 Feb 2022 01:54:55 +0100 Subject: [PATCH 123/326] Regenerate workflow with sbt-github-actions --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8328daf..c191593 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -111,12 +111,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.1.0) + - name: Download target directories (3.1.1) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.1.0-${{ matrix.java }} + name: target-${{ matrix.os }}-3.1.1-${{ matrix.java }} - - name: Inflate target directories (3.1.0) + - name: Inflate target directories (3.1.1) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 8f59eed..5b13ac8 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -7,7 +7,7 @@ pull_request_rules: conditions: - author=scala-steward - check-success=Build and Test (ubuntu-latest, 2.13.8, temurin@11) - - check-success=Build and Test (ubuntu-latest, 3.1.0, temurin@11) + - check-success=Build and Test (ubuntu-latest, 3.1.1, temurin@11) actions: queue: name: default From 71cd4271a0c9c7a997f214515f0f8143003d1b9e Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 2 Feb 2022 01:54:58 +0100 Subject: [PATCH 124/326] Update sbt to 1.6.2 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index dd4ff43..f6acff8 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.6.1 +sbt.version = 1.6.2 From 245a201218450d56c97526b68d9597a4e0c3fdc5 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 5 Feb 2022 10:26:31 +0100 Subject: [PATCH 125/326] Update scalameta to 4.4.34 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index a76d8e6..e7c3c60 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.33" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.34" libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From ce3d1d5f2f6b11ecbb6e1bb6ef26c35ea3ade4d5 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 6 Feb 2022 17:13:22 +0100 Subject: [PATCH 126/326] Update scalac-options to 0.1.10 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 21e68fd..a142e31 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,4 +2,4 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.8.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.4.0") -libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.1.9" +libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.1.10" From 6eb6bcb32f4862957ac0cad76d850b79081ff43c Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 11 Feb 2022 00:42:56 +0100 Subject: [PATCH 127/326] Update scalameta to 4.4.35 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index e7c3c60..278413e 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.34" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.35" libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From f29bcbaca19141e5d872eac04e9117e1faf6e798 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 14 Feb 2022 15:07:22 +0100 Subject: [PATCH 128/326] Update sbt-scalajs, scalajs-compiler, ... to 1.9.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index a142e31..f8ba54e 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.8.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.9.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.4.0") From d68593e0129d8599dbe13688189d1ee49b32f88d Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 19 Feb 2022 12:30:38 +0100 Subject: [PATCH 129/326] Update scalameta to 4.5.0 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 278413e..104de25 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.4.35" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.0" libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From 9c7cd87a412a2ec1e45c46c753f47d85ccdf5c2d Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 21 Mar 2022 18:47:28 +0100 Subject: [PATCH 130/326] Update scalameta to 4.5.1 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 104de25..b2fb366 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.0" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.1" libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From d52b8ed73189b9f4d90d5e052bdfd1acd6ee6ab3 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 28 Mar 2022 06:29:50 +0200 Subject: [PATCH 131/326] Update scalac-options to 0.2.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index f8ba54e..2153366 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,4 +2,4 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.9.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.4.0") -libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.1.10" +libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.2.0" From 9a2761204877bc74b33b9ae5ea32405859e4b2e4 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 1 Apr 2022 20:40:13 +0200 Subject: [PATCH 132/326] Update scalameta to 4.5.2 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index b2fb366..0a6d935 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.1" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.2" libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From b01c9a6d4d9fa12aaddf2971ebe97e67db7b53fc Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 5 Apr 2022 06:42:18 +0200 Subject: [PATCH 133/326] Update sbt-scalajs, scalajs-compiler, ... to 1.10.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 2153366..cdbed07 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.9.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.4.0") From 1a9d3113144f1536bbc13defdf646617036359dc Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 7 Apr 2022 00:43:50 +0200 Subject: [PATCH 134/326] Update scalameta to 4.5.3 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 0a6d935..b883049 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.2" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.3" libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From e59aec5d4bf68ffd5666c1186d2c6b109ed067f8 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 12 Apr 2022 12:33:01 +0200 Subject: [PATCH 135/326] Update scalajs-react:core to 2.1.0 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 603d11f..5179237 100644 --- a/build.sbt +++ b/build.sbt @@ -32,7 +32,7 @@ def latestIn(pkg: String, versionMajor: Int) = npmView(s"$pkg@$versionMajor", "version")(_.last match { case npmViewVersionRegex(v) => v }) def scalaJsReactSettings(config: CssDslConfig) = Seq( - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "2.0.1", + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "2.1.0", cssVariant := TargetImpl.ScalaJsReact, cssDslConfig := config ) From dcb80a3787dd873e0770e1f1b79f68489eb2ecc2 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 12 Apr 2022 19:38:02 +0200 Subject: [PATCH 136/326] Update scala3-library, ... to 3.1.2 --- .github/workflows/ci.yml | 4 ++-- build.sbt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c191593..8eea3ee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.8, 3.1.1] + scala: [2.13.8, 3.1.2] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -73,7 +73,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.1.1] + scala: [3.1.2] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index 5179237..231f011 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ def myScalacOptions(version: String) = inThisBuild( List( organization := "io.github.nafg.css-dsl", - scalaVersion := "3.1.1", + scalaVersion := "3.1.2", crossScalaVersions := Seq("2.13.8", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") From f3973ed44c4c976148a24feb35a97e0322b64abc Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 12 Apr 2022 19:38:53 +0200 Subject: [PATCH 137/326] Regenerate workflow with sbt-github-actions --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8eea3ee..a5a4ab1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -111,12 +111,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.1.1) + - name: Download target directories (3.1.2) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.1.1-${{ matrix.java }} + name: target-${{ matrix.os }}-3.1.2-${{ matrix.java }} - - name: Inflate target directories (3.1.1) + - name: Inflate target directories (3.1.2) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 5b13ac8..0d39e3a 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -7,7 +7,7 @@ pull_request_rules: conditions: - author=scala-steward - check-success=Build and Test (ubuntu-latest, 2.13.8, temurin@11) - - check-success=Build and Test (ubuntu-latest, 3.1.1, temurin@11) + - check-success=Build and Test (ubuntu-latest, 3.1.2, temurin@11) actions: queue: name: default From 1d13a08887bbc4a6a61a18bc6835d6f6d92d2d3d Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 15 Apr 2022 22:32:58 +0200 Subject: [PATCH 138/326] Update scalameta to 4.5.4 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index b883049..131ef2a 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.3" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.4" libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From e949d5c9733469f6005d2b5652b5820eb7b898fe Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 26 Apr 2022 06:30:45 +0200 Subject: [PATCH 139/326] Update scalajs-react:core to 2.1.1 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 5179237..a313d2a 100644 --- a/build.sbt +++ b/build.sbt @@ -32,7 +32,7 @@ def latestIn(pkg: String, versionMajor: Int) = npmView(s"$pkg@$versionMajor", "version")(_.last match { case npmViewVersionRegex(v) => v }) def scalaJsReactSettings(config: CssDslConfig) = Seq( - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "2.1.0", + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "2.1.1", cssVariant := TargetImpl.ScalaJsReact, cssDslConfig := config ) From 5c58c2162eb5fc6b5ed6c6024b73ad379b16f60a Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 30 Apr 2022 18:42:53 +0200 Subject: [PATCH 140/326] Update scalameta to 4.5.5 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 131ef2a..836de7d 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.4" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.5" libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From 6bec66fb06cf99e2cbb5117b7c9120629c94f8c1 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 5 May 2022 18:32:01 +0200 Subject: [PATCH 141/326] Update scalameta to 4.5.6 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 836de7d..aeb11ee 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.5" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.6" libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From 93613361aae77f80aa1d335b90a889facaac1bcf Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 18 May 2022 21:41:57 +0200 Subject: [PATCH 142/326] Update scalameta to 4.5.7 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index aeb11ee..f66b85f 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.6" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.7" libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From d3cba19d6dec3651b8a8b19198a30cb870316d96 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 24 May 2022 21:52:46 +0200 Subject: [PATCH 143/326] Update scalameta to 4.5.8 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index f66b85f..2eaf1f1 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.7" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.8" libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From d5cd0b5bca4a049ab2b89735721581f9313884c0 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 15 Jul 2022 18:55:18 +0000 Subject: [PATCH 144/326] Update sbt-scalajs, scalajs-compiler, ... to 1.10.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index cdbed07..ec4a826 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.1") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.4.0") From bf3b76c570d1fed810e4dbe2b1ef149460122ca0 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 15 Jul 2022 18:55:23 +0000 Subject: [PATCH 145/326] Update scala3-library, ... to 3.1.3 --- .github/workflows/ci.yml | 4 ++-- build.sbt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a5a4ab1..ec6a33a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.8, 3.1.2] + scala: [2.13.8, 3.1.3] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -73,7 +73,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.1.2] + scala: [3.1.3] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index f183ab8..05afed2 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ def myScalacOptions(version: String) = inThisBuild( List( organization := "io.github.nafg.css-dsl", - scalaVersion := "3.1.2", + scalaVersion := "3.1.3", crossScalaVersions := Seq("2.13.8", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") From ca265ae30df0ef6bfa35a286dcd60d71a7660b15 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 15 Jul 2022 18:56:30 +0000 Subject: [PATCH 146/326] Update sbt to 1.7.1 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index f6acff8..d738b85 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.6.2 +sbt.version = 1.7.1 From 1376f4a02b81a05fb418b27481db5f2ac8b4b453 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 15 Jul 2022 18:57:37 +0000 Subject: [PATCH 147/326] Update scalameta to 4.5.9 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 2eaf1f1..9d746a0 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.8" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.9" libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From dd4475fd2607032119e392cf1a1daf384f3557a7 Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Sun, 17 Jul 2022 01:45:10 -0400 Subject: [PATCH 148/326] Run sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec6a33a..c98435d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -111,12 +111,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.1.2) + - name: Download target directories (3.1.3) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.1.2-${{ matrix.java }} + name: target-${{ matrix.os }}-3.1.3-${{ matrix.java }} - - name: Inflate target directories (3.1.2) + - name: Inflate target directories (3.1.3) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 0d39e3a..14005d1 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -7,7 +7,7 @@ pull_request_rules: conditions: - author=scala-steward - check-success=Build and Test (ubuntu-latest, 2.13.8, temurin@11) - - check-success=Build and Test (ubuntu-latest, 3.1.2, temurin@11) + - check-success=Build and Test (ubuntu-latest, 3.1.3, temurin@11) actions: queue: name: default From 57e7efa0f09354e95c4fb8b2d47117ca8bd73115 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sun, 2 Oct 2022 21:53:50 +0000 Subject: [PATCH 149/326] Update sbt-scalajs-bundler to 0.21.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index ec4a826..d2b28cc 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.1") -addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") +addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.4.0") libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.2.0" From e3e7217a8a9c728980c25e18140bb1aab9a06fb4 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sun, 2 Oct 2022 21:54:51 +0000 Subject: [PATCH 150/326] Update sbt-scalajs, scalajs-compiler, ... to 1.11.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index ec4a826..9d8aa84 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.1") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.11.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.4.0") From a6f6218870fa1f742c8008b2eea3bb84d3fe49cc Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sun, 2 Oct 2022 21:55:39 +0000 Subject: [PATCH 151/326] Update scala3-library, ... to 3.2.0 --- .github/workflows/ci.yml | 4 ++-- build.sbt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c98435d..f761d74 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.8, 3.1.3] + scala: [2.13.8, 3.2.0] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -73,7 +73,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.1.3] + scala: [3.2.0] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index 05afed2..baa76a3 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ def myScalacOptions(version: String) = inThisBuild( List( organization := "io.github.nafg.css-dsl", - scalaVersion := "3.1.3", + scalaVersion := "3.2.0", crossScalaVersions := Seq("2.13.8", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") From 9677d345a57f1082235b51e3b1464c98b5e4be06 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sun, 2 Oct 2022 21:55:58 +0000 Subject: [PATCH 152/326] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f761d74..ab4872d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -111,12 +111,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.1.3) + - name: Download target directories (3.2.0) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.1.3-${{ matrix.java }} + name: target-${{ matrix.os }}-3.2.0-${{ matrix.java }} - - name: Inflate target directories (3.1.3) + - name: Inflate target directories (3.2.0) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 14005d1..885087e 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -7,7 +7,7 @@ pull_request_rules: conditions: - author=scala-steward - check-success=Build and Test (ubuntu-latest, 2.13.8, temurin@11) - - check-success=Build and Test (ubuntu-latest, 3.1.3, temurin@11) + - check-success=Build and Test (ubuntu-latest, 3.2.0, temurin@11) actions: queue: name: default From 8997af85b41c1ccfa60cfc48d30077fa7f60bdfd Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 3 Oct 2022 08:11:53 +0000 Subject: [PATCH 153/326] Update sbt-mergify-github-actions to 0.6.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index ec4a826..e2232ab 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.1") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") -addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.4.0") +addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.6.0") libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.2.0" From e879517015ee65ffe7742afaf9a9d4154188c4e1 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 3 Oct 2022 08:13:04 +0000 Subject: [PATCH 154/326] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .mergify.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.mergify.yml b/.mergify.yml index 14005d1..ce6be7b 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -3,11 +3,10 @@ queue_rules: - name: default conditions: [] pull_request_rules: - - name: Automatically merge successful scala-steward PRs + - name: Automatically merge successful Scala Steward PRs conditions: - author=scala-steward - check-success=Build and Test (ubuntu-latest, 2.13.8, temurin@11) - check-success=Build and Test (ubuntu-latest, 3.1.3, temurin@11) actions: - queue: - name: default + queue: {} From cbc81efc99c28265ed932b92e9de70e671ecc86c Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Mon, 3 Oct 2022 15:44:15 -0400 Subject: [PATCH 155/326] Support nafg-scala-steward --- .mergify.yml | 4 +++- build.sbt | 7 ++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.mergify.yml b/.mergify.yml index ce6be7b..971605e 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -5,7 +5,9 @@ queue_rules: pull_request_rules: - name: Automatically merge successful Scala Steward PRs conditions: - - author=scala-steward + - or: + - author=scala-steward + - author=nafg-scala-steward[bot] - check-success=Build and Test (ubuntu-latest, 2.13.8, temurin@11) - check-success=Build and Test (ubuntu-latest, 3.1.3, temurin@11) actions: diff --git a/build.sbt b/build.sbt index 05afed2..2788afb 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,5 @@ import scala.sys.process.stringToProcess - +import _root_.io.github.nafg.mergify.dsl._ import _root_.io.github.nafg.scalacoptions._ @@ -21,6 +21,11 @@ inThisBuild( name := "css-dsl" publish / skip := true +mergifyExtraConditions := Seq( + (Attr.Author :== "scala-steward") || + (Attr.Author :== "nafg-scala-steward[bot]") +) + def npmView(pkg: String, field: String)(parse: Stream[String] => String) = parse(s"npm view $pkg $field".lineStream) From 1c48a8fa5b10e609ac66f66d7b1261268ce1922f Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 3 Oct 2022 20:22:44 +0000 Subject: [PATCH 156/326] Revert commit(s) e3e7217 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 9d8aa84..ec4a826 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.11.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.1") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.4.0") From 6df4d8656d466128866131e17e9b1f0e35a62854 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 3 Oct 2022 20:22:44 +0000 Subject: [PATCH 157/326] Update sbt-scalajs, scalajs-compiler, ... to 1.11.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 0513dcd..73837bd 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.1") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.11.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.6.0") From 60b517f23e22e067892a456b5833b62d0b85119f Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <114884352+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 3 Oct 2022 16:28:48 -0400 Subject: [PATCH 158/326] Update scala-library to 2.13.9 (#197) * Update scala-library to 2.13.9 * Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate Co-authored-by: nafg-scala-steward[bot] <243680+nafg-scala-steward[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 8 ++++---- .mergify.yml | 2 +- build.sbt | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ab4872d..93963d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.8, 3.2.0] + scala: [2.13.9, 3.2.0] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -101,12 +101,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.13.8) + - name: Download target directories (2.13.9) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.8-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.9-${{ matrix.java }} - - name: Inflate target directories (2.13.8) + - name: Inflate target directories (2.13.9) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 1ba3899..539225e 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -8,7 +8,7 @@ pull_request_rules: - or: - author=scala-steward - author=nafg-scala-steward[bot] - - check-success=Build and Test (ubuntu-latest, 2.13.8, temurin@11) + - check-success=Build and Test (ubuntu-latest, 2.13.9, temurin@11) - check-success=Build and Test (ubuntu-latest, 3.2.0, temurin@11) actions: queue: {} diff --git a/build.sbt b/build.sbt index 07f0e8a..8196f52 100644 --- a/build.sbt +++ b/build.sbt @@ -12,7 +12,7 @@ inThisBuild( List( organization := "io.github.nafg.css-dsl", scalaVersion := "3.2.0", - crossScalaVersions := Seq("2.13.8", scalaVersion.value), + crossScalaVersions := Seq("2.13.9", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") ) From b81bda4d14d95f374dd9ed53d4d0286d7440bbe8 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sun, 2 Oct 2022 21:54:01 +0000 Subject: [PATCH 159/326] Update scalatags to 0.12.0 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 8196f52..15d6bd5 100644 --- a/build.sbt +++ b/build.sbt @@ -43,7 +43,7 @@ def scalaJsReactSettings(config: CssDslConfig) = Seq( ) def scalatagsSettings(config: CssDslConfig) = Seq( - libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.11.1", + libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.12.0", cssVariant := TargetImpl.Scalatags, cssDslConfig := config ) From f4badfeb75898c098a3bce449cbe317ee85398e1 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sun, 2 Oct 2022 21:56:10 +0000 Subject: [PATCH 160/326] Update scalameta to 4.5.13 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 9d746a0..2488a6e 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.9" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.13" libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From 6b5423a2f3d0b43407cc756ad4231c6f756fdde7 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 3 Oct 2022 04:40:43 +0000 Subject: [PATCH 161/326] Update sbt to 1.7.2 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index d738b85..1cfbe55 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.7.1 +sbt.version = 1.7.2 From 1a16eb7f76e7fb1a80e0835b2229f61b85d1946d Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 3 Oct 2022 20:40:52 +0000 Subject: [PATCH 162/326] Update scalameta to 4.6.0 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 2488a6e..5d20e50 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.5.13" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.6.0" libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From 804f1d021dca1343e95d8111a1595aac4cf1e4ff Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 13 Oct 2022 16:13:55 +0000 Subject: [PATCH 163/326] Update scala-library to 2.13.10 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 93963d5..777a9c3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.9, 3.2.0] + scala: [2.13.10, 3.2.0] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index 15d6bd5..99f11c2 100644 --- a/build.sbt +++ b/build.sbt @@ -12,7 +12,7 @@ inThisBuild( List( organization := "io.github.nafg.css-dsl", scalaVersion := "3.2.0", - crossScalaVersions := Seq("2.13.9", scalaVersion.value), + crossScalaVersions := Seq("2.13.10", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") ) From 7b665868182b9d527c47d3e533b887dc2f13dcbf Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 13 Oct 2022 16:15:16 +0000 Subject: [PATCH 164/326] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 777a9c3..1482e88 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -101,12 +101,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.13.9) + - name: Download target directories (2.13.10) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.9-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.10-${{ matrix.java }} - - name: Inflate target directories (2.13.9) + - name: Inflate target directories (2.13.10) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 539225e..80560ac 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -8,7 +8,7 @@ pull_request_rules: - or: - author=scala-steward - author=nafg-scala-steward[bot] - - check-success=Build and Test (ubuntu-latest, 2.13.9, temurin@11) + - check-success=Build and Test (ubuntu-latest, 2.13.10, temurin@11) - check-success=Build and Test (ubuntu-latest, 3.2.0, temurin@11) actions: queue: {} From 1ea76bd8ca6d09e4474ac73f97633c1c39ccea09 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 20 Oct 2022 20:10:40 +0000 Subject: [PATCH 165/326] Update sbt-ci-release to 1.5.11 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 73837bd..2df9db8 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.11.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.0") -addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.11") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.6.0") libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.2.0" From f6f4535a81e20890a3caba03cc0be992311cdfa4 Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Thu, 27 Oct 2022 14:18:10 -0400 Subject: [PATCH 166/326] ci.sbt: Fix `homepage` --- ci.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci.sbt b/ci.sbt index 65cf951..1730c3c 100644 --- a/ci.sbt +++ b/ci.sbt @@ -1,5 +1,5 @@ inThisBuild(List( - homepage := Some(url("https://github.com/nafg/mergify-yaml")), + homepage := Some(url("https://github.com/nafg/css-dsl")), licenses := List("Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0")), developers := List( Developer("nafg", "Naftoli Gugenheim", "98384+nafg@users.noreply.github.com", url("https://github.com/nafg")) From fc12dd3962d0bc5fa3d6ae566e13e14b5bc0eb63 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 7 Nov 2022 20:08:38 +0000 Subject: [PATCH 167/326] Update scala3-library, ... to 3.2.1 --- .github/workflows/ci.yml | 4 ++-- build.sbt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1482e88..4e89783 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.10, 3.2.0] + scala: [2.13.10, 3.2.1] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -73,7 +73,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.2.0] + scala: [3.2.1] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index 99f11c2..80804b7 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ def myScalacOptions(version: String) = inThisBuild( List( organization := "io.github.nafg.css-dsl", - scalaVersion := "3.2.0", + scalaVersion := "3.2.1", crossScalaVersions := Seq("2.13.10", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") From 88df5d8e7480ee11e1e5c0daf8e6d75940bf5263 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 7 Nov 2022 20:09:35 +0000 Subject: [PATCH 168/326] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4e89783..d5bab69 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -111,12 +111,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.2.0) + - name: Download target directories (3.2.1) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.2.0-${{ matrix.java }} + name: target-${{ matrix.os }}-3.2.1-${{ matrix.java }} - - name: Inflate target directories (3.2.0) + - name: Inflate target directories (3.2.1) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 80560ac..51b0303 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -9,6 +9,6 @@ pull_request_rules: - author=scala-steward - author=nafg-scala-steward[bot] - check-success=Build and Test (ubuntu-latest, 2.13.10, temurin@11) - - check-success=Build and Test (ubuntu-latest, 3.2.0, temurin@11) + - check-success=Build and Test (ubuntu-latest, 3.2.1, temurin@11) actions: queue: {} From 8b540f38a73259907e1de3a0350ce922cf0ff198 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 14 Nov 2022 20:08:19 +0000 Subject: [PATCH 169/326] Update sbt-scalajs-bundler to 0.21.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 2df9db8..dd93b47 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.11.0") -addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.0") +addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.11") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.6.0") libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.2.0" From 5cd6536bde78db3b7848be4c806f6a1fa1e17885 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Wed, 23 Nov 2022 20:07:04 +0000 Subject: [PATCH 170/326] Update sbt-scalajs, scalajs-compiler, ... to 1.12.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index dd93b47..329d918 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.11.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.12.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.11") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.6.0") From 271957dfdd5fabbc93c2de737b3d18aa6f8e336b Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Wed, 14 Dec 2022 20:06:53 +0000 Subject: [PATCH 171/326] Update scalameta to 4.7.0 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 5d20e50..0b1e049 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.6.0" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.0" libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From 73a0c98cb051fef7d2eb5e692f23bb052a88fcaf Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Wed, 21 Dec 2022 12:11:32 +0000 Subject: [PATCH 172/326] Update scalameta to 4.7.1 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 0b1e049..c7ea9c2 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.0" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.1" libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From 892f9f4da4c1a9e5b2de414f93d54825988d4106 Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Thu, 2 Feb 2023 16:51:39 -0500 Subject: [PATCH 173/326] Pin fomantic-ui at 2.9.0, pending https://github.com/phax/ph-css/issues/90 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 80804b7..ed2b50e 100644 --- a/build.sbt +++ b/build.sbt @@ -92,7 +92,7 @@ val fomanticUiConfig = CssDslConfig( "Fomantic UI", Set(Some("f")), - latestTag("fomantic-ui"), + "2.9.0" /*latestTag("fomantic-ui")*/, // pin at 2.9.0 until https://github.com/phax/ph-css/issues/90 is fixed "https://cdn.jsdelivr.net/npm/fomantic-ui@" + _ + "/dist/semantic.min.css" ) From 7f47f54dd1267904fafea5b994b1f981f802421c Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sat, 21 Jan 2023 16:07:10 +0000 Subject: [PATCH 174/326] Update scalameta to 4.7.3 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index c7ea9c2..f539041 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.1" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.3" libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From a0ee315c782fad631044efbd8bc870f93032ee07 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 23 Jan 2023 17:16:02 +0000 Subject: [PATCH 175/326] Update scalameta to 4.7.3 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index c7ea9c2..f539041 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.1" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.3" libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From eeb7f2aa9965fa8fc86e22c0fcb673775f089011 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 26 Jan 2023 12:11:54 +0000 Subject: [PATCH 176/326] Update sbt-scalajs, scalajs-compiler, ... to 1.13.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 329d918..bdf2bc6 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.12.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.11") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.6.0") From 2593e9adc4e6ad1b0c3edb9e161f9571e302889e Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 27 Jan 2023 20:25:35 +0000 Subject: [PATCH 177/326] Update sbt-scalajs, scalajs-compiler, ... to 1.13.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 329d918..bdf2bc6 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.12.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.11") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.6.0") From 04318ec757fbe3f947ace30c2160d3521e611d6e Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 30 Jan 2023 12:11:37 +0000 Subject: [PATCH 178/326] Update scala3-library, ... to 3.2.2 --- .github/workflows/ci.yml | 4 ++-- build.sbt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d5bab69..b509aa6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.10, 3.2.1] + scala: [2.13.10, 3.2.2] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -73,7 +73,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.2.1] + scala: [3.2.2] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index ed2b50e..fc15c2c 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ def myScalacOptions(version: String) = inThisBuild( List( organization := "io.github.nafg.css-dsl", - scalaVersion := "3.2.1", + scalaVersion := "3.2.2", crossScalaVersions := Seq("2.13.10", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") From 872faeb7de36ef55991b4838c0a2787de7fd69f9 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 30 Jan 2023 12:12:39 +0000 Subject: [PATCH 179/326] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b509aa6..0f19776 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -111,12 +111,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.2.1) + - name: Download target directories (3.2.2) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.2.1-${{ matrix.java }} + name: target-${{ matrix.os }}-3.2.2-${{ matrix.java }} - - name: Inflate target directories (3.2.1) + - name: Inflate target directories (3.2.2) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 51b0303..85d3bd4 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -9,6 +9,6 @@ pull_request_rules: - author=scala-steward - author=nafg-scala-steward[bot] - check-success=Build and Test (ubuntu-latest, 2.13.10, temurin@11) - - check-success=Build and Test (ubuntu-latest, 3.2.1, temurin@11) + - check-success=Build and Test (ubuntu-latest, 3.2.2, temurin@11) actions: queue: {} From 41d2626cbfb6475d8e69ba81ac1ef1566286e6cd Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 2 Feb 2023 18:16:00 +0000 Subject: [PATCH 180/326] Update ph-css to 7.0.0 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index c7ea9c2..72a9cc7 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.1" -libraryDependencies += "com.helger" % "ph-css" % "6.5.0" +libraryDependencies += "com.helger" % "ph-css" % "7.0.0" From f65fe3f74f5ad380f9737e238df056fd24170295 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 4 Feb 2023 17:48:55 +0000 Subject: [PATCH 181/326] Revert commit(s) 41d2626 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 72a9cc7..c7ea9c2 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.1" -libraryDependencies += "com.helger" % "ph-css" % "7.0.0" +libraryDependencies += "com.helger" % "ph-css" % "6.5.0" From 80b9d5f6a53165e02d385eb5730546855813c13e Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 4 Feb 2023 17:48:56 +0000 Subject: [PATCH 182/326] Update ph-css to 7.0.0 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index f539041..1399678 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.3" -libraryDependencies += "com.helger" % "ph-css" % "6.5.0" +libraryDependencies += "com.helger" % "ph-css" % "7.0.0" From 1aac58bf6938bc6ee07b3ea6ce0cb33ec62fc9ca Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sun, 12 Feb 2023 04:07:40 +0000 Subject: [PATCH 183/326] Update scalameta to 4.7.4 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 1399678..7122014 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.3" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.4" libraryDependencies += "com.helger" % "ph-css" % "7.0.0" From 0faaf827b909d38312f0e19bdbc2f4e373d6ebeb Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 24 Feb 2023 10:41:10 +0000 Subject: [PATCH 184/326] Update scalameta to 4.7.5 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 7122014..cc26297 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.4" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.5" libraryDependencies += "com.helger" % "ph-css" % "7.0.0" From aaa901101355fd4be7c06f42803cd9815b74c369 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 16 Mar 2023 20:03:35 +0000 Subject: [PATCH 185/326] Update scalameta to 4.7.6 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index cc26297..cdb0257 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.5" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.6" libraryDependencies += "com.helger" % "ph-css" % "7.0.0" From df36df4f3ebdb5f1ba76702ca0841ceaf433d213 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 10 Apr 2023 12:09:09 +0000 Subject: [PATCH 186/326] Update sbt-scalajs, scalajs-compiler, ... to 1.13.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index bdf2bc6..665b214 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.1") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.11") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.6.0") From 8fe577f3404344b19c79b2d402657eea93728325 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 20 Apr 2023 16:04:32 +0000 Subject: [PATCH 187/326] Update scalameta to 4.7.7 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index cdb0257..71307d0 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.6" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.7" libraryDependencies += "com.helger" % "ph-css" % "7.0.0" From e0b3ad885b546498bb69dcfd49a36c10995b7a58 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Tue, 2 May 2023 16:03:24 +0000 Subject: [PATCH 188/326] Update sbt-ci-release to 1.5.12 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 665b214..52f497a 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.1") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") -addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.11") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.6.0") libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.2.0" From f84fc3e13b789aca861b17c1eb6bf8f73d3e16e8 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sun, 21 May 2023 06:30:01 +0000 Subject: [PATCH 189/326] Update sbt-mergify-github-actions to 0.7.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 52f497a..3428170 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.1") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") -addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.6.0") +addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.7.0") libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.2.0" From 405e1ec00187befdc8cbe2bd3f711bd13cde3fc2 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sun, 21 May 2023 06:30:28 +0000 Subject: [PATCH 190/326] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .mergify.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.mergify.yml b/.mergify.yml index 85d3bd4..c9dae6c 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -11,4 +11,5 @@ pull_request_rules: - check-success=Build and Test (ubuntu-latest, 2.13.10, temurin@11) - check-success=Build and Test (ubuntu-latest, 3.2.2, temurin@11) actions: - queue: {} + queue: + name: default From 0e62851c8381c1dfaf6504e8a529b86614d537b1 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Tue, 30 May 2023 12:33:48 +0000 Subject: [PATCH 191/326] Update scala3-library, ... to 3.3.0 --- .github/workflows/ci.yml | 4 ++-- build.sbt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f19776..e745196 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.10, 3.2.2] + scala: [2.13.10, 3.3.0] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -73,7 +73,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.2.2] + scala: [3.3.0] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index fc15c2c..dacc0ee 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ def myScalacOptions(version: String) = inThisBuild( List( organization := "io.github.nafg.css-dsl", - scalaVersion := "3.2.2", + scalaVersion := "3.3.0", crossScalaVersions := Seq("2.13.10", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") From 187c55fe4693714b4923c48986371bdd8a78cabb Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Tue, 30 May 2023 12:34:50 +0000 Subject: [PATCH 192/326] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e745196..4d3719a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -111,12 +111,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.2.2) + - name: Download target directories (3.3.0) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.2.2-${{ matrix.java }} + name: target-${{ matrix.os }}-3.3.0-${{ matrix.java }} - - name: Inflate target directories (3.2.2) + - name: Inflate target directories (3.3.0) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index c9dae6c..0bbf992 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -9,7 +9,7 @@ pull_request_rules: - author=scala-steward - author=nafg-scala-steward[bot] - check-success=Build and Test (ubuntu-latest, 2.13.10, temurin@11) - - check-success=Build and Test (ubuntu-latest, 3.2.2, temurin@11) + - check-success=Build and Test (ubuntu-latest, 3.3.0, temurin@11) actions: queue: name: default From 1ca21f7d42bef7808e4c4c6ef8e01eb9b78c9104 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Wed, 31 May 2023 01:40:49 +0000 Subject: [PATCH 193/326] Update scalameta to 4.7.8 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 71307d0..e04e05c 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.7" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.8" libraryDependencies += "com.helger" % "ph-css" % "7.0.0" From 205328350ebd05021a3603331cefcea9bacb6832 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Wed, 7 Jun 2023 20:16:23 +0000 Subject: [PATCH 194/326] Update scala-library to 2.13.11 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d3719a..d828fe3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.10, 3.3.0] + scala: [2.13.11, 3.3.0] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index dacc0ee..429eeca 100644 --- a/build.sbt +++ b/build.sbt @@ -12,7 +12,7 @@ inThisBuild( List( organization := "io.github.nafg.css-dsl", scalaVersion := "3.3.0", - crossScalaVersions := Seq("2.13.10", scalaVersion.value), + crossScalaVersions := Seq("2.13.11", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") ) From 52e289f57617da092d19cc5b54cf0e2e7c86945b Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Wed, 7 Jun 2023 20:17:15 +0000 Subject: [PATCH 195/326] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d828fe3..07386b2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -101,12 +101,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.13.10) + - name: Download target directories (2.13.11) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.10-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.11-${{ matrix.java }} - - name: Inflate target directories (2.13.10) + - name: Inflate target directories (2.13.11) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 0bbf992..3f626da 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -8,7 +8,7 @@ pull_request_rules: - or: - author=scala-steward - author=nafg-scala-steward[bot] - - check-success=Build and Test (ubuntu-latest, 2.13.10, temurin@11) + - check-success=Build and Test (ubuntu-latest, 2.13.11, temurin@11) - check-success=Build and Test (ubuntu-latest, 3.3.0, temurin@11) actions: queue: From 3399c8767b75446e7fe5da648cb205491f684564 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Fri, 23 Jun 2023 08:22:17 +0000 Subject: [PATCH 196/326] Update sbt-scalajs, scalajs-compiler, ... to 1.13.2 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 3428170..2fd4e72 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.1") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.7.0") From 36316948a01d8ca6036cf0a5908a8c35507151fb Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 29 Jun 2023 20:18:02 +0000 Subject: [PATCH 197/326] Update scalameta to 4.8.0 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index e04e05c..74b32e0 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.8" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.0" libraryDependencies += "com.helger" % "ph-css" % "7.0.0" From 0628408faeed173983ea136436717e34776ff96a Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 29 Jun 2023 20:21:38 +0000 Subject: [PATCH 198/326] Update scalameta to 4.8.0 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index e04e05c..74b32e0 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.7.8" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.0" libraryDependencies += "com.helger" % "ph-css" % "7.0.0" From c5bde7decbe5b0606db28abae610b4fa95927396 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Tue, 4 Jul 2023 01:48:00 +0000 Subject: [PATCH 199/326] Update scalameta to 4.8.1 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 74b32e0..9b6981d 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.0" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.1" libraryDependencies += "com.helger" % "ph-css" % "7.0.0" From 95bdb78b4dd009ff5b07e36b1defc5d3bade3c50 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Wed, 5 Jul 2023 16:25:16 +0000 Subject: [PATCH 200/326] Update scalameta to 4.8.2 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 9b6981d..1503944 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.1" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.2" libraryDependencies += "com.helger" % "ph-css" % "7.0.0" From 50c93bad8556320f2b65e16abde6f57d4d372110 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 10 Jul 2023 20:18:43 +0000 Subject: [PATCH 201/326] Update scalameta to 4.8.3 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 1503944..feb5913 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.2" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.3" libraryDependencies += "com.helger" % "ph-css" % "7.0.0" From d3317eaf5a0a8f5eabaa3fba83be0676b9bdb5fb Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 13 Jul 2023 01:49:49 +0000 Subject: [PATCH 202/326] Update scalameta to 4.8.4 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index feb5913..66fd5ff 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.3" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.4" libraryDependencies += "com.helger" % "ph-css" % "7.0.0" From fb10c4aec1739e441cd8e6fe2e2671ed8c15a92e Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sun, 16 Jul 2023 16:21:38 +0000 Subject: [PATCH 203/326] Update scalameta to 4.8.5 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 66fd5ff..aacf411 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.4" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.5" libraryDependencies += "com.helger" % "ph-css" % "7.0.0" From 5e193bbdd404b82d73905543ae3c47b08685dd36 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 27 Jul 2023 01:14:37 +0000 Subject: [PATCH 204/326] Update scalameta to 4.8.6 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index aacf411..1543255 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.5" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.6" libraryDependencies += "com.helger" % "ph-css" % "7.0.0" From 81475da3f0974efa941bebd69a8d6dd399d8d937 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Tue, 1 Aug 2023 01:27:25 +0000 Subject: [PATCH 205/326] Update ph-css to 7.0.1 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 1543255..f14199c 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.6" -libraryDependencies += "com.helger" % "ph-css" % "7.0.0" +libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From 726c32a703f9cdc6d1bf1b6e9f728a4d6ade68d9 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Fri, 4 Aug 2023 01:18:54 +0000 Subject: [PATCH 206/326] Update scalameta to 4.8.7 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index f14199c..e82e3a8 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.6" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.7" libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From e6ec76d8d464e622341cab662b2dc89f09768207 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 21 Aug 2023 16:20:00 +0000 Subject: [PATCH 207/326] Update scalameta to 4.8.8 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index e82e3a8..edde750 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.7" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.8" libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From f68378c765160924ca8c047c8cdb4898aa6695e4 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 28 Aug 2023 20:16:11 +0000 Subject: [PATCH 208/326] Update scalameta to 4.8.9 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index edde750..2abef19 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.8" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.9" libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From 7a9fb46991beed32696badf028e9f0673b2c0433 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 31 Aug 2023 20:16:11 +0000 Subject: [PATCH 209/326] Update scalameta to 4.8.10 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 2abef19..1d725b8 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.9" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.10" libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From e2972b760cc799d91b08952f40970bf5edf08943 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 25 Sep 2023 12:31:58 +0000 Subject: [PATCH 210/326] Update sbt-scalajs, scalajs-compiler, ... to 1.14.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 2fd4e72..aa42285 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.14.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.7.0") From 756c579711fb208f7e306c973f915b78de46a152 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 25 Sep 2023 16:22:34 +0000 Subject: [PATCH 211/326] Update scalameta to 4.8.11 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 1d725b8..69ecef7 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.10" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.11" libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From f0c7cfceddd1a63cf9fbf3849d8c2af8ee60d917 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 12:36:57 +0000 Subject: [PATCH 212/326] Update scalameta to 4.8.12 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 69ecef7..663ac7e 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.11" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.12" libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From 420987b97dbdec5f209e079e3811cc8639f7d8f0 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Fri, 10 Nov 2023 12:33:18 +0000 Subject: [PATCH 213/326] Update scalameta to 4.8.13 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 663ac7e..e021abb 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.12" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.13" libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From a90b96d031e3322ffa90db6f7e9f328c545fa3ba Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 17 Nov 2023 21:21:47 +0000 Subject: [PATCH 214/326] Update scalameta to 4.8.14 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index e021abb..8f4d324 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.13" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.14" libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From 51a25538c4314ec098b8d73a3c34d50b178aab31 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 11 Sep 2023 12:31:58 +0000 Subject: [PATCH 215/326] Update scala-library to 2.13.12 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07386b2..9d679d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.11, 3.3.0] + scala: [2.13.12, 3.3.0] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index 429eeca..9b02eb6 100644 --- a/build.sbt +++ b/build.sbt @@ -12,7 +12,7 @@ inThisBuild( List( organization := "io.github.nafg.css-dsl", scalaVersion := "3.3.0", - crossScalaVersions := Seq("2.13.11", scalaVersion.value), + crossScalaVersions := Seq("2.13.12", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") ) From cc7889618537c6efffafd425daa2db13f1519921 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 11 Sep 2023 12:32:39 +0000 Subject: [PATCH 216/326] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9d679d2..4eaf56a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -101,12 +101,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.13.11) + - name: Download target directories (2.13.12) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.11-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.12-${{ matrix.java }} - - name: Inflate target directories (2.13.11) + - name: Inflate target directories (2.13.12) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 3f626da..9eb731e 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -8,7 +8,7 @@ pull_request_rules: - or: - author=scala-steward - author=nafg-scala-steward[bot] - - check-success=Build and Test (ubuntu-latest, 2.13.11, temurin@11) + - check-success=Build and Test (ubuntu-latest, 2.13.12, temurin@11) - check-success=Build and Test (ubuntu-latest, 3.3.0, temurin@11) actions: queue: From 1454f71cc560285aceff9256a7efd4e021e844c4 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 7 Sep 2023 20:16:58 +0000 Subject: [PATCH 217/326] Update scala3-library, ... to 3.3.1 --- .github/workflows/ci.yml | 4 ++-- build.sbt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07386b2..0e729f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.11, 3.3.0] + scala: [2.13.11, 3.3.1] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -73,7 +73,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.3.0] + scala: [3.3.1] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index 429eeca..d8250a7 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ def myScalacOptions(version: String) = inThisBuild( List( organization := "io.github.nafg.css-dsl", - scalaVersion := "3.3.0", + scalaVersion := "3.3.1", crossScalaVersions := Seq("2.13.11", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") From 8188e1f6863ce8a943b26ba4506912e90da1af56 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 7 Sep 2023 20:17:54 +0000 Subject: [PATCH 218/326] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e729f2..057dfc1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -111,12 +111,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.3.0) + - name: Download target directories (3.3.1) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.3.0-${{ matrix.java }} + name: target-${{ matrix.os }}-3.3.1-${{ matrix.java }} - - name: Inflate target directories (3.3.0) + - name: Inflate target directories (3.3.1) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 3f626da..e821535 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -9,7 +9,7 @@ pull_request_rules: - author=scala-steward - author=nafg-scala-steward[bot] - check-success=Build and Test (ubuntu-latest, 2.13.11, temurin@11) - - check-success=Build and Test (ubuntu-latest, 3.3.0, temurin@11) + - check-success=Build and Test (ubuntu-latest, 3.3.1, temurin@11) actions: queue: name: default From ebd77fecb595416222e3b3d115b8d4700402c5d1 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 08:26:50 +0000 Subject: [PATCH 219/326] Revert commit(s) 8188e1f, 1454f71 --- .github/workflows/ci.yml | 10 +++++----- .mergify.yml | 2 +- build.sbt | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 057dfc1..07386b2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.11, 3.3.1] + scala: [2.13.11, 3.3.0] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -73,7 +73,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.3.1] + scala: [3.3.0] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -111,12 +111,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.3.1) + - name: Download target directories (3.3.0) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.3.1-${{ matrix.java }} + name: target-${{ matrix.os }}-3.3.0-${{ matrix.java }} - - name: Inflate target directories (3.3.1) + - name: Inflate target directories (3.3.0) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index e821535..3f626da 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -9,7 +9,7 @@ pull_request_rules: - author=scala-steward - author=nafg-scala-steward[bot] - check-success=Build and Test (ubuntu-latest, 2.13.11, temurin@11) - - check-success=Build and Test (ubuntu-latest, 3.3.1, temurin@11) + - check-success=Build and Test (ubuntu-latest, 3.3.0, temurin@11) actions: queue: name: default diff --git a/build.sbt b/build.sbt index d8250a7..429eeca 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ def myScalacOptions(version: String) = inThisBuild( List( organization := "io.github.nafg.css-dsl", - scalaVersion := "3.3.1", + scalaVersion := "3.3.0", crossScalaVersions := Seq("2.13.11", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") From c068427841ae90faf7fee67074655e9986a51c5a Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 08:26:50 +0000 Subject: [PATCH 220/326] Update scala3-library, ... to 3.3.1 --- .github/workflows/ci.yml | 4 ++-- build.sbt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4eaf56a..9b5aca6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.12, 3.3.0] + scala: [2.13.12, 3.3.1] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -73,7 +73,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.3.0] + scala: [3.3.1] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index 9b02eb6..9e12aaf 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ def myScalacOptions(version: String) = inThisBuild( List( organization := "io.github.nafg.css-dsl", - scalaVersion := "3.3.0", + scalaVersion := "3.3.1", crossScalaVersions := Seq("2.13.12", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") From b33261d08ca9a4ba68547753638c39557010e664 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 08:27:08 +0000 Subject: [PATCH 221/326] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9b5aca6..462205c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -111,12 +111,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.3.0) + - name: Download target directories (3.3.1) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.3.0-${{ matrix.java }} + name: target-${{ matrix.os }}-3.3.1-${{ matrix.java }} - - name: Inflate target directories (3.3.0) + - name: Inflate target directories (3.3.1) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 9eb731e..464e675 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -9,7 +9,7 @@ pull_request_rules: - author=scala-steward - author=nafg-scala-steward[bot] - check-success=Build and Test (ubuntu-latest, 2.13.12, temurin@11) - - check-success=Build and Test (ubuntu-latest, 3.3.0, temurin@11) + - check-success=Build and Test (ubuntu-latest, 3.3.1, temurin@11) actions: queue: name: default From 1d7cd5f44e8e883302f256472e4580426a57f9cf Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Tue, 21 Nov 2023 23:22:37 +0100 Subject: [PATCH 222/326] Update scala3-library, ... to 3.3.1 (#251) * Update scala3-library, ... to 3.3.1 * Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate * Revert commit(s) 20cb8ac, c68b2b3 * Update scala3-library, ... to 3.3.1 * Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 10 +++++----- .mergify.yml | 2 +- build.sbt | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4eaf56a..462205c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.12, 3.3.0] + scala: [2.13.12, 3.3.1] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -73,7 +73,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.3.0] + scala: [3.3.1] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -111,12 +111,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.3.0) + - name: Download target directories (3.3.1) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.3.0-${{ matrix.java }} + name: target-${{ matrix.os }}-3.3.1-${{ matrix.java }} - - name: Inflate target directories (3.3.0) + - name: Inflate target directories (3.3.1) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 9eb731e..464e675 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -9,7 +9,7 @@ pull_request_rules: - author=scala-steward - author=nafg-scala-steward[bot] - check-success=Build and Test (ubuntu-latest, 2.13.12, temurin@11) - - check-success=Build and Test (ubuntu-latest, 3.3.0, temurin@11) + - check-success=Build and Test (ubuntu-latest, 3.3.1, temurin@11) actions: queue: name: default diff --git a/build.sbt b/build.sbt index 9b02eb6..9e12aaf 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ def myScalacOptions(version: String) = inThisBuild( List( organization := "io.github.nafg.css-dsl", - scalaVersion := "3.3.0", + scalaVersion := "3.3.1", crossScalaVersions := Seq("2.13.12", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") From a3085ac8d3a6e066fa83923ddce2ae135a6b36a5 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Fri, 29 Dec 2023 20:17:31 +0000 Subject: [PATCH 223/326] Update scalameta to 4.8.15 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 8f4d324..6679add 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.14" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.15" libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From 31f87d0c2b11f0cd4f427ab9a0f82379515c1626 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sun, 31 Dec 2023 20:17:09 +0000 Subject: [PATCH 224/326] Update sbt-scalajs, scalajs-compiler, ... to 1.15.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index aa42285..1289d06 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.14.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.15.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.7.0") From 177b0ce962714244ddb4ba74609bf6920863ac25 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 21 Feb 2024 23:12:22 +0000 Subject: [PATCH 225/326] Update scalameta to 4.9.0 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 6679add..96c1198 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.8.15" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.0" libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From f7a96547224a7f2be96924f2cfad46aa2af2ceea Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sat, 2 Mar 2024 01:03:16 +0000 Subject: [PATCH 226/326] Update scalameta to 4.9.1 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 96c1198..61d3723 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.0" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.1" libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From e45b4eef739ce8cfee6454254720e1044e26d936 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Wed, 13 Mar 2024 01:06:28 +0000 Subject: [PATCH 227/326] Update scalameta to 4.9.2 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 61d3723..10736bf 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.1" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.2" libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From 89a20a3898ff531294066b8ae319ec056c2c9b1b Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 20 Mar 2024 18:10:54 +0000 Subject: [PATCH 228/326] Update sbt-scalajs, scalajs-compiler, ... to 1.16.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 1289d06..f0c8317 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.15.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.7.0") From fa36ca00187cf8e668b6f298ede10d47bbd066ee Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Wed, 22 May 2024 16:09:32 -0400 Subject: [PATCH 229/326] Pin Bulma to 0.x --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 9e12aaf..e190316 100644 --- a/build.sbt +++ b/build.sbt @@ -76,7 +76,7 @@ val bulmaConfig = CssDslConfig( "Bulma", Set(None, Some("b")), - latestTag("bulma"), + latestIn("bulma", 0), // pin at 0.x until https://github.com/phax/ph-css/issues/97 is fixed "https://cdn.jsdelivr.net/npm/bulma@" + _ + "/css/bulma.min.css" ) From 8863a82593371672e95b68738ab1e8b567cf0ab3 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 31 Oct 2022 04:39:48 +0000 Subject: [PATCH 230/326] Update sbt to 1.7.3 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 1cfbe55..f5b9ea7 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.7.2 +sbt.version = 1.7.3 From 0b1341615f55306563da16d73bb76d720a08b9ce Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 01:07:12 +0000 Subject: [PATCH 231/326] Update scala-library to 2.13.13 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 462205c..8a0ffd5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.12, 3.3.1] + scala: [2.13.13, 3.3.1] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index e190316..1bb7a95 100644 --- a/build.sbt +++ b/build.sbt @@ -12,7 +12,7 @@ inThisBuild( List( organization := "io.github.nafg.css-dsl", scalaVersion := "3.3.1", - crossScalaVersions := Seq("2.13.12", scalaVersion.value), + crossScalaVersions := Seq("2.13.13", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") ) From 631f36dafbb2f573ed1086db84c4437f5ec56fe5 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 01:07:45 +0000 Subject: [PATCH 232/326] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a0ffd5..08490bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -101,12 +101,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.13.12) + - name: Download target directories (2.13.13) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.12-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.13-${{ matrix.java }} - - name: Inflate target directories (2.13.12) + - name: Inflate target directories (2.13.13) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 464e675..7103a8a 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -8,7 +8,7 @@ pull_request_rules: - or: - author=scala-steward - author=nafg-scala-steward[bot] - - check-success=Build and Test (ubuntu-latest, 2.13.12, temurin@11) + - check-success=Build and Test (ubuntu-latest, 2.13.13, temurin@11) - check-success=Build and Test (ubuntu-latest, 3.3.1, temurin@11) actions: queue: From 811315c5476b6a98ac4c5b1f6fa2455c38462a72 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 28 Mar 2024 18:29:44 +0000 Subject: [PATCH 233/326] Update ph-css to 7.0.2 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 10736bf..1c14af5 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.2" -libraryDependencies += "com.helger" % "ph-css" % "7.0.1" +libraryDependencies += "com.helger" % "ph-css" % "7.0.2" From ad8eb50e8efaca90e27cb4f5d71bd0c52d6e2ca8 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 15 Apr 2024 03:27:02 +0000 Subject: [PATCH 234/326] Update scalatags to 0.13.1 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1bb7a95..1a9aff3 100644 --- a/build.sbt +++ b/build.sbt @@ -43,7 +43,7 @@ def scalaJsReactSettings(config: CssDslConfig) = Seq( ) def scalatagsSettings(config: CssDslConfig) = Seq( - libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.12.0", + libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.13.1", cssVariant := TargetImpl.Scalatags, cssDslConfig := config ) From 6941497d25a32f2090344b091bcaac34b1a9b004 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 15 Apr 2024 17:52:00 +0000 Subject: [PATCH 235/326] Update scalatags to 0.13.1 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1bb7a95..1a9aff3 100644 --- a/build.sbt +++ b/build.sbt @@ -43,7 +43,7 @@ def scalaJsReactSettings(config: CssDslConfig) = Seq( ) def scalatagsSettings(config: CssDslConfig) = Seq( - libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.12.0", + libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.13.1", cssVariant := TargetImpl.Scalatags, cssDslConfig := config ) From 5cbcc7b145dc5611168024efe4a80d9d2c6cc67f Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 20:19:21 +0000 Subject: [PATCH 236/326] Update scala3-library, ... to 3.3.3 --- .github/workflows/ci.yml | 4 ++-- build.sbt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08490bd..40633f1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.13, 3.3.1] + scala: [2.13.12, 3.3.3] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -73,7 +73,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.3.1] + scala: [3.3.3] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index 1bb7a95..b05171f 100644 --- a/build.sbt +++ b/build.sbt @@ -11,8 +11,8 @@ def myScalacOptions(version: String) = inThisBuild( List( organization := "io.github.nafg.css-dsl", - scalaVersion := "3.3.1", - crossScalaVersions := Seq("2.13.13", scalaVersion.value), + scalaVersion := "3.3.3", + crossScalaVersions := Seq("2.13.12", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") ) From 2d084e078ba60be88c3818691ad7669e7ae0b9a9 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 20:19:58 +0000 Subject: [PATCH 237/326] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 12 ++++++------ .mergify.yml | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40633f1..24cf6af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -101,22 +101,22 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.13.13) + - name: Download target directories (2.13.12) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.13-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.12-${{ matrix.java }} - - name: Inflate target directories (2.13.13) + - name: Inflate target directories (2.13.12) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (3.3.1) + - name: Download target directories (3.3.3) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.3.1-${{ matrix.java }} + name: target-${{ matrix.os }}-3.3.3-${{ matrix.java }} - - name: Inflate target directories (3.3.1) + - name: Inflate target directories (3.3.3) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 7103a8a..953c34d 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -8,8 +8,8 @@ pull_request_rules: - or: - author=scala-steward - author=nafg-scala-steward[bot] - - check-success=Build and Test (ubuntu-latest, 2.13.13, temurin@11) - - check-success=Build and Test (ubuntu-latest, 3.3.1, temurin@11) + - check-success=Build and Test (ubuntu-latest, 2.13.12, temurin@11) + - check-success=Build and Test (ubuntu-latest, 3.3.3, temurin@11) actions: queue: name: default From c60cb5d47e6031711add93c5a94fa992e35e22db Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Fri, 29 Mar 2024 08:20:10 +0000 Subject: [PATCH 238/326] Update scalameta to 4.9.3 --- project/build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/build.sbt b/project/build.sbt index 1c14af5..0f96402 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.2" -libraryDependencies += "com.helger" % "ph-css" % "7.0.2" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.3" +libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From f1ee8c60f36586dc3a8d7cc06598c69665fbdefb Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Wed, 15 May 2024 20:24:34 +0000 Subject: [PATCH 239/326] Update scala-library to 2.13.14 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 24cf6af..7821507 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.12, 3.3.3] + scala: [2.13.14, 3.3.3] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index 43b58c7..16f37a2 100644 --- a/build.sbt +++ b/build.sbt @@ -12,7 +12,7 @@ inThisBuild( List( organization := "io.github.nafg.css-dsl", scalaVersion := "3.3.3", - crossScalaVersions := Seq("2.13.12", scalaVersion.value), + crossScalaVersions := Seq("2.13.14", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") ) From 0dd76bc663e71de9037d7d217991c85127d0cc64 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Wed, 15 May 2024 20:24:51 +0000 Subject: [PATCH 240/326] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7821507..6b71e1d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -101,12 +101,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.13.12) + - name: Download target directories (2.13.14) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.12-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.14-${{ matrix.java }} - - name: Inflate target directories (2.13.12) + - name: Inflate target directories (2.13.14) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 953c34d..3050714 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -8,7 +8,7 @@ pull_request_rules: - or: - author=scala-steward - author=nafg-scala-steward[bot] - - check-success=Build and Test (ubuntu-latest, 2.13.12, temurin@11) + - check-success=Build and Test (ubuntu-latest, 2.13.14, temurin@11) - check-success=Build and Test (ubuntu-latest, 3.3.3, temurin@11) actions: queue: From 5d1216afd371e475ce0c4082ccb0542395798ad7 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 19 May 2024 15:36:44 +0000 Subject: [PATCH 241/326] Update scalameta to 4.9.5 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 0f96402..ae6e4b3 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.3" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.5" libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From 962ea3fe08740cb91f1c68d38ef38378c91fab45 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 01:07:12 +0000 Subject: [PATCH 242/326] Update scala-library to 2.13.13 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 462205c..8a0ffd5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.12, 3.3.1] + scala: [2.13.13, 3.3.1] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index e190316..1bb7a95 100644 --- a/build.sbt +++ b/build.sbt @@ -12,7 +12,7 @@ inThisBuild( List( organization := "io.github.nafg.css-dsl", scalaVersion := "3.3.1", - crossScalaVersions := Seq("2.13.12", scalaVersion.value), + crossScalaVersions := Seq("2.13.13", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") ) From 51ca734192369c693ec96aedcfa400fd60c26baf Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 01:07:45 +0000 Subject: [PATCH 243/326] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a0ffd5..08490bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -101,12 +101,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.13.12) + - name: Download target directories (2.13.13) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.12-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.13-${{ matrix.java }} - - name: Inflate target directories (2.13.12) + - name: Inflate target directories (2.13.13) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 464e675..7103a8a 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -8,7 +8,7 @@ pull_request_rules: - or: - author=scala-steward - author=nafg-scala-steward[bot] - - check-success=Build and Test (ubuntu-latest, 2.13.12, temurin@11) + - check-success=Build and Test (ubuntu-latest, 2.13.13, temurin@11) - check-success=Build and Test (ubuntu-latest, 3.3.1, temurin@11) actions: queue: From ae7b3444c909957e5d83cbd3ec6abac56a302563 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 28 Mar 2024 18:29:44 +0000 Subject: [PATCH 244/326] Update ph-css to 7.0.2 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 10736bf..1c14af5 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.2" -libraryDependencies += "com.helger" % "ph-css" % "7.0.1" +libraryDependencies += "com.helger" % "ph-css" % "7.0.2" From 20aed25046bd949348d2a0859ec55edb3913a457 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 15 Apr 2024 03:27:02 +0000 Subject: [PATCH 245/326] Update scalatags to 0.13.1 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1bb7a95..1a9aff3 100644 --- a/build.sbt +++ b/build.sbt @@ -43,7 +43,7 @@ def scalaJsReactSettings(config: CssDslConfig) = Seq( ) def scalatagsSettings(config: CssDslConfig) = Seq( - libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.12.0", + libraryDependencies += "com.lihaoyi" %%% "scalatags" % "0.13.1", cssVariant := TargetImpl.Scalatags, cssDslConfig := config ) From ce39c47844535581e058ce434728c18f21129863 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 20:19:21 +0000 Subject: [PATCH 246/326] Update scala3-library, ... to 3.3.3 --- .github/workflows/ci.yml | 4 ++-- build.sbt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08490bd..40633f1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.13, 3.3.1] + scala: [2.13.12, 3.3.3] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -73,7 +73,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.3.1] + scala: [3.3.3] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index 1a9aff3..43b58c7 100644 --- a/build.sbt +++ b/build.sbt @@ -11,8 +11,8 @@ def myScalacOptions(version: String) = inThisBuild( List( organization := "io.github.nafg.css-dsl", - scalaVersion := "3.3.1", - crossScalaVersions := Seq("2.13.13", scalaVersion.value), + scalaVersion := "3.3.3", + crossScalaVersions := Seq("2.13.12", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") ) From f2b35e004b3cbf0e76932a0823ff5b85b20c3568 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 20:19:58 +0000 Subject: [PATCH 247/326] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 12 ++++++------ .mergify.yml | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40633f1..24cf6af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -101,22 +101,22 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.13.13) + - name: Download target directories (2.13.12) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.13-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.12-${{ matrix.java }} - - name: Inflate target directories (2.13.13) + - name: Inflate target directories (2.13.12) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (3.3.1) + - name: Download target directories (3.3.3) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.3.1-${{ matrix.java }} + name: target-${{ matrix.os }}-3.3.3-${{ matrix.java }} - - name: Inflate target directories (3.3.1) + - name: Inflate target directories (3.3.3) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 7103a8a..953c34d 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -8,8 +8,8 @@ pull_request_rules: - or: - author=scala-steward - author=nafg-scala-steward[bot] - - check-success=Build and Test (ubuntu-latest, 2.13.13, temurin@11) - - check-success=Build and Test (ubuntu-latest, 3.3.1, temurin@11) + - check-success=Build and Test (ubuntu-latest, 2.13.12, temurin@11) + - check-success=Build and Test (ubuntu-latest, 3.3.3, temurin@11) actions: queue: name: default From 3382957ac6b5510867be02e947ae1712b0b4155b Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Fri, 29 Mar 2024 08:20:10 +0000 Subject: [PATCH 248/326] Update scalameta to 4.9.3 --- project/build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/build.sbt b/project/build.sbt index 1c14af5..0f96402 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.2" -libraryDependencies += "com.helger" % "ph-css" % "7.0.2" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.3" +libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From 97002d75450358e8ee95f48d7c515e29b68356a5 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Wed, 15 May 2024 20:24:34 +0000 Subject: [PATCH 249/326] Update scala-library to 2.13.14 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 24cf6af..7821507 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.12, 3.3.3] + scala: [2.13.14, 3.3.3] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index 43b58c7..16f37a2 100644 --- a/build.sbt +++ b/build.sbt @@ -12,7 +12,7 @@ inThisBuild( List( organization := "io.github.nafg.css-dsl", scalaVersion := "3.3.3", - crossScalaVersions := Seq("2.13.12", scalaVersion.value), + crossScalaVersions := Seq("2.13.14", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") ) From 9b58b4320a6c3a8c5ec925cb600d221697c0b63a Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Wed, 15 May 2024 20:24:51 +0000 Subject: [PATCH 250/326] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 6 +++--- .mergify.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7821507..6b71e1d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -101,12 +101,12 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} - - name: Download target directories (2.13.12) + - name: Download target directories (2.13.14) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-2.13.12-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.14-${{ matrix.java }} - - name: Inflate target directories (2.13.12) + - name: Inflate target directories (2.13.14) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 953c34d..3050714 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -8,7 +8,7 @@ pull_request_rules: - or: - author=scala-steward - author=nafg-scala-steward[bot] - - check-success=Build and Test (ubuntu-latest, 2.13.12, temurin@11) + - check-success=Build and Test (ubuntu-latest, 2.13.14, temurin@11) - check-success=Build and Test (ubuntu-latest, 3.3.3, temurin@11) actions: queue: From 244287c1ed6d5e28367285d6ba32bcf0c9d8e5af Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 19 May 2024 15:36:44 +0000 Subject: [PATCH 251/326] Update scalameta to 4.9.5 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 0f96402..ae6e4b3 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.3" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.5" libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From 595918d92fdd3809538dab14b51c7f1bd79f9114 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 25 May 2024 16:37:28 +0000 Subject: [PATCH 252/326] Update scalac-options to 0.3.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index f0c8317..117d6b3 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,4 +2,4 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.7.0") -libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.2.0" +libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.3.0" From ae9dc048f10180df43881d4fd268e65f60d5e92f Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Sun, 8 Jan 2023 16:29:12 -0500 Subject: [PATCH 253/326] sbt 1.8.2 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index f5b9ea7..ef3d266 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.7.3 +sbt.version = 1.8.3 From 875fc220038c24d20ea54f73883c26dd7ad22ed4 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 23 May 2024 06:32:33 +0000 Subject: [PATCH 254/326] Update sbt-mergify-github-actions to 0.8.2 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 117d6b3..f66189a 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") -addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.7.0") +addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.8.2") libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.3.0" From 59f64d2ba484fcf3257439e75a2850286f721eb5 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 23 May 2024 06:33:10 +0000 Subject: [PATCH 255/326] Regenerate GitHub Actions workflow Executed command: sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 62 ++++++++++++------------------------- .github/workflows/clean.yml | 3 +- .mergify.yml | 4 +-- 3 files changed, 24 insertions(+), 45 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6b71e1d..0c9f254 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,44 +24,33 @@ jobs: matrix: os: [ubuntu-latest] scala: [2.13.14, 3.3.3] - java: [temurin@11] + java: [temurin@8] runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Setup Java (temurin@11) - if: matrix.java == 'temurin@11' - uses: actions/setup-java@v2 + - name: Setup Java (temurin@8) + if: matrix.java == 'temurin@8' + uses: actions/setup-java@v4 with: distribution: temurin - java-version: 11 - - - name: Cache sbt - uses: actions/cache@v2 - with: - path: | - ~/.sbt - ~/.ivy2/cache - ~/.coursier/cache/v1 - ~/.cache/coursier/v1 - ~/AppData/Local/Coursier/Cache/v1 - ~/Library/Caches/Coursier/v1 - key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} + java-version: 8 + cache: sbt - name: Check that workflows are up to date - run: sbt ++${{ matrix.scala }} githubWorkflowCheck + run: sbt '++ ${{ matrix.scala }}' githubWorkflowCheck - name: Build project - run: sbt ++${{ matrix.scala }} test + run: sbt '++ ${{ matrix.scala }}' test - name: Compress target directories run: tar cf targets.tar bootstrap3_scalatags/target fomanticui_scalatags/target bootstrap4_scalatags/target bulma_scalatags/target bootstrap3_scalajsreact/target fontawesome_scalatags/target bootstrap5_scalajsreact/target target bulma_scalajsreact/target bootstrap4_scalajsreact/target fontawesome_scalajsreact/target semanticui_scalajsreact/target semanticui_scalatags/target fomanticui_scalajsreact/target bootstrap5_scalatags/target project/target - name: Upload target directories - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: target-${{ matrix.os }}-${{ matrix.scala }}-${{ matrix.java }} path: targets.tar @@ -74,35 +63,24 @@ jobs: matrix: os: [ubuntu-latest] scala: [3.3.3] - java: [temurin@11] + java: [temurin@8] runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Setup Java (temurin@11) - if: matrix.java == 'temurin@11' - uses: actions/setup-java@v2 + - name: Setup Java (temurin@8) + if: matrix.java == 'temurin@8' + uses: actions/setup-java@v4 with: distribution: temurin - java-version: 11 - - - name: Cache sbt - uses: actions/cache@v2 - with: - path: | - ~/.sbt - ~/.ivy2/cache - ~/.coursier/cache/v1 - ~/.cache/coursier/v1 - ~/AppData/Local/Coursier/Cache/v1 - ~/Library/Caches/Coursier/v1 - key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} + java-version: 8 + cache: sbt - name: Download target directories (2.13.14) - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: target-${{ matrix.os }}-2.13.14-${{ matrix.java }} @@ -112,7 +90,7 @@ jobs: rm targets.tar - name: Download target directories (3.3.3) - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: target-${{ matrix.os }}-3.3.3-${{ matrix.java }} @@ -126,4 +104,4 @@ jobs: PGP_SECRET: ${{ secrets.PGP_SECRET }} SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} - run: sbt ++${{ matrix.scala }} ci-release + run: sbt ci-release diff --git a/.github/workflows/clean.yml b/.github/workflows/clean.yml index 547aaa4..bfc865d 100644 --- a/.github/workflows/clean.yml +++ b/.github/workflows/clean.yml @@ -17,6 +17,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - name: Delete artifacts + shell: bash {0} run: | # Customize those three lines with your repository and credentials: REPO=${GITHUB_API_URL}/repos/${{ github.repository }} @@ -25,7 +26,7 @@ jobs: ghapi() { curl --silent --location --user _:$GITHUB_TOKEN "$@"; } # A temporary file which receives HTTP response headers. - TMPFILE=/tmp/tmp.$$ + TMPFILE=$(mktemp) # An associative array, key: artifact name, value: number of artifacts of that name. declare -A ARTCOUNT diff --git a/.mergify.yml b/.mergify.yml index 3050714..fa886b4 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -8,8 +8,8 @@ pull_request_rules: - or: - author=scala-steward - author=nafg-scala-steward[bot] - - check-success=Build and Test (ubuntu-latest, 2.13.14, temurin@11) - - check-success=Build and Test (ubuntu-latest, 3.3.3, temurin@11) + - check-success=Build and Test (ubuntu-latest, 2.13.14, temurin@8) + - check-success=Build and Test (ubuntu-latest, 3.3.3, temurin@8) actions: queue: name: default From 0549b9097f3dd2b250f8df14883618f9fe04d21f Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Sun, 26 May 2024 03:30:11 -0400 Subject: [PATCH 256/326] Build on Java 11 --- .github/workflows/ci.yml | 16 ++++++++-------- .mergify.yml | 4 ++-- ci.sbt | 1 + 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c9f254..e048325 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: matrix: os: [ubuntu-latest] scala: [2.13.14, 3.3.3] - java: [temurin@8] + java: [temurin@11] runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) @@ -32,12 +32,12 @@ jobs: with: fetch-depth: 0 - - name: Setup Java (temurin@8) - if: matrix.java == 'temurin@8' + - name: Setup Java (temurin@11) + if: matrix.java == 'temurin@11' uses: actions/setup-java@v4 with: distribution: temurin - java-version: 8 + java-version: 11 cache: sbt - name: Check that workflows are up to date @@ -63,7 +63,7 @@ jobs: matrix: os: [ubuntu-latest] scala: [3.3.3] - java: [temurin@8] + java: [temurin@11] runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) @@ -71,12 +71,12 @@ jobs: with: fetch-depth: 0 - - name: Setup Java (temurin@8) - if: matrix.java == 'temurin@8' + - name: Setup Java (temurin@11) + if: matrix.java == 'temurin@11' uses: actions/setup-java@v4 with: distribution: temurin - java-version: 8 + java-version: 11 cache: sbt - name: Download target directories (2.13.14) diff --git a/.mergify.yml b/.mergify.yml index fa886b4..3050714 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -8,8 +8,8 @@ pull_request_rules: - or: - author=scala-steward - author=nafg-scala-steward[bot] - - check-success=Build and Test (ubuntu-latest, 2.13.14, temurin@8) - - check-success=Build and Test (ubuntu-latest, 3.3.3, temurin@8) + - check-success=Build and Test (ubuntu-latest, 2.13.14, temurin@11) + - check-success=Build and Test (ubuntu-latest, 3.3.3, temurin@11) actions: queue: name: default diff --git a/ci.sbt b/ci.sbt index 1730c3c..986752e 100644 --- a/ci.sbt +++ b/ci.sbt @@ -8,6 +8,7 @@ inThisBuild(List( dynverSonatypeSnapshots := true, githubWorkflowTargetTags ++= Seq("v*"), githubWorkflowPublishTargetBranches := Seq(RefPredicate.StartsWith(Ref.Tag("v"))), + githubWorkflowJavaVersions := Seq(JavaSpec.temurin("11")), githubWorkflowPublish := Seq( WorkflowStep.Sbt( List("ci-release"), From 8959c6da9bf5d2b0d1e1fe7f2e11a06be7392d61 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sun, 26 May 2024 08:15:33 +0000 Subject: [PATCH 257/326] Update sbt to 1.10.0 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index ef3d266..be54e77 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.8.3 +sbt.version = 1.10.0 From bc9c41e54a940ded1596d65e64aaa4ad5e4075d5 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Fri, 14 Jun 2024 16:15:07 +0000 Subject: [PATCH 258/326] Update scalameta to 4.9.6 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index ae6e4b3..b94befb 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.5" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.6" libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From f89f7636a969ad35bc57b07d66e592b00cc34dae Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 00:57:21 +0000 Subject: [PATCH 259/326] Update scalameta to 4.9.7 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index b94befb..1546680 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.6" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.7" libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From 5b8b0d3dea3c101e8635b995d018e9745e7bd5a1 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 8 Jul 2024 01:02:07 +0000 Subject: [PATCH 260/326] Update sbt to 1.10.1 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index be54e77..136f452 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.10.0 +sbt.version = 1.10.1 From 7b72b211001988ee51e0fc06e04637f6b1eff20a Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 8 Jul 2024 16:16:24 +0000 Subject: [PATCH 261/326] Update scalameta to 4.9.8 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 1546680..a48f46f 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.7" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.8" libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From aa4434c22fe451a38510a27eb6a91cd603061e6f Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 11 Jul 2024 08:16:37 +0000 Subject: [PATCH 262/326] Update scalajs-react:core to 2.1.2 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 16f37a2..51439dc 100644 --- a/build.sbt +++ b/build.sbt @@ -37,7 +37,7 @@ def latestIn(pkg: String, versionMajor: Int) = npmView(s"$pkg@$versionMajor", "version")(_.last match { case npmViewVersionRegex(v) => v }) def scalaJsReactSettings(config: CssDslConfig) = Seq( - libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "2.1.1", + libraryDependencies += "com.github.japgolly.scalajs-react" %%% "core" % "2.1.2", cssVariant := TargetImpl.ScalaJsReact, cssDslConfig := config ) From ce11fb90dcfca989fbc5e6d17c18c49cc5ccbf5a Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sun, 28 Jul 2024 23:04:41 +0000 Subject: [PATCH 263/326] Update scalameta to 4.9.9 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index a48f46f..ae74925 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.8" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.9" libraryDependencies += "com.helger" % "ph-css" % "7.0.1" From 1207ce5a69ac8bd539e8d36058c9cd1ab2253aa8 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 20:12:10 +0000 Subject: [PATCH 264/326] Update sbt-ci-release to 1.6.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index f66189a..cecd59b 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") -addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.6.0") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.8.2") libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.3.0" From 90bb36dd4216b5038c28a846ee3eccbc41dc67ce Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 20:12:02 +0000 Subject: [PATCH 265/326] Update sbt-ci-release to 1.6.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index cecd59b..f164c3d 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") -addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.6.0") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.6.1") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.8.2") libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.3.0" From 5cdf065a6542b5dafa60757cfac845a1f278136a Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 01:00:14 +0000 Subject: [PATCH 266/326] Update sbt to 1.10.2 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 136f452..23f7d97 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.10.1 +sbt.version = 1.10.2 From ea20f14fe6534b2743f432b86ef1244d1e2c9ffc Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2024 12:22:39 +0000 Subject: [PATCH 267/326] Update ph-css to 7.0.3 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index ae74925..98ae48b 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.9" -libraryDependencies += "com.helger" % "ph-css" % "7.0.1" +libraryDependencies += "com.helger" % "ph-css" % "7.0.3" From fa502fe2639c45f33e62851600a0208e4b8a5677 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Tue, 24 Sep 2024 00:56:44 +0000 Subject: [PATCH 268/326] Update scalameta to 4.10.0 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 98ae48b..0314e12 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.9.9" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.10.0" libraryDependencies += "com.helger" % "ph-css" % "7.0.3" From c5be24dc6d29b2543f4280ab645ce25eae8e9ba1 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 24 Sep 2024 15:21:50 +0000 Subject: [PATCH 269/326] Update scalameta to 4.10.1 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 0314e12..e631605 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.10.0" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.10.1" libraryDependencies += "com.helger" % "ph-css" % "7.0.3" From f1e0b66372f270152909d528c791196e8cc73e25 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Fri, 27 Sep 2024 00:56:28 +0000 Subject: [PATCH 270/326] Update sbt-mergify-github-actions to 0.9.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index f164c3d..e60589a 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.6.1") -addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.8.2") +addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.9.0") libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.3.0" From 1668c8c2193e0375ea18b393c897091c3781b177 Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Fri, 27 Sep 2024 16:30:17 -0400 Subject: [PATCH 271/326] Run sbt githubWorkflowGenerate --- .github/workflows/ci.yml | 6 ++++++ .mergify.yml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e048325..f92b1c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,6 +40,9 @@ jobs: java-version: 11 cache: sbt + - name: Setup sbt + uses: sbt/setup-sbt@v1 + - name: Check that workflows are up to date run: sbt '++ ${{ matrix.scala }}' githubWorkflowCheck @@ -79,6 +82,9 @@ jobs: java-version: 11 cache: sbt + - name: Setup sbt + uses: sbt/setup-sbt@v1 + - name: Download target directories (2.13.14) uses: actions/download-artifact@v4 with: diff --git a/.mergify.yml b/.mergify.yml index 3050714..6bbb833 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -1,7 +1,7 @@ defaults: {} queue_rules: - name: default - conditions: [] + merge_conditions: [] pull_request_rules: - name: Automatically merge successful Scala Steward PRs conditions: From 804ea88c3be065a44e95ac849b8d05291fff891c Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sat, 28 Sep 2024 12:20:21 +0000 Subject: [PATCH 272/326] Update sbt-scalajs, scalajs-compiler, ... to 1.17.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index e60589a..c200536 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.6.1") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.9.0") From fd3e35fd05c76e60bc0c258cf313678f3df3b7f6 Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Mon, 23 Sep 2024 23:48:31 -0400 Subject: [PATCH 273/326] Unpin Bulma https://github.com/phax/ph-css/issues/97 was fixed! --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 51439dc..5e8053e 100644 --- a/build.sbt +++ b/build.sbt @@ -76,7 +76,7 @@ val bulmaConfig = CssDslConfig( "Bulma", Set(None, Some("b")), - latestIn("bulma", 0), // pin at 0.x until https://github.com/phax/ph-css/issues/97 is fixed + latestTag("bulma"), "https://cdn.jsdelivr.net/npm/bulma@" + _ + "/css/bulma.min.css" ) From b218b7f33f673b8ad8cfed002f7de92552b0d42c Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Sun, 29 Sep 2024 05:48:07 -0400 Subject: [PATCH 274/326] Improve CSS unescaping --- project/CssExtractor.scala | 42 ++++++++++++++++++++++++++------------ 1 file changed, 29 insertions(+), 13 deletions(-) diff --git a/project/CssExtractor.scala b/project/CssExtractor.scala index 64b0f6b..4dfd548 100644 --- a/project/CssExtractor.scala +++ b/project/CssExtractor.scala @@ -1,29 +1,45 @@ import java.net.URL -import scala.collection.JavaConverters._ +import scala.collection.JavaConverters.* import scala.collection.immutable.SortedSet import com.helger.commons.collection.impl.ICommonsList import com.helger.commons.io.IHasReader -import com.helger.css.decl._ +import com.helger.css.decl.* import com.helger.css.reader.{CSSReader, CSSReaderSettings} object CssExtractor { private val hex = (('0' to '9') ++ ('a' to 'f') ++ ('A' to 'F')).toSet + private object Unicode { + def unapply(chars: List[Char]): Option[(Char, List[Char])] = { + val (first6, further) = chars.splitAt(6) + val (digits, beyond) = first6.span(hex) + if (digits.isEmpty) + None + else { + val c = Integer.parseInt(digits.mkString, 16).toChar + val rest = beyond ++ further + val more = + rest match { + case '\r' :: '\n' :: more => more + case w :: more if w.isWhitespace => more + case more => more + } + Some((c, more)) + } + } + } + //\\[^\r\n\f0-9a-f] + val unesapable = Set('\r', '\n', '\f') ++ ((0 to 9).map(_.toChar) ++ ('a' to 'f') ++ ('A' to 'F')) + def unescape(s: String) = { def loop(ch: List[Char]): List[Char] = ch match { - case Nil => Nil - case '\\' :: rest => - val (digits, beyond) = rest.span(hex) - val c = Integer.parseInt(digits.mkString, 16).toChar - beyond match { - case '\r' :: '\n' :: more => c :: loop(more) - case w :: more if w.isWhitespace => c :: loop(more) - case more => c :: loop(more) - } - case c :: rest => c :: loop(rest) + case Nil => Nil + case '\\' :: Unicode(c, beyond) => c :: loop(beyond) + case '\\' :: c :: rest if !unesapable(c) => c :: loop(rest) + case c :: rest => c :: loop(rest) } loop(s.toList).mkString @@ -59,6 +75,6 @@ object CssExtractor { def getClassesFromURL(url: URL): SortedSet[String] = { val reader: IHasReader = () => new java.io.InputStreamReader(url.openStream()) val sheet = CSSReader.readFromReader(reader, new CSSReaderSettings()) - SortedSet(getClassesFromSheet(sheet).toSeq: _*) + SortedSet(getClassesFromSheet(sheet).toSeq *) } } From d52ddc94121e3774ec07b4b2b48776d60c24cd88 Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Sun, 29 Sep 2024 05:54:10 -0400 Subject: [PATCH 275/326] ci.sbt: Use wildcards for scala versions This way, .mergify.yml won't need to be updated every time a new version is released. This should also reduce merge conflicts. --- .github/workflows/ci.yml | 14 +++++++------- .mergify.yml | 4 ++-- ci.sbt | 1 + 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f92b1c9..bfa28e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.14, 3.3.3] + scala: [2.13.x, 3.3.x] java: [temurin@11] runs-on: ${{ matrix.os }} steps: @@ -85,22 +85,22 @@ jobs: - name: Setup sbt uses: sbt/setup-sbt@v1 - - name: Download target directories (2.13.14) + - name: Download target directories (2.13.x) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-2.13.14-${{ matrix.java }} + name: target-${{ matrix.os }}-2.13.x-${{ matrix.java }} - - name: Inflate target directories (2.13.14) + - name: Inflate target directories (2.13.x) run: | tar xf targets.tar rm targets.tar - - name: Download target directories (3.3.3) + - name: Download target directories (3.3.x) uses: actions/download-artifact@v4 with: - name: target-${{ matrix.os }}-3.3.3-${{ matrix.java }} + name: target-${{ matrix.os }}-3.3.x-${{ matrix.java }} - - name: Inflate target directories (3.3.3) + - name: Inflate target directories (3.3.x) run: | tar xf targets.tar rm targets.tar diff --git a/.mergify.yml b/.mergify.yml index 6bbb833..1f7ae6d 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -8,8 +8,8 @@ pull_request_rules: - or: - author=scala-steward - author=nafg-scala-steward[bot] - - check-success=Build and Test (ubuntu-latest, 2.13.14, temurin@11) - - check-success=Build and Test (ubuntu-latest, 3.3.3, temurin@11) + - check-success=Build and Test (ubuntu-latest, 2.13.x, temurin@11) + - check-success=Build and Test (ubuntu-latest, 3.3.x, temurin@11) actions: queue: name: default diff --git a/ci.sbt b/ci.sbt index 986752e..3fae9b3 100644 --- a/ci.sbt +++ b/ci.sbt @@ -6,6 +6,7 @@ inThisBuild(List( ), dynverGitDescribeOutput ~= (_.map(o => o.copy(dirtySuffix = sbtdynver.GitDirtySuffix("")))), dynverSonatypeSnapshots := true, + githubWorkflowScalaVersions := githubWorkflowScalaVersions.value.map(_.replaceFirst("\\d+$", "x")), githubWorkflowTargetTags ++= Seq("v*"), githubWorkflowPublishTargetBranches := Seq(RefPredicate.StartsWith(Ref.Tag("v"))), githubWorkflowJavaVersions := Seq(JavaSpec.temurin("11")), From 9239f1dc28ff25aa088946082571bfe21861c256 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sat, 28 Sep 2024 00:56:22 +0000 Subject: [PATCH 276/326] Update scala-library to 2.13.15 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 5e8053e..fe213b7 100644 --- a/build.sbt +++ b/build.sbt @@ -12,7 +12,7 @@ inThisBuild( List( organization := "io.github.nafg.css-dsl", scalaVersion := "3.3.3", - crossScalaVersions := Seq("2.13.14", scalaVersion.value), + crossScalaVersions := Seq("2.13.15", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") ) From 1768434daa2b19470d6c69cdc729b6b63c9cc384 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Fri, 27 Sep 2024 12:22:46 +0000 Subject: [PATCH 277/326] Update scala3-library, ... to 3.3.4 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bfa28e6..0d4bf92 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,7 +65,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.3.3] + scala: [3.3.4] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index fe213b7..2e5e277 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ def myScalacOptions(version: String) = inThisBuild( List( organization := "io.github.nafg.css-dsl", - scalaVersion := "3.3.3", + scalaVersion := "3.3.4", crossScalaVersions := Seq("2.13.15", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") From e2c2539c8875391c1d55532fad1a737d6733abf5 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 04:15:04 +0000 Subject: [PATCH 278/326] Update sbt-ci-release to 1.7.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index c200536..f4a894d 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") -addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.6.1") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.7.0") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.9.0") libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.3.0" From e64b7c109b534f096c03d9877f5fb98bc2620594 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Fri, 11 Oct 2024 20:13:14 +0000 Subject: [PATCH 279/326] Update scalameta to 4.10.2 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index e631605..84b2652 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.10.1" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.10.2" libraryDependencies += "com.helger" % "ph-css" % "7.0.3" From 44ef4203fb7e4d4f5ac3fabddb83c6e3611cb5e8 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sun, 13 Oct 2024 16:13:40 +0000 Subject: [PATCH 280/326] Update sbt-ci-release to 1.8.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index f4a894d..b46c1c0 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") -addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.7.0") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.8.0") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.9.0") libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.3.0" From c6642c2dd3dd717e41d74892cfa04acbd451a8d5 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sun, 20 Oct 2024 01:03:53 +0000 Subject: [PATCH 281/326] Update sbt to 1.10.3 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 23f7d97..cbf878e 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.10.2 +sbt.version = 1.10.3 From d24a67d449d663e3e1412e9bbd6071730bad1c94 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 08:18:05 +0000 Subject: [PATCH 282/326] Update sbt-ci-release to 1.9.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index b46c1c0..5900ed4 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") -addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.8.0") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.0") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.9.0") libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.3.0" From 3b3a14c3f53953a37127cb04d90a625180c930b7 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 12:23:21 +0000 Subject: [PATCH 283/326] Update scalameta to 4.11.0 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 84b2652..4b92bba 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.10.2" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.11.0" libraryDependencies += "com.helger" % "ph-css" % "7.0.3" From f3e08884082c9ebbff110f04ea9a4db426216aab Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 01:01:04 +0000 Subject: [PATCH 284/326] Update sbt to 1.10.5 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index cbf878e..1767a6f 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.10.3 +sbt.version = 1.10.5 From cb64db2d04bbff0ef1373511c00ba59e04cd735b Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sun, 17 Nov 2024 01:02:59 +0000 Subject: [PATCH 285/326] Update scalameta to 4.11.1 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 4b92bba..51a9904 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.11.0" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.11.1" libraryDependencies += "com.helger" % "ph-css" % "7.0.3" From 98d6005bdb35e3a25deecfa23cbc915c1f2798c5 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 18 Nov 2024 16:15:47 +0000 Subject: [PATCH 286/326] Update scalameta to 4.11.2 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 51a9904..6858f0a 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.11.1" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.11.2" libraryDependencies += "com.helger" % "ph-css" % "7.0.3" From 93c88ea6cd8637dd310ef1460a7daa2ba905b43e Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Fri, 22 Nov 2024 01:00:02 +0000 Subject: [PATCH 287/326] Update scalameta to 4.12.0 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 6858f0a..a22aed8 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.11.2" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.12.0" libraryDependencies += "com.helger" % "ph-css" % "7.0.3" From 32c08f444db4f13fba46f14d8d02a4e0e349e4ac Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sat, 30 Nov 2024 08:17:34 +0000 Subject: [PATCH 288/326] Update sbt, scripted-plugin to 1.10.6 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 1767a6f..7a159c4 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.10.5 +sbt.version = 1.10.6 From 32e0e5076f036cf8364e47d9e42854f7c0d39ea9 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 16:17:26 +0000 Subject: [PATCH 289/326] Update scalameta to 4.12.1 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index a22aed8..27e190c 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.12.0" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.12.1" libraryDependencies += "com.helger" % "ph-css" % "7.0.3" From 32b19a8a2c2fe4cf83cc048faae290e0ece82e08 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 04:16:29 +0000 Subject: [PATCH 290/326] Update sbt-ci-release to 1.9.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 5900ed4..520b13c 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") -addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.0") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.1") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.9.0") libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.3.0" From a2d3982b260f9bf3c6bab2c4c3ad4cc5f1ac07d3 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 08:21:00 +0000 Subject: [PATCH 291/326] Update sbt-ci-release to 1.9.2 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 520b13c..a879760 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") -addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.1") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.2") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.9.0") libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.3.0" From f6c41b0aa1e8ddf2dc3c02dd8c5a09862e84d41b Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 04:15:18 +0000 Subject: [PATCH 292/326] Update scalameta to 4.12.2 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 27e190c..5c62f42 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.12.1" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.12.2" libraryDependencies += "com.helger" % "ph-css" % "7.0.3" From 89f8f1a0057d8bef4a5775a262e70f74fb0121dd Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 04:18:05 +0000 Subject: [PATCH 293/326] Update sbt, scripted-plugin to 1.10.7 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 7a159c4..fe69360 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.10.6 +sbt.version = 1.10.7 From 526c3ea618b64109e067ba3cf1aca416b5b7824d Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 00:57:08 +0000 Subject: [PATCH 294/326] Update scalameta to 4.12.3 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 5c62f42..12be9c8 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.12.2" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.12.3" libraryDependencies += "com.helger" % "ph-css" % "7.0.3" From 005545afb62ef1699f2c72cb2c53b3b2f417da4f Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 10 Jan 2025 18:27:21 +0000 Subject: [PATCH 295/326] Update sbt-scalajs, scalajs-compiler, ... to 1.18.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index a879760..15c372b 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.1") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.2") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.9.0") From 60b5187144e9edbe1cb777ce4383a7269fbb54a4 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sun, 12 Jan 2025 08:14:13 +0000 Subject: [PATCH 296/326] Update scalameta to 4.12.4 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 12be9c8..beb83f9 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.12.3" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.12.4" libraryDependencies += "com.helger" % "ph-css" % "7.0.3" From b598ea6ea8c56b22a357f2bc21f6aec45e9acef9 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 01:01:08 +0000 Subject: [PATCH 297/326] Update scalameta to 4.12.4.1 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index beb83f9..31d8fbe 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.12.4" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.12.4.1" libraryDependencies += "com.helger" % "ph-css" % "7.0.3" From 0a2d90ebdd2c9c51f497db94109bcf92d5a89958 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 16:16:24 +0000 Subject: [PATCH 298/326] Update scalameta to 4.12.5 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 31d8fbe..b6ac4f0 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.12.4.1" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.12.5" libraryDependencies += "com.helger" % "ph-css" % "7.0.3" From 89f7d05a32225879257e903c15ea9077bb951818 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Wed, 15 Jan 2025 20:13:05 +0000 Subject: [PATCH 299/326] Update scalameta to 4.12.6 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index b6ac4f0..de5f5c7 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.12.5" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.12.6" libraryDependencies += "com.helger" % "ph-css" % "7.0.3" From 4740435af29893c1b6a73b1698314c2320bf4b0d Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 16 Jan 2025 00:59:05 +0000 Subject: [PATCH 300/326] Update scala-library to 2.13.16 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 2e5e277..123767b 100644 --- a/build.sbt +++ b/build.sbt @@ -12,7 +12,7 @@ inThisBuild( List( organization := "io.github.nafg.css-dsl", scalaVersion := "3.3.4", - crossScalaVersions := Seq("2.13.15", scalaVersion.value), + crossScalaVersions := Seq("2.13.16", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") ) From 3a6e18d7afd87f1ede5beba00f43a1517569e7e0 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 23 Jan 2025 12:23:43 +0000 Subject: [PATCH 301/326] Update sbt-scalajs, scalajs-compiler, ... to 1.18.2 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 15c372b..4d7df5d 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.1") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.2") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.2") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.9.0") From 0a5fa87a12a1e39d3fea22e6ce3ea07d2c03517e Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 23 Jan 2025 16:16:11 +0000 Subject: [PATCH 302/326] Update scalameta to 4.12.7 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index de5f5c7..feb7ffd 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.12.6" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.12.7" libraryDependencies += "com.helger" % "ph-css" % "7.0.3" From 8193455481c14b12ba114b61ccad08f471c20688 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Wed, 29 Jan 2025 12:24:22 +0000 Subject: [PATCH 303/326] Update scala3-library, ... to 3.3.5 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d4bf92..acdc813 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,7 +65,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.3.4] + scala: [3.3.5] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index 123767b..b777d36 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ def myScalacOptions(version: String) = inThisBuild( List( organization := "io.github.nafg.css-dsl", - scalaVersion := "3.3.4", + scalaVersion := "3.3.5", crossScalaVersions := Seq("2.13.16", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") From 0b51fda564f1ae434f6397b3d0d1062eaee38b3a Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 13 Feb 2025 04:15:18 +0000 Subject: [PATCH 304/326] Update scalameta to 4.13.0 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index feb7ffd..ca3d3f0 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.12.7" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.13.0" libraryDependencies += "com.helger" % "ph-css" % "7.0.3" From e0f118c454a7f635b424d443751b5dddeb196534 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sun, 16 Feb 2025 04:15:06 +0000 Subject: [PATCH 305/326] Update scalameta to 4.13.1.1 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index ca3d3f0..f0300cb 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.13.0" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.13.1.1" libraryDependencies += "com.helger" % "ph-css" % "7.0.3" From 06671303de5a62c17be3e757b9c74f5c82b59960 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 17 Feb 2025 20:13:58 +0000 Subject: [PATCH 306/326] Update ph-css to 7.0.4 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index f0300cb..151945e 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ libraryDependencies += "org.scalameta" %% "scalameta" % "4.13.1.1" -libraryDependencies += "com.helger" % "ph-css" % "7.0.3" +libraryDependencies += "com.helger" % "ph-css" % "7.0.4" From 68a35deb7c3678e6361dcfb203cae8a24e5e0755 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 23 Feb 2025 16:47:38 +0000 Subject: [PATCH 307/326] Update scalameta to 4.13.2 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 151945e..18ad3a2 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.13.1.1" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.13.2" libraryDependencies += "com.helger" % "ph-css" % "7.0.4" From 4b0c1f8e6ab3d0e780c7a13ca3a08db58d505e83 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 3 Mar 2025 12:27:02 +0000 Subject: [PATCH 308/326] Update sbt, scripted-plugin to 1.10.8 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index fe69360..3ad322e 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.10.7 +sbt.version = 1.10.8 From 6e2d88f2b766f35426bcbecdd01cac4c1b6f44c3 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 3 Mar 2025 20:16:59 +0000 Subject: [PATCH 309/326] Update sbt, scripted-plugin to 1.10.9 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 3ad322e..a225ae6 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.10.8 +sbt.version = 1.10.9 From dd034deb8c4fabfbd84d28a5d58db7f538b6192d Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 5 Mar 2025 19:37:49 +0000 Subject: [PATCH 310/326] Update sbt, scripted-plugin to 1.10.10 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index a225ae6..7f28078 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.10.9 +sbt.version = 1.10.10 From 95c4e683d74a3ecd44027e2d5638eaab8aa23a64 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Fri, 7 Mar 2025 01:00:47 +0000 Subject: [PATCH 311/326] Update scalameta to 4.13.3 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 18ad3a2..12c69ab 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.13.2" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.13.3" libraryDependencies += "com.helger" % "ph-css" % "7.0.4" From f49f448b4f2879033cbb6fe3c58c6133eb8500eb Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Wed, 12 Mar 2025 04:16:25 +0000 Subject: [PATCH 312/326] Update sbt-ci-release to 1.9.3 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 4d7df5d..9af0baa 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.2") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") -addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.2") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.3") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.9.0") libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.3.0" From 105c66d754c532d18bf0ce947ebb77b7d8917ade Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 13 Mar 2025 20:09:18 +0000 Subject: [PATCH 313/326] Update scalameta to 4.13.4 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 12c69ab..1781918 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.13.3" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.13.4" libraryDependencies += "com.helger" % "ph-css" % "7.0.4" From 934c9025d7eb15ba44d8b0831a8e551b5e99de3f Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 17 Mar 2025 20:19:57 +0000 Subject: [PATCH 314/326] Update sbt, scripted-plugin to 1.10.11 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 7f28078..53bb739 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.10.10 +sbt.version = 1.10.11 From 2b664b6e88d6045364f1c29617bd4cf22f8aafe7 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Mon, 21 Apr 2025 20:15:15 +0000 Subject: [PATCH 315/326] Update sbt-scalajs, scalajs-compiler, ... to 1.19.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 9af0baa..09b3fe6 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.2") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.19.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.3") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.9.0") From 5b6d633827be530dfa010ef3b5e2e3998b3c3b2a Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Tue, 29 Apr 2025 08:19:58 +0000 Subject: [PATCH 316/326] Update scalameta to 4.13.5 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 1781918..f07d5e4 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.13.4" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.13.5" libraryDependencies += "com.helger" % "ph-css" % "7.0.4" From d184fb95e8d3a2548cbc8f474d5e5d60f330e365 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Thu, 8 May 2025 12:28:40 +0000 Subject: [PATCH 317/326] Update scala3-library, ... to 3.3.6 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index acdc813..a24c671 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,7 +65,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.3.5] + scala: [3.3.6] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index b777d36..980d67a 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ def myScalacOptions(version: String) = inThisBuild( List( organization := "io.github.nafg.css-dsl", - scalaVersion := "3.3.5", + scalaVersion := "3.3.6", crossScalaVersions := Seq("2.13.16", scalaVersion.value), scalacOptions ++= myScalacOptions(scalaVersion.value), versionScheme := Some("early-semver") From fc839c60578efb2835f10a0a19fe32d499a2b6e0 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 14 May 2025 18:08:59 +0000 Subject: [PATCH 318/326] Update scalameta to 4.13.6 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index f07d5e4..83fa323 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.13.5" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.13.6" libraryDependencies += "com.helger" % "ph-css" % "7.0.4" From ab6c0de546a429e6a2eea70cb911481a92530dfa Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 24 May 2025 18:04:13 +0000 Subject: [PATCH 319/326] Update sbt, scripted-plugin to 1.11.0 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 53bb739..360c594 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.10.11 +sbt.version = 1.11.0 From 0370fba193ff935b2edcdefbf10893417b8f4acc Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 3 Jun 2025 19:01:31 +0000 Subject: [PATCH 320/326] Update sbt, scripted-plugin to 1.11.1 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 360c594..3093542 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.11.0 +sbt.version = 1.11.1 From 8ed0fa74e47540d2d8e98fcedfb5fbbb046f7a31 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 3 Jun 2025 19:01:25 +0000 Subject: [PATCH 321/326] Update sbt-ci-release to 1.11.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 09b3fe6..f3d910d 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.19.0") addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") -addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.3") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.1") addSbtPlugin("io.github.nafg.mergify" % "sbt-mergify-github-actions" % "0.9.0") libraryDependencies += "io.github.nafg.scalac-options" %% "scalac-options" % "0.3.0" From ad3d004402bb7bf58cc70d03c8445a5d1301eeb8 Mon Sep 17 00:00:00 2001 From: Naftoli Gugenheim <98384+nafg@users.noreply.github.com> Date: Wed, 4 Jun 2025 19:07:18 -0400 Subject: [PATCH 322/326] Remove sonatypeProfileName from ci.sbt --- ci.sbt | 2 -- 1 file changed, 2 deletions(-) diff --git a/ci.sbt b/ci.sbt index 3fae9b3..5be6e71 100644 --- a/ci.sbt +++ b/ci.sbt @@ -22,5 +22,3 @@ inThisBuild(List( ) ) )) - -sonatypeProfileName := "io.github.nafg" From 7444adfeb3b1f1103a5a9bb0d5489dd3d8e425c4 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sat, 7 Jun 2025 20:12:47 +0000 Subject: [PATCH 323/326] Update sbt, scripted-plugin to 1.11.2 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 3093542..7ff4b8b 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.11.1 +sbt.version = 1.11.2 From d012206ccc316b8c75101ac3deaa9d14f8d1e5b3 Mon Sep 17 00:00:00 2001 From: "nafg-scala-steward[bot]" <243680+nafg-scala-steward[bot]@users.noreply.github.com> Date: Sun, 15 Jun 2025 20:11:38 +0000 Subject: [PATCH 324/326] Update scalameta to 4.13.7 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 83fa323..2f139bf 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.13.6" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.13.7" libraryDependencies += "com.helger" % "ph-css" % "7.0.4" From 2b0f239a6385f1e63d7f9cd948f67d178855264d Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 27 Jun 2025 16:36:08 +0000 Subject: [PATCH 325/326] Update scalameta to 4.13.8 --- project/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.sbt b/project/build.sbt index 2f139bf..525aaf3 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "org.scalameta" %% "scalameta" % "4.13.7" +libraryDependencies += "org.scalameta" %% "scalameta" % "4.13.8" libraryDependencies += "com.helger" % "ph-css" % "7.0.4" From 8bd5402aaf35e53efdc05e09e362f13fd650a07c Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 6 Jul 2025 07:18:36 +0000 Subject: [PATCH 326/326] Update sbt, scripted-plugin to 1.11.3 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 7ff4b8b..1b248df 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.11.2 +sbt.version = 1.11.3