Bump org.jetbrains.compose.hot-reload from 1.0.0-alpha10 to 1.0.0-beta05 #73

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

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

Release notes

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

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

  • Stabilised Analysis API (⚠️ Read about breaking changes below)
  • Improvements to DevTools window management

Analysis

  • ⚠️ breaking: update API names
  • ⚠️ breaking: visibility changes
    • FieldInfo, MethodInfo & ScopeInfo: Mark constructor & copy as internal
    • Move MethodType to from 'ScopeInfo to MethodInfo
  • ScopeAnalyzerExtension service to allow to extend the analysis with custom information
  • Ignore service to allow contributing to ignored classes

DevTools

  • Improvements to window management: fix issues with flickering, gaining focus, etc.
  • Display build tool logo when reloading
  • 'Copy all' button in console and error screens

Other

  • Improve the dirty scope resolution algorithm: @Composable functions now act as 'dirty barrier'
  • Fix hot reload blocking the debugger from attaching to user application
  • Initial support for reloading in font resources

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

v1.0.0-beta03

DevTools

... (truncated)

Commits
  • 74e74b5 Fix: rename the "Reset" button to "Reset UI" to better convey its function
  • 1b216a2 Fix: use awaitNodeWithTag for all the checks in devtools ui, reducing test ...
  • 1ef3535 Fix devtools action bar layout:
  • 840122f #199: DevTools redesign
  • e45dc39 Fix missing 'pidFile' after executing a restart
  • 39bdb01 Fix dev tools properties wiring:
  • e42194c Target 1.0.0-beta05
  • 7274433 * Add an option to warmup the Gradle daemon even in explicit reload mode
  • 58da5f0 #195: Stabilise Compose API usages
  • 715aae6 ClassCircularityError: Ensure transformer does not depend kotlin, java or CHR...
  • 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-beta05. <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-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> <ul> <li>Stabilised Analysis API (⚠️ Read about breaking changes below)</li> <li>Improvements to DevTools window management</li> </ul> <h2>Analysis</h2> <ul> <li>⚠️ <strong>breaking</strong>: update API names</li> <li>⚠️ <strong>breaking</strong>: visibility changes <ul> <li>FieldInfo, MethodInfo &amp; ScopeInfo: Mark constructor &amp; copy as internal</li> <li>Move <code>MethodType</code> to from <code>'ScopeInfo</code> to <code>MethodInfo</code></li> </ul> </li> <li><code>ScopeAnalyzerExtension</code> service to allow to extend the analysis with custom information</li> <li><code>Ignore</code> service to allow contributing to ignored classes</li> </ul> <h2>DevTools</h2> <ul> <li>Improvements to window management: fix issues with flickering, gaining focus, etc.</li> <li>Display build tool logo when reloading</li> <li>'Copy all' button in console and error screens</li> </ul> <h2>Other</h2> <ul> <li>Improve the dirty scope resolution algorithm: <code>@Composable</code> functions now act as 'dirty barrier'</li> <li>Fix hot reload blocking the debugger from attaching to user application</li> <li>Initial support for reloading in font resources</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/JetBrains/compose-hot-reload/compare/v1.0.0-beta03...v.1.0.0-beta04">https://github.com/JetBrains/compose-hot-reload/compare/v1.0.0-beta03...v.1.0.0-beta04</a></p> <h2>v1.0.0-beta03</h2> <h3>DevTools</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/74e74b55afa9b7687bd31d8be674119e105f382d"><code>74e74b5</code></a> Fix: rename the &quot;Reset&quot; button to &quot;Reset UI&quot; to better convey its function</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/1b216a2db56616e880625a4704e0538096efb055"><code>1b216a2</code></a> Fix: use <code>awaitNodeWithTag</code> for all the checks in devtools ui, reducing test ...</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/1ef3535ac0bab16cf4d3a3d7d71dd52cdf25ff0c"><code>1ef3535</code></a> Fix devtools action bar layout:</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/840122ff32db5d92005114a4e28737d1d412c18c"><code>840122f</code></a> <a href="https://redirect.github.com/JetBrains/compose-hot-reload/issues/199">#199</a>: DevTools redesign</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/e45dc39bd3aa05390084fcc0cba3124813e84569"><code>e45dc39</code></a> Fix missing 'pidFile' after executing a restart</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/39bdb01216d4ae7f6e49f2601c67128ae37ea008"><code>39bdb01</code></a> Fix dev tools properties wiring:</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/e42194c390a3df76bc7830e89118cddb35e20051"><code>e42194c</code></a> Target 1.0.0-beta05</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/72744333aa028a7037fb233530da564602148a13"><code>7274433</code></a> * Add an option to warmup the Gradle daemon even in explicit reload mode</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/58da5f0f8176e9044702644d3620bf12c30e5e60"><code>58da5f0</code></a> <a href="https://redirect.github.com/JetBrains/compose-hot-reload/issues/195">#195</a>: Stabilise Compose API usages</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/715aae61a519cf814e25782070d583abad2ce184"><code>715aae6</code></a> ClassCircularityError: Ensure transformer does not depend kotlin, java or CHR...</li> <li>Additional commits viewable in <a href="https://github.com/JetBrains/compose-hot-reload/compare/v1.0.0-alpha10...v1.0.0-beta05">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-beta05)](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-01 07:45:00 +03:00 (Migrated from github.com)

Superseded by #75.

Superseded by #75.

Pull request closed

Sign in to join this conversation.