grails-core
grails-core copied to clipboard
The Grails Web Application Framework
Oracle, Postgres and MySQL all have support for storing JSON in columns, and querying/indexing json data stored in those columns. I was wondering how JSON columns are supported in GORM?...
The following will not work inside a gsp and will throw an exception. ```html const name = 'Bob'; console.log(`Hello ${name}`) ``` Workaround: ```html const name = 'Bob'; console.log(${raw('`Hello ${name}`')}) ```...
Test-Case for #14753
Rebasing https://github.com/apache/grails-core/issues/11795 onto 7.0.x @robertoschwald I see you submitted this PR sometime ago and it was never merged. From what I can tell, it's still an issue. I don't see...
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [io.micronaut.serde:micronaut-serde-jackson](https://micronaut.io) ([source](https://redirect.github.com/micronaut-projects/micronaut-serialization)) | `2.10.2` -> `2.14.0` | [](https://docs.renovatebot.com/merge-confidence/) |...
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [io.micronaut.serde:micronaut-serde-jackson](https://micronaut.io) ([source](https://redirect.github.com/micronaut-projects/micronaut-serialization)) | `2.11.0` -> `2.14.0` | [](https://docs.renovatebot.com/merge-confidence/) |...
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [io.micronaut:micronaut-http-client](https://micronaut.io) ([source](https://redirect.github.com/micronaut-projects/micronaut-core)) | `4.6.5` -> `4.8.7` | [](https://docs.renovatebot.com/merge-confidence/) |...
## Issue description This ticket will track issues with upgrading Grails to Groovy 5. ### Compilation errors #### Groovy 5 updated the Groovy shell ```console /home/runner/work/grails-core/grails-core/grails-console/src/main/groovy/grails/ui/shell/support/GroovyshApplicationContext.groovy: 21: unable to resolve...
This is the start of checking compatibility with Groovy 5 and eventually adding a CI workflow for Groovy 5.0.0-SNAPSHOT.
### Expected Behavior _No response_ ### Actual Behaviour `WebUtils.retrieveGrailsWebRequest().getBaseUrl()` does not return a consistent request base URL when: - `X-Forwarded-Proto` request header is defined - `X-Forwarded-Port` request header is *not*...