File tree Expand file tree Collapse file tree 7 files changed +18
-19
lines changed
commonMain/kotlin/baaahs/util
commonTest/kotlin/baaahs/gl/shader/dialect Expand file tree Collapse file tree 7 files changed +18
-19
lines changed Original file line number Diff line number Diff line change 9
9
# documented at https://circleci.com/docs/2.0/circleci-images/
10
10
- image : cimg/openjdk:18.0.2-node
11
11
12
- resource_class : medium+
12
+ resource_class : large
13
13
14
14
working_directory : ~/repo
15
15
Original file line number Diff line number Diff line change 1
1
object Versions {
2
- const val kotlin = " 2.0.20 "
2
+ const val kotlin = " 2.0.21 "
3
3
const val kotlinGradlePlugin = kotlin
4
4
const val dokka = " 1.7.10"
5
5
6
6
const val lwjgl = " 3.3.1"
7
7
8
- const val kotlinWrappers = " 1.0.0-pre.804 "
8
+ const val kotlinWrappers = " 1.0.0-pre.816 "
9
9
10
10
// Test:
11
11
const val junit = " 5.8.1"
Original file line number Diff line number Diff line change 1
1
[versions ]
2
- kotlin = " 2.0.20 "
3
- coroutines = " 1.7.2 "
4
- serializationRuntime = " 1.5.1 "
5
- koin = " 3.1 .3"
6
- ksp = " 2.0.20 -1.0.25 "
2
+ kotlin = " 2.0.21 "
3
+ coroutines = " 1.9.0 "
4
+ serializationRuntime = " 1.6.3 "
5
+ koin = " 3.5 .3"
6
+ ksp = " 2.0.21 -1.0.26 "
7
7
dokka = " 1.7.10"
8
8
kgl = " 0.6.2"
9
9
# jogl = "2.3.2"
10
10
lwjgl = " 3.3.1"
11
11
12
12
# JVM:
13
- ktor = " 2.3.2 "
13
+ ktor = " 2.3.12 "
14
14
15
15
tarsosDsp = " 2.5"
16
16
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.8 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.10.2 -bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change 126
126
" @emotion/weak-memoize" " ^0.4.0"
127
127
stylis "4.2.0"
128
128
129
- " @emotion/css@^11.13.0 " :
130
- version "11.13.0 "
131
- resolved "https://registry.yarnpkg.com/@emotion/css/-/css-11.13.0 .tgz#3b44f008ce782dafa7cecff75b263af174d0c702 "
132
- integrity sha512-BUk99ylT+YHl+W/HN7nv1RCTkDYmKKqa1qbvM/qLSQEg61gipuBF5Hptk/2/ERmX2DCv0ccuFGhz9i0KSZOqPg ==
129
+ " @emotion/css@^11.13.4 " :
130
+ version "11.13.4 "
131
+ resolved "https://registry.yarnpkg.com/@emotion/css/-/css-11.13.4 .tgz#a5128e34a23f5e2c891970b8ec98a60c5a2395e1 "
132
+ integrity sha512-CthbOD5EBw+iN0rfM96Tuv5kaZN4nxPyYDvGUs0bc7wZBBiU/0mse+l+0O9RshW2d+v5HH1cme+BAbLJ/3Folw ==
133
133
dependencies :
134
134
" @emotion/babel-plugin" " ^11.12.0"
135
135
" @emotion/cache" " ^11.13.0"
Original file line number Diff line number Diff line change @@ -5,16 +5,15 @@ import org.koin.core.logger.Level
5
5
import org.koin.core.logger.Logger
6
6
import org.koin.core.logger.MESSAGE
7
7
8
- class KoinLogger : Logger (
9
- Level .ERROR // TODO: Koin 3.1.3 and Kotlin 1.6.0 fail on JVM unless duration logging is turned off.
10
- ) {
8
+ class KoinLogger : Logger () {
11
9
@Suppress(" RemoveRedundantQualifierName" )
12
10
private val logger = baaahs.util.Logger <Koin >()
13
11
14
- override fun log (level : Level , msg : MESSAGE ) {
12
+ override fun display (level : Level , msg : MESSAGE ) {
15
13
when (level) {
16
14
Level .DEBUG -> logger.debug { msg }
17
15
Level .INFO -> logger.info { msg }
16
+ Level .WARNING -> logger.warn { msg }
18
17
Level .ERROR -> logger.error { msg }
19
18
Level .NONE -> {}
20
19
}
Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ object IsfShaderDialectSpec : Spek({
185
185
it("fails to validate") {
186
186
expect(shaderAnalysis.isValid).toBe(false)
187
187
expect(shaderAnalysis.errors).containsExactly(
188
- GlslError ("Unexpected JSON token at offset 2 : Expected quotation mark '\"', but had '\" ' instead at path: \$\n" +
188
+ GlslError ("Unexpected JSON token at offset 7 : Expected quotation mark '\"', but had ' ' instead at path: \$\n" +
189
189
"JSON input: { \"DESC }", 1)
190
190
)
191
191
}
You can’t perform that action at this time.
0 commit comments