Skip to content

Commit

Permalink
chore(deps): bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
updraft0 committed Feb 2, 2025
1 parent 9a9640f commit bf9429c
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 22
cache: 'npm'
cache-dependency-path: './ui'
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 22
cache: 'npm'
cache-dependency-path: './ui'
- name: Install dependencies
Expand Down
16 changes: 8 additions & 8 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@ import sbt.Keys.libraryDependencies
object Dependencies {

object Versions {
val brotli = "1.17.0"
val flyway = "9.21.1"
val jsoniter = "2.31.1"
val brotli = "1.18.0"
val flyway = "11.3.0"
val jsoniter = "2.33.1"
val jwt = "10.0.1"
val laminar = "17.1.0"
val laminar = "17.2.0"
val laminext = "0.17.0"
val `native-converter` = "0.9.0"
val quill = "4.8.6"
val `scala-java-time` = "2.6.0"
val `sjs-dom` = "2.8.0+45-53f9a1a2-SNAPSHOT" // FIXME wait for 2.9.0 release
val snakeyaml = "2.8"
val snakeyaml = "2.9"
val sqlite = "3.46.1.3"
val sttp = "3.10.1"
val tapir = "1.11.8"
val tapir = "1.11.13"
val waypoint = "8.0.1"
val zio = "2.1.14"
val `zio-config` = "4.0.2"
val `zio-logging` = "2.3.2"
val `zio-config` = "4.0.3"
val `zio-logging` = "2.4.0"
val `zio-metrics` = "2.3.1"
}

Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml"

addDependencyTreePlugin
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.13.1")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.2")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.11.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
2 changes: 1 addition & 1 deletion server/src/main/resources/application.dev.conf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ logger {
"org.updraft0.esi.client": INFO

// Auth/Location, etc tracking
"org.updraft0.controltower.server.tracking": TRACE
"org.updraft0.controltower.server.tracking": INFO // set to trace to log tracking information

// dependencies
"io.netty": INFO
Expand Down
7 changes: 4 additions & 3 deletions ui/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ export default defineConfig({
preserveHeaderKeyCase: true,
autoRewrite: true,
secure: false,
localAddress: '127.0.0.1',
target: 'http://localhost4:8092',
// localAddress: '127.0.0.1',
// this can be unreliable if localhost resolves to an ipv6 address
target: 'http://localhost:8092',
ws: true
}
},
Expand All @@ -28,4 +29,4 @@ export default defineConfig({
cwd: '../',
projectID: 'ui'
})],
});
});

0 comments on commit bf9429c

Please # to comment.