Bump org.jetbrains.compose.hot-reload from 1.0.0-alpha10 to 1.0.0-alpha11 #62

Closed
dependabot[bot] wants to merge 1 commits from dependabot/gradle/org.jetbrains.compose.hot-reload-1.0.0-alpha11 into master
dependabot[bot] commented 2025-06-27 05:57:05 +03:00 (Migrated from github.com)

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

Release notes

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

v1.0.0-alpha11

Changes

This is a smaller maintenance release. Adding support for coordinating upcoming changes in the Kotlin Compiler (2.2) and Compose Features (1.9).

Misc Changes

  • Updated to the new 'Compose Hot Reload Icon'
  • Fixed 'compose.reload.devToolsHeadless' not being forwarded from gradle.properties
  • Reject direct changes in the 'Compose Entry Point'; aka changes in the main function which are not Composable
  • Initial support changing resources in jars

v1.0.0-alpha10-118

Call for Feedback

This build switches Hot Reload from using 'continuous builds' to the 'explicit reload' model. Previously, anytime source code changed and was saved to disk, a daemon would have picked this up, recompiled the code and sent a 'reload' request to the application. With the 'explicit reload' model, reloading requires explicit consent from the user.

CLI usage:

Starting the application (unchanged) kmp: ./gradlew jvmRunHot --mainClass myMain jvm: ./gradlew runHot --mainClass my.Main

Requesting a recompile & reload ./gradlew reload

The continuous mode can be re-enabled on CLI using the --autoReload or --auto option e.g.: ./gradlew jvmRunHot --mainClass my.Main --auto

Note: IDE

When Hot Reload is launched from the IDE, the continuous mode is still enabled. Later implementations of an IDE plugin will take care of explicitly requesting reloads.

Other Changes

  • Fixes in devtools: Window management, fixed reload animation
  • Fixed deadlock in orchestration
  • Always show the reload counter in devtools (even when minimized)

Plugin

id("org.jetbrains.compose.hot-reload") version "1.0.0-alpha10-118"

Note: The 'dev' builds require the firework repository:

pluginManagement {
    repositories {
        maven("https://packages.jetbrains.team/maven/p/firework/dev")
    }
}

dependencyResolutionManagement {
</tr></table>

... (truncated)

Commits
  • 911029c v1.0.0-alpha11
  • b813df7 Disable tests affected by 218 (ComposableSingleton + Indy)
  • e3cd224 Tests: Add 'DisabledVersion' annotation to disable specific versions of a test
  • 63b7db3 Forward 'DevToolsIsHeadless' from the build to the application
  • 7127a6e update publication metadata
  • 751fe3a Update Compose to 1.8.1
  • f0d3a4a Update CMP versions in tests:
  • aa8d336 Fix reloading on compose 1.9.0+: correctly search for FunctionKeyMeta annotation
  • ae6d4f9 Bootstrap v1.0.0-beta01-139
  • a659353 v1.0.0-beta01-139
  • 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-alpha11. <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-alpha11</h2> <h2>Changes</h2> <p>This is a smaller maintenance release. Adding support for coordinating upcoming changes in the Kotlin Compiler (2.2) and Compose Features (1.9).</p> <h2>Misc Changes</h2> <ul> <li>Updated to the new 'Compose Hot Reload Icon'</li> <li>Fixed 'compose.reload.devToolsHeadless' not being forwarded from gradle.properties</li> <li>Reject direct changes in the 'Compose Entry Point'; aka changes in the <code>main</code> function which are not Composable</li> <li>Initial support changing resources in jars</li> </ul> <h2>v1.0.0-alpha10-118</h2> <h2>Call for Feedback</h2> <p>This build switches Hot Reload from using 'continuous builds' to the 'explicit reload' model. Previously, anytime source code changed and was saved to disk, a daemon would have picked this up, recompiled the code and sent a 'reload' request to the application. With the 'explicit reload' model, reloading requires explicit consent from the user.</p> <h3>CLI usage:</h3> <p><strong>Starting the application (<em>unchanged</em>)</strong> kmp: <code>./gradlew jvmRunHot --mainClass myMain</code> jvm: <code>./gradlew runHot --mainClass my.Main</code></p> <p><strong>Requesting a recompile &amp; reload</strong> <code>./gradlew reload</code></p> <p>The continuous mode can be re-enabled on CLI using the <code>--autoReload</code> or <code>--auto</code> option e.g.: <code>./gradlew jvmRunHot --mainClass my.Main --auto</code></p> <h3>Note: IDE</h3> <p>When Hot Reload is launched from the IDE, the continuous mode is still enabled. Later implementations of an IDE plugin will take care of explicitly requesting reloads.</p> <h2>Other Changes</h2> <ul> <li>Fixes in devtools: Window management, fixed reload animation</li> <li>Fixed deadlock in orchestration</li> <li>Always show the reload counter in devtools (even when minimized)</li> </ul> <h2>Plugin</h2> <p><code>id(&quot;org.jetbrains.compose.hot-reload&quot;) version &quot;1.0.0-alpha10-118&quot;</code></p> <p>Note: The 'dev' builds require the firework repository:</p> <pre lang="kotlin"><code>pluginManagement { repositories { maven(&quot;https://packages.jetbrains.team/maven/p/firework/dev&quot;) } } <p>dependencyResolutionManagement {<br /> &lt;/tr&gt;&lt;/table&gt;<br /> </code></pre></p> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/911029c79eee8e52f3668a687af0ee0f5a6d3670"><code>911029c</code></a> v1.0.0-alpha11</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/b813df71f8a994e18f8f1ffc4fa63ebd293a52e9"><code>b813df7</code></a> Disable tests affected by 218 (ComposableSingleton + Indy)</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/e3cd224493b0cc990d3503f60021275dfc4c48a4"><code>e3cd224</code></a> Tests: Add 'DisabledVersion' annotation to disable specific versions of a test</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/63b7db3f39c1b621ec17c4145659d134d12ecd14"><code>63b7db3</code></a> Forward 'DevToolsIsHeadless' from the build to the application</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/7127a6e5649190a70a31ec8409a8c73e7d39fc32"><code>7127a6e</code></a> update publication metadata</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/751fe3a662cb5cd012b60dff41b0e1a4a09fb539"><code>751fe3a</code></a> Update Compose to 1.8.1</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/f0d3a4a54674d40991577bdde2d0a2caa305a997"><code>f0d3a4a</code></a> Update CMP versions in tests:</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/aa8d33606f318d36dc4db6c484fdee90559a9374"><code>aa8d336</code></a> Fix reloading on compose 1.9.0+: correctly search for FunctionKeyMeta annotation</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/ae6d4f9b0d282835c0634a06709084a7b74df850"><code>ae6d4f9</code></a> Bootstrap v1.0.0-beta01-139</li> <li><a href="https://github.com/JetBrains/compose-hot-reload/commit/a6593538f1f7f69fba149f4335d4028d2d2914e6"><code>a659353</code></a> v1.0.0-beta01-139</li> <li>Additional commits viewable in <a href="https://github.com/JetBrains/compose-hot-reload/compare/v1.0.0-alpha10...v1.0.0-alpha11">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-alpha11)](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-06-30 06:30:54 +03:00 (Migrated from github.com)

Superseded by #64.

Superseded by #64.

Pull request closed

Sign in to join this conversation.