Iván López

Results 60 comments of Iván López

GraalVM is a new polyglot JVM from Oracle based on OpenJDK that replaces the JIT compiler with another one written in Java (the GraalVM JIT compiler). But in this case...

Awesome! Looking forward to see progress on this :smiley:

Even if there are some methods misspelled this is a breaking change because we're changing public api. I propose to move this to GORM 7.0 milestone. What do you think...

You are right, it is about deprecating and not removing method. In any case I don't think we should do the change in a `6.1.x` release. I still think it...

Ok, fair enough. Then we deprecate now so we can remove later in 7. Thanks for the clarification :+1:

@chinadeng Probably related with https://github.com/micronaut-projects/micronaut-core/issues/685

The problem is here: https://github.com/micronaut-projects/micronaut-openapi/blob/3c24f1268d5893c98efea007abcec5b37ae471b4/openapi/src/main/java/io/micronaut/openapi/visitor/AbstractOpenApiVisitor.java#L1199 OpenApi calls `.values()` to get the values of the enum. This calls (for Java) the following in core https://github.com/micronaut-projects/micronaut-core/blob/09d392ab8f788c9e5cd415ea2ae076a0d8e050dc/inject-java/src/main/java/io/micronaut/annotation/processing/visitor/JavaEnumElement.java#L57-L64 The problem is that inside that...

Can you please share an application that reproduces your problem?

The problem can be reproduced with a very simple Groovy project. The same project with Java works properly (adding the appropriate dependencies). I'll dig to see why this happens. P.S:...

The code does nothing for Groovy because we are explicitly not running it, see https://github.com/micronaut-projects/micronaut-openapi/blob/master/openapi/src/main/java/io/micronaut/openapi/visitor/OpenApiIncludeVisitor.java#L45-L47 After removing that `if` there is an error during compilation. I've reported an issue (https://github.com/micronaut-projects/micronaut-core/issues/6503)...