Skip to content

Commit

Permalink
Merge branch 'main' into update/sbt-native-packager-1.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
scholarsmate authored Jan 2, 2025
2 parents e8747d2 + 91b5402 commit c9eab0c
Show file tree
Hide file tree
Showing 11 changed files with 216 additions and 195 deletions.
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Scala Steward: Reformat with scalafmt 3.8.3
ff29859b7afa6c0f5a5b90c96be6e75cdb098ef1
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
############################################################

- name: Check out Repository
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.2

- name: Setup Java
uses: actions/[email protected]
Expand All @@ -69,7 +69,7 @@ jobs:
java-version: ${{ matrix.java_version }}

- name: Install Node.js
uses: actions/setup-node@v4.0.4
uses: actions/setup-node@v4.1.0
with:
node-version: ${{ matrix.node }}

Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
############################################################

- name: Check out Repository
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.2
with:
fetch-depth: 0

Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
############################################################

- name: Check out Repository
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.2

- name: Setup Java
uses: actions/[email protected]
Expand All @@ -160,7 +160,7 @@ jobs:
if: matrix.os == 'macos-13'

- name: Install Node.js
uses: actions/setup-node@v4.0.4
uses: actions/setup-node@v4.1.0
with:
node-version: ${{ matrix.node }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
############################################################

- name: Check out Repository
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.2

- name: Setup Java
uses: actions/[email protected]
Expand All @@ -67,7 +67,7 @@ jobs:
java-version: ${{ matrix.java_version }}

- name: Install Node.js
uses: actions/setup-node@v4.0.4
uses: actions/setup-node@v4.1.0
with:
node-version: ${{ matrix.node }}

Expand Down
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version = "3.7.17"
version = "3.8.3"
maxColumn = 120
rewrite.rules = [SortImports, RedundantBraces]
runner.dialect = scala212
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ lazy val commonSettings =
"org.apache.daffodil" %% "daffodil-runtime1" % daffodilVer
),
dependencyOverrides ++= Seq(
"org.apache.commons" % "commons-lang3" % "3.12.0"
"org.apache.commons" % "commons-lang3" % "3.17.0"
),
fork := true, // needed to pass javaOptions to tests, for example
licenses += ("Apache-2.0", new URL("https://www.apache.org/licenses/LICENSE-2.0.txt")),
Expand Down Expand Up @@ -98,10 +98,10 @@ lazy val debugger = project
"ch.qos.logback" % "logback-classic" % "1.2.11",
"com.microsoft.java" % "com.microsoft.java.debug.core" % "0.34.0",
// scala-steward:on
"co.fs2" %% "fs2-io" % "3.9.3",
"co.fs2" %% "fs2-io" % "3.9.4",
"com.monovore" %% "decline-effect" % "2.4.1",
"org.typelevel" %% "log4cats-slf4j" % "2.6.0",
"org.scalameta" %% "munit" % "0.7.29" % Test
"org.scalameta" %% "munit" % "1.0.2" % Test
),
buildInfoKeys := Seq[BuildInfoKey](name, version, scalaVersion, sbtVersion, "daffodilVersion" -> daffodilVer),
buildInfoPackage := "org.apache.daffodil.debugger.dap",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ object DAPodil extends IOApp {
.as(ExitCode.Success)
.recoverWith {
// format: off
case _: SocketTimeoutException =>
case _: SocketTimeoutException =>
Logger[IO].warn(s"timed out listening for connection on $uri, exiting").as(ExitCode.Error)
// format: on
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"tsconfig-paths": "^4.2.0",
"typescript": "5.2.2",
"vscode-extension-tester": "5.9.1",
"webpack": "5.88.2",
"webpack": "5.97.1",
"webpack-cli": "5.1.4"
},
"extensionDependencies": [
Expand Down
4 changes: 3 additions & 1 deletion project/Rat.scala
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ object Rat {
// svelte icons/fonts
file("src/svelte/src/resources/icons/material-icons.woff2"),
file("src/svelte/src/resources/fonts/SpaceGrotesk-Variable.woff2"),
file("src/svelte/src/resources/fonts/RedHatMono-Regular.woff2")
file("src/svelte/src/resources/fonts/RedHatMono-Regular.woff2"),
// scalafmt-core files
file(".git-blame-ignore-revs")
)

lazy val MIT_LICENSE_NAME = "MIT License"
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

sbt.version = 1.9.9
sbt.version = 1.10.6
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* limitations under the License.
*/

addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.13.1")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.10.4")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.4")
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.2")
addSbtPlugin("org.musigma" % "sbt-rat" % "0.7.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.scala-sbt.plugins" % "sbt-xjc" % "0.10")
Loading

0 comments on commit c9eab0c

Please sign in to comment.