Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency io.micronaut.platform:micronaut-platform to v4.7.0 #1113

Open
wants to merge 1 commit into
base: 5.7.x
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 13, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
io.micronaut.platform:micronaut-platform (source) 4.6.3 -> 4.7.0 age adoption passing confidence

Release Notes

micronaut-projects/micronaut-platform (io.micronaut.platform:micronaut-platform)

v4.7.0: Micronaut Platform 4.7.0

Core

Micronaut Core contains multiple improvements. To highlight a few, it improves the HTTP Client implementations, the display of circular dependency errors, adds a new API FilterBodyParser, the possibility to disable normalization of property keys in @EachProperty beans, and it adds nicer HTML error pages.

LangChain4J

Micronaut LangChain4J provides integration with Langchain4j.

For example, Micronaut LangChain4J makes easy to inject your favourite language model in your Micronaut beans:

import dev.langchain4j.model.chat.ChatLanguageModel;
import jakarta.inject.Singleton;

@​Singleton
class DefaultJokeGenerator implements JokeGenerator {
    private final ChatLanguageModel model;
    DefaultJokeGenerator(ChatLanguageModel model) {
        this.model = model;
    }

    @​Override
    public String generateJoke() {
        return model.generate("Tell me a joke about Java?");
    }
}

GraalPy

Micronaut Graal Languages is a collection of components for integration of Graal based dynamic languages with Micronaut Framework.

With Micronaut GraalPy eases exposing Python modules as Java Beans within a Micronaut application. We published two guides:

Build Plugins

There are new versions of both Maven 4.7.1, and Gradle 4.4.4 Plugins.

Micronaut Security

Micronaut Security adds a new module, Micronaut Security Cross-Site Request Forgery (CSRF) to help you protect your applications against CSRF attacks. CSRF protection is integrated also in Micronaut Views with a CSRF Token View Model Processor, and CSRF hidden field in form generation.

Micrometer

Micronaut Micrometer updates to Micrometer 1.13.6 and it adds new module for Prometheus PushGateway.

Cloud

Analytics

Persistence

  • Micronaut OpenAPI keeps getting better and better thanks to community contribution.
  • Micronaut Data contains multiple improvements. Among others, it includes improvements to pagination and Criteria.
  • Micronaut SQL updates ojdbc to 23.5.0.24.07, MariaDB to 3.5.0, and MySQL Connector to 9.1.0, Hikari to 6.0.0, and Tomcat JDBC to 11.0.1. Moreover, it is now possible to disable individual datasources both in JPA and JDBC.
  • Micronaut R2DBC updates to r2dbc-io-asyncer-mysql to 1.3.0, r2dbc-mariadb to 1.3.0, and r2dbc-postgresql to 1.0.7.RELEASE.
  • Micronaut MongoDB updates to Mongo Java Driver 4.11.4.

Database Migration

Reactive Libraries

Misc


Configuration

📅 Schedule: Branch creation - "after 10pm" in timezone Europe/Prague, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the type: dependency-upgrade Upgrade a dependency label Nov 13, 2024
Copy link

sonarcloud bot commented Nov 13, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: dependency-upgrade Upgrade a dependency
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants