Bump org.jetbrains.compose.hot-reload from 1.0.0-alpha10 to 1.0.0-beta07 #76

Closed
dependabot[bot] wants to merge 1 commits from dependabot/gradle/org.jetbrains.compose.hot-reload-1.0.0-beta07 into master
dependabot[bot] commented 2025-09-16 05:15:20 +03:00 (Migrated from github.com)

Bumps org.jetbrains.compose.hot-reload from 1.0.0-alpha10 to 1.0.0-beta07.

Release notes

Sourced from org.jetbrains.compose.hot-reload's releases.

v1.0.0-beta07

Release summary

This release both continues our efforts to stabilize the 'core' technology of Compose Hot Reload and introduces new changes to the DevTools UX. Binaries produced by this repository are considered the 'Compose Hot Reload Core Technology'.

DevTools

  • New reload overlay that is built into the target app window. It replaces the old reload status bar
  • Fix the issue with window state not being updated in time, causing the DevTools window to stay visible for too long after the target app closed

Misc

  • Runtime libraries: Compile against Compose 1.8.2 to ensure compatibility with both Compose 1.8 and 1.9 in the runtime
  • Logging: Refine logging levels
  • Gradle: Improve GCC compliance for orchestration port & pidFile based configurations

Advanced changes

The following changes are relevant for projects integrating with Compose Hot Reload (such as IntelliJ, Amper, ...)

  • Orchestration & Analysis: Add new InvalidatedComposeGroupMessage with information about source location of the dirty scopes
  • Orchestration: Accept opaque Ack messages
  • Orchestration: Introduce OrchestrationMessage.availableSinceVersion and guard server/clients from unexpected messages

Known issues

  • #363: KMP plugin in Android Studio has compatibility issues with Compose Hot Reload versions starting from beta06. While the core reload technology works, DevTools UI is not being loaded. The issue is caused by the older orchestration protocol version currently used in KMP for AS. Issue will be fixed in the next release of KMP for AS. As a workaround you can run the hot reload task from the CLI.

v1.0.0-beta06

Release Summary

This release focuses mostly on 'core' APIs, enabling tools like Amper or the IDE to build advanced tooling for Compose Hot Reload. This is part of the ongoing stabilization process. Binaries produced by this repository are considered the 'Compose Hot Reload Core Technology'.

DevTools

  • Rework the "Missing JBR" status item: * Use JB icons * Add a dialog window with more info about the current JVM
  • Target compose 1.9.0-rc01
  • DevTools: Provide 'WindowExceptionHandler' logging to the orchestration instead of crashing DevTools

Advanced Changes

The following changes are relevant for projects integrating with Compose Hot Reload (such as IntelliJ, Amper, ...)

Orchestration

  • Implement an atomic distributed 'OrchestrationState' which allows sharing state across all orchestrated processes
  • OrchestrationServer: Only announce a client as 'connected' when the writer queue is active
  • Implement 'OrchestrationLoggerState' to indicate if (and which) loggers are active in the orchestration
  • Implement 'OrchestrationListener' which allows the server to initiate the connection (once ready)
  • Orchestration: Lenient packageType & opaque orchestration messages
  • OrchestrationMessage: Remove class hierarchy sealing in favor of 'SubclassOptInRequired'

Core

... (truncated)

