Thomas Rasmussen

Results 11 comments of Thomas Rasmussen

@weinellucian I have a [PR](https://github.com/grails-plugins/grails-x-frame-options-plugin/pull/1) upgrading the XFrame Options plugin to Grails 7 You can checkout the branch and do a `./gradlew publishToMavenLocal` to test it. Release is awaiting the...

This issue was fixed by @matrei in august 2024 in this commit https://github.com/apache/grails-core/commit/fd1f19be7f977426c47c14fa12a37bede0f68fba

We also need to add this to the projects generated `build.gradle` if Junit is selected, otherwise the test won't be executed: ``` tasks.withType(Test).configureEach { useJUnitPlatform() } ``` https://github.com/dauer/grails-core/blob/aa561174da33261c26d78cd546b1b5f8810414a6/grails-forge/grails-forge-core/src/main/java/org/grails/forge/feature/build/gradle/templates/buildGradle.rocker.raw#L119 Should we...

The bug must have been introduced in Grails 6.1.2 and it seems to also be present in Grails 7.0.0 ...

I think I ran into the same issue, had to use arg# instead of parameter name: ``` - @Cacheable(cacheNames = ES_CACHE_NAME, key = "{#request.myField, #request.SsomeOtherField}") + @Cacheable(cacheNames = ES_CACHE_NAME, key...

@jesusrodriguezmjp it has been removed from Grails-core and you should probably use another rest client. But there is a version updated to work with Grails 7 https://github.com/gpc/grails-datastore-rest-client-legacy

The issue is that the documentation is assembled from multiple documents. The root document `index.adoc` includes multiple other documents fx. `advancedGORMFeatures/eventsAutoTimestamping.adoc` When the included documents are processed individually Asciidoctor complains...

The [Resources plugin](https://github.com/grails-plugins/grails-resources) is quite old, last update was january 2015, and it is written for Grails 2.3.11. The documentation should recommend using the [Asset Pipeline plugin](https://github.com/wondrify/asset-pipeline) instead FYI: The...

I have a simple PR https://github.com/apache/grails-core/pull/15106 removing the Resources plugin and recommending the Asset Pipeline in the documentation. I won't close this issue - we should probably improve the documentation...

The Grails 7 [documentation](https://grails.apache.org/docs/latest/guide/async.html#rxjava) mentioning the `grails-rxjava` plugin. The `rxjava` plugin is not part of Grails-Core it is a [community plugin](https://github.com/grails-plugins/grails-rxjava) and has not been updated for Grails 7. **Todo:**...