Bump io.micronaut.platform:micronaut-platform from 4.7.6 to 4.8.0 #446

Closed
dependabot[bot] wants to merge 1 commit from dependabot/maven/io.micronaut.platform-micronaut-platform-4.8.0 into main
dependabot[bot] commented 2025-04-02 08:12:28 +02:00 (Migrated from github.com)

Bumps io.micronaut.platform:micronaut-platform from 4.7.6 to 4.8.0.

Release notes

Sourced from io.micronaut.platform:micronaut-platform's releases.

Micronaut Platform 4.8.0

Micronaut Core Improvements

SourceGen integration

Micronaut Core 4.8.x has rewritten some of its internals leveraging Micronaut SourceGen. For example, Micronaut SourceGen powers bytecode generation of internal metadata and expressions.

Dependency Injection Debugging

Micronaut 4.8.0 allows you to activate dependency injection tracing to help you understand what Micronaut is doing at startup and when a particular bean is created.

@Client definitionType member

definitionType, a new member of the @Client annotation, helps in scenarios where you want to share an interface between client and server.

Bean Mappers Merging

Bean Mappers support merging:

@Introspected
record ChristmasPresent(
    String packagingColor,
    String type,
    Float weight,
    String greetingCard
) {
}

@​Introspected record PresentPackaging( Float weight, String color ) { }

@​Introspected record Present( Float weight, String type ) { } public interface ChristmasMappers { @​Mapping(from = "packaging.color", to = "packagingColor") @​Mapping(from = "#{packaging.weight + present.weight}", to = "weight") @​Mapping(from = "#{'Merry christmas'}", to = "greetingCard") ChristmasPresent merge(PresentPackaging packaging, Present present);

}

... (truncated)