Commits
  • 59213df Add signing keys to PublishToMavenCentral build
  • 0477bbb Target version 1.0.0-beta07
  • abc75c6 Clean up reload effects code
  • bab8fcf New reload status overlay
  • f21329d Tests: Run against Kotlin 2.2.20
  • 9ac01a2 Tests: Run against Kotlin 2.3.0-dev-7225
  • 4f92d01 Orchestration: Introduce OrchestrationMessage.availableSinceVersion and guard...
  • 17b9e35 ServerBackwardCompatibilityTest: Detect broken connections (w/o relying on ti...
  • e6632ee Add information about source location to label tokens.
  • 020e2e2 TC: WindowsFunctionalTest: Use PublishLocallyConvention
  • Additional commits viewable in compare view

Dependabot compatibility score

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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 [org.jetbrains.compose.hot-reload](https://github.com/JetBrains/compose-hot-reload) from 1.0.0-alpha10 to 1.0.0-beta07. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/JetBrains/compose-hot-reload/releases">org.jetbrains.compose.hot-reload's releases</a>.</em></p> <blockquote> <h2>v1.0.0-beta07</h2> <h1>Release summary</h1> <p>This release both continues our efforts to stabilize the 'core' technology of Compose Hot Reload and introduces new changes to the DevTools UX. Binaries produced by this repository are considered the 'Compose Hot Reload Core Technology'.</p> <h2>DevTools</h2> <ul> <li>New reload overlay that is built into the target app window. It replaces the old reload status bar</li> <li>Fix the issue with window state not being updated in time, causing the DevTools window to stay visible for too long after the target app closed</li> </ul> <h2>Misc</h2> <ul> <li>Runtime libraries: Compile against Compose 1.8.2 to ensure compatibility with both Compose 1.8 and 1.9 in the runtime</li> <li>Logging: Refine logging levels</li> <li>Gradle: Improve GCC compliance for orchestration port &amp; pidFile based configurations</li> </ul> <h2>Advanced changes</h2> <p>The following changes are relevant for projects integrating with Compose Hot Reload (such as IntelliJ, Amper, ...)</p> <ul> <li>Orchestration &amp; Analysis: Add new <code>InvalidatedComposeGroupMessage</code> with information about source location of the dirty scopes</li> <li>Orchestration: Accept opaque <code>Ack</code> messages</li> <li>Orchestration: Introduce <code>OrchestrationMessage.availableSinceVersion</code> and guard server/clients from unexpected messages</li> </ul> <h2>Known issues</h2> <ul> <li><a href="https://redirect.github.com/JetBrains/compose-hot-reload/issues/363">#363</a>: KMP plugin in Android Studio has compatibility issues with Compose Hot Reload versions starting from <code>beta06</code>. While the core reload technology works, DevTools UI is not being loaded. The issue is caused by the older orchestration protocol version currently used in KMP for AS. Issue will be fixed in the next release of KMP for AS. As a workaround you can run the hot reload task <a href="https://github.com/JetBrains/compose-hot-reload?tab=readme-ov-file#from-the-cli">from the CLI</a>.</li> </ul> <h2>v1.0.0-beta06</h2> <h1>Release Summary</h1> <p>This release focuses mostly on 'core' APIs, enabling tools like Amper or the IDE to build advanced tooling for Compose Hot Reload. This is part of the ongoing stabilization process. Binaries produced by this repository are considered the 'Compose Hot Reload Core Technology'.</p> <h2>DevTools</h2> <ul> <li>Rework the &quot;Missing JBR&quot; status item: * Use JB icons * Add a dialog window with more info about the current JVM</li> <li>Target compose 1.9.0-rc01</li> <li>DevTools: Provide 'WindowExceptionHandler' logging to the orchestration instead of crashing DevTools</li> </ul> <h2>Advanced Changes</h2> <p>The following changes are relevant for projects integrating with Compose Hot Reload (such as IntelliJ, Amper, ...)</p> <h3>Orchestration</h3> <ul> <li>Implement an atomic distributed 'OrchestrationState' which allows sharing state across all orchestrated processes</li> <li>OrchestrationServer: Only announce a client as 'connected' when the writer queue is active</li> <li>Implement 'OrchestrationLoggerState' to indicate if (and which) loggers are active in the orchestration</li> <li>Implement 'OrchestrationListener' which allows the server to initiate the connection (once ready)</li> <li>Orchestration: Lenient packageType &amp; opaque orchestration messages</li> <li>OrchestrationMessage: Remove class hierarchy sealing in favor of 'SubclassOptInRequired'</li> </ul> <h3>Core</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/59213dfb8fcced86e15269e1e80295a96e6492cf"><code>59213df</code></a> Add signing keys to <code>PublishToMavenCentral</code> build</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/0477bbb1d4c2f9848f0a433c96cfc62dde19a095"><code>0477bbb</code></a> Target version 1.0.0-beta07</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/abc75c6ab86921c2148481c6c364ec1ee1a37b2b"><code>abc75c6</code></a> Clean up reload effects code</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/bab8fcff9ecb2ff19ea1f87b708fe7f65dd03f71"><code>bab8fcf</code></a> New reload status overlay</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/f21329d6c2e3b7e48e5736fb417c3cac130315e7"><code>f21329d</code></a> Tests: Run against Kotlin 2.2.20</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/9ac01a254e521c97568717eb2d0aee7e7900667a"><code>9ac01a2</code></a> Tests: Run against Kotlin 2.3.0-dev-7225</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/4f92d016791503cbd3ac2a549adc7be057b75a1a"><code>4f92d01</code></a> Orchestration: Introduce OrchestrationMessage.availableSinceVersion and guard...</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/17b9e3526b54b9a0651a602ff01d59c59bbc3bf2"><code>17b9e35</code></a> ServerBackwardCompatibilityTest: Detect broken connections (w/o relying on ti...</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/e6632ee93dae082707f1db731c925ab843626d46"><code>e6632ee</code></a> Add information about source location to label tokens.</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/020e2e2501c1481a919132fdcd2bd6304f572b28"><code>020e2e2</code></a> TC: WindowsFunctionalTest: Use <code>PublishLocallyConvention</code></li> <li>Additional commits viewable in <a href="https://github.com/JetBrains/compose-hot-reload/compare/v1.0.0-alpha10...v1.0.0-beta07">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.jetbrains.compose.hot-reload&package-manager=gradle&previous-version=1.0.0-alpha10&new-version=1.0.0-beta07)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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) </details>
dependabot[bot] commented 2025-09-22 05:16:05 +03:00 (Migrated from github.com)

Superseded by #77.

Superseded by #77.

Pull request closed

Sign in to join this conversation.