Skip to content

chore(deps): bump supabase from 3.6.0 to 3.7.0 - #208

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/supabase-3.7.0
Open

chore(deps): bump supabase from 3.6.0 to 3.7.0#208
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/supabase-3.7.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 1, 2026

Copy link
Copy Markdown
Contributor

Bumps supabase from 3.6.0 to 3.7.0.
Updates io.github.jan-tennert.supabase:auth-kt from 3.6.0 to 3.7.0

Release notes

Sourced from io.github.jan-tennert.supabase:auth-kt's releases.

3.7.0

Changes

Core

Auth

Realtime

  • Add support for binary broadcasts, httpSend and VSN 2.0.0 by @​jan-tennert in supabase-community/supabase-kt#1325

    Either use the ByteArray type in broadcastFlow:

    channel.broadcastFlow<ByteArray>("test").collect {
        println(it.decodeToString())
    }

    Or use broadcastFlow without a type to receive both types:

    channel.broadcastFlow("test").collect {
        when(it.payload) {
            is BroadcastPayload.Binary -> println(it.payload.data.decodeToString())
            is BroadcastPayload.Json -> println(it.payload.value)
        }
    }

    New method to broadcast messages (the old ones are using this in the implementation if not connected)':

    channel.httpSend("myEvent", BroadcastPayload.Binary(byteArrayOf(1,2,3)))
  • Implement deferred disconnect after removing last channel by @​jan-tennert in supabase-community/supabase-kt#1276

  • docs(realtime): clarify that maxAttempts governs channel rejoin attempts by @​PierreVieira in supabase-community/supabase-kt#1331

  • fix(realtime): log transient websocket reconnects at WARN instead of ERROR by @​PierreVieira in supabase-community/supabase-kt#1329

... (truncated)

Changelog

Sourced from io.github.jan-tennert.supabase:auth-kt's changelog.

3.7.0 - July 20, 2026

Core

Auth

Realtime

  • Add support for binary broadcasts, httpSend and VSN 2.0.0 by @​jan-tennert in supabase-community/supabase-kt#1325

    Either use the ByteArray type in broadcastFlow:

    channel.broadcastFlow<ByteArray>("test").collect {
        println(it.decodeToString())
    }

    Or use broadcastFlow without a type to receive both types:

    channel.broadcastFlow("test").collect {
        when(it.payload) {
            is BroadcastPayload.Binary -> println(it.payload.data.decodeToString())
            is BroadcastPayload.Json -> println(it.payload.value)
        }
    }

    New method to broadcast messages (the old ones are using this in the implementation if not connected)':

    channel.httpSend("myEvent", BroadcastPayload.Binary(byteArrayOf(1,2,3)))
  • Implement deferred disconnect after removing last channel by @​jan-tennert in supabase-community/supabase-kt#1276

  • docs(realtime): clarify that maxAttempts governs channel rejoin attempts by @​PierreVieira in supabase-community/supabase-kt#1331

  • fix(realtime): log transient websocket reconnects at WARN instead of ERROR by @​PierreVieira in supabase-community/supabase-kt#1329

... (truncated)

Commits
  • 835bfb0 add missing compliance features
  • 87fd66f Merge pull request #1364 from supabase-community/update-vers
  • 8404a42 v3.7.0
  • bed82d0 Merge pull request #1363 from supabase-community/fix-compliance
  • 041748a Merge pull request #1362 from supabase-community/check-api-format
  • b0e09a4 fix SDK compliance
  • 28dcf67 Check Api key format when creating supabase client
  • 3e7c0f9 Merge pull request #1359 from supabase-community/clear-session
  • 1b47d09 Merge pull request #1360 from supabase-community/forbid-new-api
  • 0a48558 fix return
  • Additional commits viewable in compare view

Updates io.github.jan-tennert.supabase:compose-auth from 3.6.0 to 3.7.0

Release notes

Sourced from io.github.jan-tennert.supabase:compose-auth's releases.

3.7.0

Changes

Core

Auth

