Bump io.micronaut.platform:micronaut-platform from 4.7.6 to 4.8.2 #449

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

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

Release notes

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

Micronaut Platform 4.8.2

What's Changed

Other Changes 💡

  • Revert "fix(deps): update dependency io.micronaut.sourcegen:micronaut-sourcegen-bom to v1.7.3 (#1966)"

  • fix(deps): update dependency io.micronaut:micronaut-core-bom to v4.8.11 (#1973)

  • fix(deps): update dependency org.graalvm.nativeimage:svm to v23.1.7 (#1969)

  • fix(deps): update dependency org.graalvm.sdk:graal-sdk to v24.2.1 (#1974)

  • Micronaut Core 4.8.11

Full Changelog: https://github.com/micronaut-projects/micronaut-platform/compare/v4.8.1...v4.8.2

Micronaut Platform 4.8.1

WARNING

Unfortunately there is an issue with the release. If you upgrade to 4.8.1 you will have to rollback the version of Micronaut SourceGen to 1.7.2

configurations.all {
    resolutionStrategy {
        eachDependency { DependencyResolveDetails details ->
            if (details.requested.group == "io.micronaut.sourcegen") {
                details.useVersion("1.7.2")
            }
        }
    }
}

What's Changed

Bug Fixes 🐞

Micronaut Modules

Full Changelog: https://github.com/micronaut-projects/micronaut-platform/compare/v4.8.0...v4.8.1

... (truncated)

Commits
  • 19c1d5d [skip ci] Release v4.8.2
  • 5483bab fix(deps): update dependency org.graalvm.sdk:graal-sdk to v24.2.1 (#1974)
  • 0effb24 fix(deps): update dependency org.graalvm.nativeimage:svm to v23.1.7 (#1969)
  • 4e4ed20 fix(deps): update dependency io.micronaut:micronaut-core-bom to v4.8.11 (#1973)
  • a513e73 Revert "fix(deps): update dependency io.micronaut.sourcegen:micronaut-sourceg...
  • c12ea5e chore: Bump version to 4.8.2-SNAPSHOT
  • 4d1b7b0 [skip ci] Release v4.8.1
  • 37c8fbd fix(deps): update dependency io.micronaut.sourcegen:micronaut-sourcegen-bom t...
  • f0daa49 fix(deps): update dependency io.micronaut:micronaut-core-bom to v4.8.10 (#1968)
  • 6707781 fix(deps): update dependency io.micronaut.maven:micronaut-maven-plugin to v4....
  • 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.2. <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.2</h2> <!-- raw HTML omitted --> <h2>What's Changed</h2> <h3>Other Changes 💡</h3> <ul> <li> <p>Revert &quot;fix(deps): update dependency io.micronaut.sourcegen:micronaut-sourcegen-bom to v1.7.3 (<a href="https://redirect.github.com/micronaut-projects/micronaut-platform/issues/1966">#1966</a>)&quot;</p> </li> <li> <p>fix(deps): update dependency io.micronaut:micronaut-core-bom to v4.8.11 (<a href="https://redirect.github.com/micronaut-projects/micronaut-platform/issues/1973">#1973</a>)</p> </li> <li> <p>fix(deps): update dependency org.graalvm.nativeimage:svm to v23.1.7 (<a href="https://redirect.github.com/micronaut-projects/micronaut-platform/issues/1969">#1969</a>)</p> </li> <li> <p>fix(deps): update dependency org.graalvm.sdk:graal-sdk to v24.2.1 (<a href="https://redirect.github.com/micronaut-projects/micronaut-platform/issues/1974">#1974</a>)</p> </li> <li> <p><a href="https://github.com/micronaut-projects/micronaut-core/releases/tag/v4.8.11">Micronaut Core 4.8.11</a></p> </li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/micronaut-projects/micronaut-platform/compare/v4.8.1...v4.8.2">https://github.com/micronaut-projects/micronaut-platform/compare/v4.8.1...v4.8.2</a></p> <h2>Micronaut Platform 4.8.1</h2> <!-- raw HTML omitted --> <h1>WARNING</h1> <p><strong>Unfortunately there is an issue with the release</strong>. If you upgrade to 4.8.1 you will have to rollback the version of Micronaut SourceGen to 1.7.2</p> <pre lang="java"><code>configurations.all { resolutionStrategy { eachDependency { DependencyResolveDetails details -&gt; if (details.requested.group == &quot;io.micronaut.sourcegen&quot;) { details.useVersion(&quot;1.7.2&quot;) } } } } </code></pre> <h2>What's Changed</h2> <h3>Bug Fixes 🐞</h3> <ul> <li> <p>Fix Shade Plugin exclusion filter by <a href="https://github.com/alvarosanchez"><code>@​alvarosanchez</code></a> in <a href="https://redirect.github.com/micronaut-projects/micronaut-platform/pull/1961">micronaut-projects/micronaut-platform#1961</a></p> </li> <li> <p>fix(deps): update dependency org.projectlombok:lombok to v1.18.38 (<a href="https://redirect.github.com/micronaut-projects/micronaut-platform/issues/1957">#1957</a>)</p> </li> <li> <p>fix(deps): update dependency org.graalvm.python:graalpy-maven-plugin to v24.2.1 (<a href="https://redirect.github.com/micronaut-projects/micronaut-platform/issues/1970">#1970</a>)</p> </li> </ul> <h3>Micronaut Modules</h3> <ul> <li><a href="https://github.com/micronaut-projects/micronaut-core/releases/tag/v4.8.10">Micronaut Core 4.8.10</a></li> <li><a href="https://github.com/micronaut-projects/micronaut-maven-plugin/releases/tag/v4.8.2">Micronaut Maven Plugin 4.8.2</a></li> <li><a href="https://github.com/micronaut-projects/micronaut-json-schema/releases/tag/v1.5.2">Micronaut JSON Schema 1.5.2</a></li> <li><a href="https://github.com/micronaut-projects/micronaut-micrometer/releases/tag/v5.10.1">Micronaut Micrometer 5.10.1</a></li> <li><a href="https://github.com/micronaut-projects/micronaut-servlet/releases/tag/v5.2.2">Micronaut Servlet 5.2.2</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/micronaut-projects/micronaut-platform/compare/v4.8.0...v4.8.1">https://github.com/micronaut-projects/micronaut-platform/compare/v4.8.0...v4.8.1</a></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/19c1d5d17c3601d3d0545b4dab3d608453236884"><code>19c1d5d</code></a> [skip ci] Release v4.8.2</li> <li><a href="https://github.com/micronaut-projects/micronaut-platform/commit/5483babdaa692fea2bd7297ddfc4e455f961724c"><code>5483bab</code></a> fix(deps): update dependency org.graalvm.sdk:graal-sdk to v24.2.1 (<a href="https://redirect.github.com/micronaut-projects/micronaut-platform/issues/1974">#1974</a>)</li> <li><a href="https://github.com/micronaut-projects/micronaut-platform/commit/0effb24db9ff3253f37fa8e7df86d3762be4b0f1"><code>0effb24</code></a> fix(deps): update dependency org.graalvm.nativeimage:svm to v23.1.7 (<a href="https://redirect.github.com/micronaut-projects/micronaut-platform/issues/1969">#1969</a>)</li> <li><a href="https://github.com/micronaut-projects/micronaut-platform/commit/4e4ed20107adbc368059087eecd7d445406ad5cf"><code>4e4ed20</code></a> fix(deps): update dependency io.micronaut:micronaut-core-bom to v4.8.11 (<a href="https://redirect.github.com/micronaut-projects/micronaut-platform/issues/1973">#1973</a>)</li> <li><a href="https://github.com/micronaut-projects/micronaut-platform/commit/a513e73db4623367b99e0426c0f13a3da74e19ac"><code>a513e73</code></a> Revert &quot;fix(deps): update dependency io.micronaut.sourcegen:micronaut-sourceg...</li> <li><a href="https://github.com/micronaut-projects/micronaut-platform/commit/c12ea5e4a25df8dcd308338c5d4c11af9f465e9a"><code>c12ea5e</code></a> chore: Bump version to 4.8.2-SNAPSHOT</li> <li><a href="https://github.com/micronaut-projects/micronaut-platform/commit/4d1b7b056fd725204634893d62d9b88c6bb84c66"><code>4d1b7b0</code></a> [skip ci] Release v4.8.1</li> <li><a href="https://github.com/micronaut-projects/micronaut-platform/commit/37c8fbd1c7213ce1e1749b37ced537330fd2d5cb"><code>37c8fbd</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/f0daa499cecd786884603571f5cc5c1df5c04723"><code>f0daa49</code></a> fix(deps): update dependency io.micronaut:micronaut-core-bom to v4.8.10 (<a href="https://redirect.github.com/micronaut-projects/micronaut-platform/issues/1968">#1968</a>)</li> <li><a href="https://github.com/micronaut-projects/micronaut-platform/commit/67077814d03419dd71e742fd8b4c399259cc96d4"><code>6707781</code></a> fix(deps): update dependency io.micronaut.maven:micronaut-maven-plugin to v4....</li> <li>Additional commits viewable in <a href="https://github.com/micronaut-projects/micronaut-platform/compare/v4.7.6...v4.8.2">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.2)](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-18 08:32:20 +02:00
rpahli (Migrated from github.com) reviewed 2025-04-18 08:32:20 +02:00
fabian-schlegel (Migrated from github.com) reviewed 2025-04-18 08:32:20 +02:00
wistefan (Migrated from github.com) reviewed 2025-04-18 08:32:20 +02:00
kokuwaio-bot (Migrated from github.com) approved these changes 2025-04-18 08:32:29 +02:00
dependabot[bot] commented 2025-06-13 08:24:51 +02:00 (Migrated from github.com)

Superseded by #452.

Superseded by #452.

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!449
No description provided.