This is an automated email from the ASF dual-hosted git repository.
sbglasius pushed a change to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/grails-core.git
from c8a02b7050 Merge pull request #15226 from apache/remove-java-library
add 1c7fa75df8 fix: Re-implemented ContainerRenderer on
AbstractJsonViewContainerRenderer
new 49ced8184c Merge pull request #15234 from
apache/fix/issue_15228-respond-errors
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../grails/rest/render/ContainerRenderer.groovy | 2 +-
.../main/groovy/grails/rest/render/Renderer.groovy | 2 +-
.../rest/render/errors/VndErrorJsonRenderer.groovy | 3 +-
.../rest/render/errors/VndErrorXmlRenderer.groovy | 3 +-
.../grails/rest/render/hal/HalJsonRenderer.groovy | 2 +-
.../render/util/AbstractLinkingRenderer.groovy | 4 +-
.../rest/render/json/DefaultJsonRenderer.groovy | 2 +-
.../{issue-11767 => issue-15228}/build.gradle | 19 ++--
.../grails-app/conf/application.yml | 12 +--
.../grails-app/conf/logback.xml | 4 +-
.../issue15228/app/AppController.groovy} | 22 +++--
.../controllers/issue15228}/app/UrlMappings.groovy | 2 +-
.../init/issue15228}/app/Application.groovy | 2 +-
.../grails-app/views/app/normalView.gson | 9 +-
.../grails-app/views/errors/_errors.gson | 27 +++---
.../_otherValidateableObject.gson | 9 +-
.../issue11767/app/GsonViewRespondSpec.groovy | 104 +++++++++++++++++++++
.../issue15228/app/OtherValidateableObject.groovy} | 13 ++-
.../issue15228/app/ValidateableObject.groovy} | 11 +--
.../groovy/functional/tests/BookSpec.groovy | 27 +++---
.../views/mvc/renderer/DefaultViewRenderer.groovy | 2 +-
.../AbstractJsonViewContainerRenderer.groovy | 11 +--
settings.gradle | 2 +
23 files changed, 201 insertions(+), 93 deletions(-)
copy grails-test-examples/{issue-11767 => issue-15228}/build.gradle (69%)
copy grails-test-examples/{issue-11767 =>
issue-15228}/grails-app/conf/application.yml (94%)
copy grails-test-examples/{async-events-pubsub-demo =>
issue-15228}/grails-app/conf/logback.xml (97%)
copy
grails-test-examples/{views-functional-tests/grails-app/controllers/functional/tests/ModelAndViewController.groovy
=> issue-15228/grails-app/controllers/issue15228/app/AppController.groovy}
(70%)
copy grails-test-examples/{issue-11767/grails-app/controllers/issue11767 =>
issue-15228/grails-app/controllers/issue15228}/app/UrlMappings.groovy (97%)
copy grails-test-examples/{external-configuration/grails-app/init/test =>
issue-15228/grails-app/init/issue15228}/app/Application.groovy (97%)
copy grails-data-graphql/plugin/grails-app/views/graphql/invalidRequest.gson
=> grails-test-examples/issue-15228/grails-app/views/app/normalView.gson (86%)
copy grails-data-graphql/plugin/grails-app/views/graphql/index.gson =>
grails-test-examples/issue-15228/grails-app/views/errors/_errors.gson (62%)
copy grails-data-graphql/plugin/grails-app/views/graphql/invalidRequest.gson
=>
grails-test-examples/issue-15228/grails-app/views/otherValidateableObject/_otherValidateableObject.gson
(84%)
create mode 100644
grails-test-examples/issue-15228/src/integration-test/groovy/issue11767/app/GsonViewRespondSpec.groovy
copy grails-test-examples/{gorm/src/main/groovy/gorm/TestValidate.groovy =>
issue-15228/src/main/groovy/issue15228/app/OtherValidateableObject.groovy} (87%)
copy grails-test-examples/{gorm/src/main/groovy/gorm/TestValidate.groovy =>
issue-15228/src/main/groovy/issue15228/app/ValidateableObject.groovy} (88%)