Realtime

  • Add support for binary broadcasts, httpSend and VSN 2.0.0 by @​jan-tennert in supabase-community/supabase-kt#1325

    Either use the ByteArray type in broadcastFlow:

    channel.broadcastFlow<ByteArray>("test").collect {
        println(it.decodeToString())
    }

    Or use broadcastFlow without a type to receive both types:

    channel.broadcastFlow("test").collect {
        when(it.payload) {
            is BroadcastPayload.Binary -> println(it.payload.data.decodeToString())
            is BroadcastPayload.Json -> println(it.payload.value)
        }
    }

    New method to broadcast messages (the old ones are using this in the implementation if not connected)':

    channel.httpSend("myEvent", BroadcastPayload.Binary(byteArrayOf(1,2,3)))
  • Implement deferred disconnect after removing last channel by @​jan-tennert in supabase-community/supabase-kt#1276

  • docs(realtime): clarify that maxAttempts governs channel rejoin attempts by @​PierreVieira in supabase-community/supabase-kt#1331

  • fix(realtime): log transient websocket reconnects at WARN instead of ERROR by @​PierreVieira in supabase-community/supabase-kt#1329

... (truncated)

Changelog

Sourced from io.github.jan-tennert.supabase:compose-auth's changelog.

3.7.0 - July 20, 2026

Core

Auth

Realtime

  • Add support for binary broadcasts, httpSend and VSN 2.0.0 by @​jan-tennert in supabase-community/supabase-kt#1325

    Either use the ByteArray type in broadcastFlow:

    channel.broadcastFlow<ByteArray>("test").collect {
        println(it.decodeToString())
    }

    Or use broadcastFlow without a type to receive both types:

    channel.broadcastFlow("test").collect {
        when(it.payload) {
            is BroadcastPayload.Binary -> println(it.payload.data.decodeToString())
            is BroadcastPayload.Json -> println(it.payload.value)
        }
    }

    New method to broadcast messages (the old ones are using this in the implementation if not connected)':

    channel.httpSend("myEvent", BroadcastPayload.Binary(byteArrayOf(1,2,3)))
  • Implement deferred disconnect after removing last channel by @​jan-tennert in supabase-community/supabase-kt#1276

  • docs(realtime): clarify that maxAttempts governs channel rejoin attempts by @​PierreVieira in supabase-community/supabase-kt#1331

  • fix(realtime): log transient websocket reconnects at WARN instead of ERROR by @​PierreVieira in supabase-community/supabase-kt#1329

... (truncated)

Commits
  • 835bfb0 add missing compliance features
  • 87fd66f Merge pull request #1364 from supabase-community/update-vers
  • 8404a42 v3.7.0
  • bed82d0 Merge pull request #1363 from supabase-community/fix-compliance
  • 041748a Merge pull request #1362 from supabase-community/check-api-format
  • b0e09a4 fix SDK compliance
  • 28dcf67 Check Api key format when creating supabase client
  • 3e7c0f9 Merge pull request #1359 from supabase-community/clear-session
  • 1b47d09 Merge pull request #1360 from supabase-community/forbid-new-api
  • 0a48558 fix return
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps `supabase` from 3.6.0 to 3.7.0.

Updates `io.github.jan-tennert.supabase:auth-kt` from 3.6.0 to 3.7.0
- [Release notes](https://github.com/supabase-community/supabase-kt/releases)
- [Changelog](https://github.com/supabase-community/supabase-kt/blob/master/CHANGELOG.md)
- [Commits](supabase-community/supabase-kt@3.6.0...3.7.0)

Updates `io.github.jan-tennert.supabase:compose-auth` from 3.6.0 to 3.7.0
- [Release notes](https://github.com/supabase-community/supabase-kt/releases)
- [Changelog](https://github.com/supabase-community/supabase-kt/blob/master/CHANGELOG.md)
- [Commits](supabase-community/supabase-kt@3.6.0...3.7.0)

---
updated-dependencies:
- dependency-name: io.github.jan-tennert.supabase:auth-kt
  dependency-version: 3.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.github.jan-tennert.supabase:compose-auth
  dependency-version: 3.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Aug 1, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants