Skip to content

Commit

Permalink
Bump compose from 1.7.1 to 1.7.3 (#826)
Browse files Browse the repository at this point in the history
* Bump compose from 1.7.1 to 1.7.3

Bumps `compose` from 1.7.1 to 1.7.3.

Updates `org.jetbrains.compose:compose-gradle-plugin` from 1.7.1 to 1.7.3
- [Release notes](https://github.com/JetBrains/compose-jb/releases)
- [Changelog](https://github.com/JetBrains/compose-multiplatform/blob/master/CHANGELOG.md)
- [Commits](JetBrains/compose-multiplatform@v1.7.1...v1.7.3)

Updates `org.jetbrains.compose` from 1.7.1 to 1.7.3
- [Release notes](https://github.com/JetBrains/compose-jb/releases)
- [Changelog](https://github.com/JetBrains/compose-multiplatform/blob/master/CHANGELOG.md)
- [Commits](JetBrains/compose-multiplatform@v1.7.1...v1.7.3)

---
updated-dependencies:
- dependency-name: org.jetbrains.compose:compose-gradle-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.jetbrains.compose
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Actually fix tests

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jan Tennert <[email protected]>
  • Loading branch information
dependabot[bot] and jan-tennert authored Jan 1, 2025
1 parent feb95e5 commit 9b130ef
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions Realtime/src/commonTest/kotlin/RealtimeChannelTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@ import io.github.jan.supabase.testing.assertPathIs
import io.github.jan.supabase.testing.pathAfterVersion
import io.github.jan.supabase.testing.toJsonElement
import io.ktor.client.engine.mock.respond
import io.ktor.util.encodeBase64
import kotlinx.coroutines.coroutineScope
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.launch
import kotlinx.coroutines.test.runTest
import kotlinx.datetime.Clock
import kotlinx.serialization.json.Json
import kotlinx.serialization.json.JsonObject
import kotlinx.serialization.json.boolean
Expand All @@ -42,6 +44,12 @@ import kotlin.test.assertContentEquals
import kotlin.test.assertEquals
import kotlin.test.assertFailsWith

val EXAMPLE_JWT = buildString {
append("test.")
append(buildJsonObject { put("exp", Clock.System.now().epochSeconds + 500) }.toString().encodeBase64())
append(".test")
}

class RealtimeChannelTest {

@Test
Expand Down Expand Up @@ -142,7 +150,7 @@ class RealtimeChannelTest {

@Test
fun testSendingPayloadWithAuthJWT() {
val expectedAuthToken = "valid.test.token"
val expectedAuthToken = EXAMPLE_JWT
runTest {
createTestClient(
wsHandler = { i, _ ->
Expand All @@ -165,7 +173,7 @@ class RealtimeChannelTest {

@Test
fun testSendingPayloadWithCustomJWT() {
val expectedAuthToken = "authToken"
val expectedAuthToken = EXAMPLE_JWT
runTest {
createTestClient(
wsHandler = { i, _ ->
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ moshi = "1.15.2"
jackson = "2.18.2"
browser = "1.8.0"
googleid = "1.1.1"
compose = "1.7.1"
compose = "1.7.3"
androidsvg = "1.4"
imageloader = "1.9.0"
coil2 = "2.7.0"
Expand Down

0 comments on commit 9b130ef

Please sign in to comment.