Bump org.jetbrains.compose.hot-reload from 1.0.0-alpha10 to 1.0.0-beta06 #75

Closed
dependabot[bot] wants to merge 1 commits from dependabot/gradle/org.jetbrains.compose.hot-reload-1.0.0-beta06 into master
dependabot[bot] commented 2025-09-01 07:44:58 +03:00 (Migrated from github.com)

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

Release notes

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

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

  • Deprecate 'OrchestrationProtocolVersion' in favor of 'OrchestrationVersion'
  • Future: Dispose reference to 'Continuation' in await()
  • :core: Fix 'isActive()' to respect kotlinx.coroutines.Job
  • core: Check-in api dump
  • Broadcast: Ensure relevant listeners are registered right away when .toChannel or invokeOnValue are called
  • Logging: Respect logLevel from HotReloadEnvironment before dispatching logs

v1.0.0-beta05

DevTools

  • Refined design of the devtools window

Misc

  • Add compose.reload.subprocessDebuggingEnabled property to enable dev tools debugging
  • Orchestration: Allow DevTools to host the orchestration server: Fixes #306
  • #195: Stabilise Compose API usages
  • Add support for build/reload warmup (72744333aa028a7037fb233530da564602148a13)
  • Fix missing 'pidFile' after executing a restart: Fixes #325
  • Mark non-stable properties as delicate APIs and add explanation in documentation

Analysis:

  • ClassCircularityError: Ensure transformer does not depend kotlin, java or CHR classes
  • (Restart|Replace)GroupTokenizer: Allow LineNumber- and Label Nodes between key and method invocation

Full Changelog: https://github.com/JetBrains/compose-hot-reload/compare/v.1.0.0-beta04...v1.0.0-beta05

v1.0.0-beta04

Beta04: Significant Changes

... (truncated)

Commits
  • 88923a2 Target version 1.0.0-beta06
  • c669e4a Bootstrap v1.0.0-rc01+164
  • dffc857 v1.0.0-rc01+164
  • 7eefc26 OrchestrationListenerTest: Use reloadMain thread to close the listener
  • e47d999 OrchestrationPackage: Check in serialVersionUID for compatibility
  • 67e4600 OrchestrationMessage: Check in serialVersionUID for compatibility
  • 7f43d91 OrchestrationMessage: Remove class hierarchy sealing in favor of 'SubclassOpt...
  • 49d6bd5 Orchestration: Lenient packageType & opaque orchestration messages
  • 09428bc DevTools: Provide 'WindowExceptionHandler' logging to the orchestration inste...
  • 58ccc6e Target compose 1.9.0-rc01
  • 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-beta06. <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-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> <ul> <li>Deprecate 'OrchestrationProtocolVersion' in favor of 'OrchestrationVersion'</li> <li>Future: Dispose reference to 'Continuation' in await()</li> <li>:core: Fix 'isActive()' to respect kotlinx.coroutines.Job</li> <li>core: Check-in api dump</li> <li>Broadcast: Ensure relevant listeners are registered <em>right away</em> when .toChannel or invokeOnValue are called</li> <li>Logging: Respect logLevel from HotReloadEnvironment before dispatching logs</li> </ul> <h2>v1.0.0-beta05</h2> <h2>DevTools</h2> <ul> <li>Refined design of the devtools window</li> </ul> <h2>Misc</h2> <ul> <li>Add <code>compose.reload.subprocessDebuggingEnabled</code> property to enable dev tools debugging</li> <li>Orchestration: Allow DevTools to host the orchestration server: Fixes <a href="https://redirect.github.com/JetBrains/compose-hot-reload/issues/306">#306</a></li> <li><a href="https://redirect.github.com/JetBrains/compose-hot-reload/issues/195">#195</a>: Stabilise Compose API usages</li> <li>Add support for build/reload warmup (72744333aa028a7037fb233530da564602148a13)</li> <li>Fix missing 'pidFile' after executing a restart: Fixes <a href="https://redirect.github.com/JetBrains/compose-hot-reload/issues/325">#325</a></li> <li>Mark non-stable properties as delicate APIs and add explanation in documentation</li> </ul> <h2>Analysis:</h2> <ul> <li>ClassCircularityError: Ensure transformer does not depend kotlin, java or CHR classes</li> <li>(Restart|Replace)GroupTokenizer: Allow LineNumber- and Label Nodes between key and method invocation</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/JetBrains/compose-hot-reload/compare/v.1.0.0-beta04...v1.0.0-beta05">https://github.com/JetBrains/compose-hot-reload/compare/v.1.0.0-beta04...v1.0.0-beta05</a></p> <h2>v1.0.0-beta04</h2> <h1>Beta04: Significant Changes</h1> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/88923a2f54e77a5b7cbfe636f56ca44a943f01a9"><code>88923a2</code></a> Target version 1.0.0-beta06</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/c669e4ae8a113e7767a4052c6eb5aec8e82f1127"><code>c669e4a</code></a> Bootstrap v1.0.0-rc01+164</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/dffc8574a8b10d2134b20150ec3a0f5f70abd892"><code>dffc857</code></a> v1.0.0-rc01+164</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/7eefc263682f9aa725a9494715632f49dabdbec8"><code>7eefc26</code></a> OrchestrationListenerTest: Use reloadMain thread to close the listener</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/e47d999013dc20bff592ec34083c81e5c4ed734e"><code>e47d999</code></a> OrchestrationPackage: Check in serialVersionUID for compatibility</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/67e4600385325cbad9eefef2c619b44ec6507298"><code>67e4600</code></a> OrchestrationMessage: Check in serialVersionUID for compatibility</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/7f43d91234690b55897a502d8ec6f3bd6b86ea0a"><code>7f43d91</code></a> OrchestrationMessage: Remove class hierarchy sealing in favor of 'SubclassOpt...</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/49d6bd5c9d71df6f09d0e05d99a4259bc3c571eb"><code>49d6bd5</code></a> Orchestration: Lenient packageType &amp; opaque orchestration messages</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/09428bcc41e0fc76aa1a8c28436d6c7ea00d4bdc"><code>09428bc</code></a> DevTools: Provide 'WindowExceptionHandler' logging to the orchestration inste...</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/58ccc6e4c823d27c35986e0d9f4a0cabd1b8a6f4"><code>58ccc6e</code></a> Target compose 1.9.0-rc01</li> <li>Additional commits viewable in <a href="https://github.com/JetBrains/compose-hot-reload/compare/v1.0.0-alpha10...v1.0.0-beta06">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-beta06)](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-16 05:15:21 +03:00 (Migrated from github.com)

Superseded by #76.

Superseded by #76.

Pull request closed

Sign in to join this conversation.