Commits
  • 0076563 [skip ci] Release v4.8.0
  • 56a93f7 fix(deps): update dependency io.micronaut.coherence:micronaut-coherence-bom t...
  • c2e50dc fix(deps): update dependency io.micronaut.sourcegen:micronaut-sourcegen-bom t...
  • 1948cf4 fix(deps): update dependency org.apache.maven.plugins:maven-failsafe-plugin t...
  • f3c93e3 fix(deps): update dependency org.apache.maven.plugins:maven-surefire-plugin t...
  • a504750 fix(deps): update dependency com.microsoft.azure:azure-functions-maven-plugin...
  • ca3ea55 fix(deps): update dependency io.micronaut:micronaut-core-bom to v4.8.9 (#1952)
  • eb3701d managed-micronaut-graal-languages = "1.1.0"
  • a63e2c2 oracle cloud 5.0.1
  • fe6da5a security 4.12.1
  • 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 [io.micronaut.platform:micronaut-platform](https://github.com/micronaut-projects/micronaut-platform) from 4.7.6 to 4.8.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/micronaut-projects/micronaut-platform/releases">io.micronaut.platform:micronaut-platform's releases</a>.</em></p> <blockquote> <h2>Micronaut Platform 4.8.0</h2> <h2>Micronaut Core Improvements</h2> <h3>SourceGen integration</h3> <p>Micronaut Core 4.8.x has rewritten some of its internals leveraging <a href="https://micronaut-projects.github.io/micronaut-sourcegen/latest/guide/">Micronaut SourceGen</a>. For example, Micronaut SourceGen powers bytecode generation of internal metadata and expressions.</p> <h2>Dependency Injection Debugging</h2> <p>Micronaut 4.8.0 allows you to <a href="https://docs.micronaut.io/4.8.9/guide/#iocDebugging">activate dependency injection tracing to help you understand what Micronaut is doing at startup and when a particular bean is created</a>.</p> <h2><code>@Client</code> <code>definitionType</code> member</h2> <p><code>definitionType</code>, a new member of the <a href="https://docs.micronaut.io/4.8.9/api/io/micronaut/http/client/annotation/Client.html"><code>@Client</code> annotation</a>, helps in scenarios where you want to share an interface between client and server.</p> <h2>Bean Mappers Merging</h2> <p><a href="https://docs.micronaut.io/4.8.9/guide/#beanMappers">Bean Mappers</a> support merging:</p> <pre lang="java"><code>@Introspected record ChristmasPresent( String packagingColor, String type, Float weight, String greetingCard ) { } <p><a href="https://github.com/Introspected"><code>@​Introspected</code></a> record PresentPackaging( Float weight, String color ) { }</p> <p><a href="https://github.com/Introspected"><code>@​Introspected</code></a> record Present( Float weight, String type ) { } public interface ChristmasMappers { <a href="https://github.com/Mapping"><code>@​Mapping</code></a>(from = &quot;packaging.color&quot;, to = &quot;packagingColor&quot;) <a href="https://github.com/Mapping"><code>@​Mapping</code></a>(from = &quot;#{packaging.weight + present.weight}&quot;, to = &quot;weight&quot;) <a href="https://github.com/Mapping"><code>@​Mapping</code></a>(from = &quot;#{'Merry christmas'}&quot;, to = &quot;greetingCard&quot;) ChristmasPresent merge(PresentPackaging packaging, Present present);</p> <p>} </code></pre></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/micronaut-projects/micronaut-platform/commit/0076563eec22c667046e1d83093cad9282026e52"><code>0076563</code></a> [skip ci] Release v4.8.0</li> <li><a href="https://github.com/micronaut-projects/micronaut-platform/commit/56a93f750af21f3210c86b69c3ff6a099641019b"><code>56a93f7</code></a> fix(deps): update dependency io.micronaut.coherence:micronaut-coherence-bom t...</li> <li><a href="https://github.com/micronaut-projects/micronaut-platform/commit/c2e50dc2c3b3952a33d84389dfcc9d7a7e304c2b"><code>c2e50dc</code></a> fix(deps): update dependency io.micronaut.sourcegen:micronaut-sourcegen-bom t...</li> <li><a href="https://github.com/micronaut-projects/micronaut-platform/commit/1948cf480f069c56cd07bd56413b11f2d8b8370c"><code>1948cf4</code></a> fix(deps): update dependency org.apache.maven.plugins:maven-failsafe-plugin t...</li> <li><a href="https://github.com/micronaut-projects/micronaut-platform/commit/f3c93e3733c54a2c26d8e40c468097a9eeec7399"><code>f3c93e3</code></a> fix(deps): update dependency org.apache.maven.plugins:maven-surefire-plugin t...</li> <li><a href="https://github.com/micronaut-projects/micronaut-platform/commit/a504750accc1157def73df9d09dcf6a96749bc43"><code>a504750</code></a> fix(deps): update dependency com.microsoft.azure:azure-functions-maven-plugin...</li> <li><a href="https://github.com/micronaut-projects/micronaut-platform/commit/ca3ea55e7481ea2df6fa54f9026e71103b73c5c2"><code>ca3ea55</code></a> fix(deps): update dependency io.micronaut:micronaut-core-bom to v4.8.9 (<a href="https://redirect.github.com/micronaut-projects/micronaut-platform/issues/1952">#1952</a>)</li> <li><a href="https://github.com/micronaut-projects/micronaut-platform/commit/eb3701da6bcc2318eab50ec734d24038a0f195c3"><code>eb3701d</code></a> managed-micronaut-graal-languages = &quot;1.1.0&quot;</li> <li><a href="https://github.com/micronaut-projects/micronaut-platform/commit/a63e2c2ba56184672c5e5532461efbf82aab0db5"><code>a63e2c2</code></a> oracle cloud 5.0.1</li> <li><a href="https://github.com/micronaut-projects/micronaut-platform/commit/fe6da5a6b1825d38db54f0b573d1cb3e0ef9ed2f"><code>fe6da5a</code></a> security 4.12.1</li> <li>Additional commits viewable in <a href="https://github.com/micronaut-projects/micronaut-platform/compare/v4.7.6...v4.8.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.micronaut.platform:micronaut-platform&package-manager=maven&previous-version=4.7.6&new-version=4.8.0)](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>
sschnabe (Migrated from github.com) reviewed 2025-04-02 08:12:28 +02:00
rpahli (Migrated from github.com) reviewed 2025-04-02 08:12:28 +02:00
fabian-schlegel (Migrated from github.com) reviewed 2025-04-02 08:12:28 +02:00
wistefan (Migrated from github.com) reviewed 2025-04-02 08:12:28 +02:00
kokuwaio-bot (Migrated from github.com) approved these changes 2025-04-02 08:12:41 +02:00
sschnabe commented 2025-04-07 13:13:57 +02:00 (Migrated from github.com)

@dependabot recreate

@dependabot recreate
kokuwaio-bot (Migrated from github.com) approved these changes 2025-04-07 13:14:43 +02:00
dependabot[bot] commented 2025-04-16 08:51:34 +02:00 (Migrated from github.com)

Superseded by #448.

Superseded by #448.

Pull request closed

Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Reference
kokuwaio/micronaut-openapi-codegen!446
No description provided.