Results 63 issues of Scott Murphy

### Expected Behavior This worked fine prior but broke M4. If you have a plugin with a controller, it takes priority over the controller with the same name even if...

status: awaiting feedback

### Feature description Currently Grails controllers render json with no model. This is extremely limiting and contrary to how other views work. For instance, def index() provides `"${entityName.uncapitalize()Count}"` to index.gsp,...

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}`')}) ```...

Using https://github.com/grails/grails-wrapper/releases/tag/v5.0.0 ## Issues with Line Separator ``` % ./grailsw env: bash\r: No such file or directory ``` ### this happens because the Line Separator used is different from the...

related-to: grails-wrapper

To replicated behavior, add the following to any app: `/conf/application.groovy ` ```groovy import org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter ``` `build.gradle` ```groovy dependencies { // ... implementation 'org.springframework.security:spring-security-oauth2-client:5.8.14' } ``` ``` ./grailsw | Error Error...

related-to: grails-wrapper

Previously annotations would only be detected if the super class was another domain class. This allows a domain class to have parent class that is not a domain class and...

To bom or not to bom? This fix allows me to go to sleep tonight... 1. Fixes version resolution 2. Sorts versions 3. Disables bom module file that breaks dependency...

status: awaiting feedback
bug

Modify [display constraint](https://grails.apache.org/docs/latest/ref/Constraints/Usage.html) so that 1. it can override blacklist behavior if set. (e.g. Date dateCreated currently will always not show up. 2. Can specify display behavior (input/output) For instance,...

# RestfulController has bad logic for json requests Performing a `application/json` save or update request with multipartForm data results in a `text/html` response. For modern REST usage it’s a leaky...

https://github.com/codeconsole/grails-autotimestamp-bug https://gorm.grails.org/latest/hibernate/manual/index.html#eventsAutoTimestamping Since Apr 18, 2017 https://github.com/grails/grails-data-mapping/commit/353a25427c55cb1dbe52a29b40c2308ef394fda0

relates-to: gorm