feat: wire GraphQL and support module adapters to GormRegistry O(M+N) scaling#15786
Open
borinquenkid wants to merge 1 commit into
Open
feat: wire GraphQL and support module adapters to GormRegistry O(M+N) scaling#15786borinquenkid wants to merge 1 commit into
borinquenkid wants to merge 1 commit into
Conversation
2 tasks
d58178b to
4aab065
Compare
6f5c31f to
590e21c
Compare
4aab065 to
9ad7741
Compare
590e21c to
b97eaeb
Compare
9ad7741 to
ac65d23
Compare
b97eaeb to
3cc9135
Compare
ac65d23 to
4e92db6
Compare
3cc9135 to
a884511
Compare
4e92db6 to
c2534ca
Compare
a884511 to
cba09b6
Compare
c2534ca to
6227f96
Compare
cba09b6 to
d663ee9
Compare
6227f96 to
bbfc639
Compare
d663ee9 to
6d53d02
Compare
bbfc639 to
4aa8561
Compare
6d53d02 to
edbbbb4
Compare
… scaling Register GORM APIs with GormRegistry for GraphQL, async, RxGORM, JSON views, scaffolding, and converters modules. Update grails-test-suite-uber integration tests to exercise the registry-based API path across all datastores. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
4aa8561 to
7abbedc
Compare
edbbbb4 to
54d8eaa
Compare
🚨 TestLens detected 234 failed tests 🚨Here is what you can do:
Test SummaryCI / Build Grails-Core (macos-latest, 21) > :grails-data-graphql-core:test
CI / Build Grails-Core (macos-latest, 21) > :grails-data-simple:test
CI / Build Grails-Core (macos-latest, 21) > :grails-datamapping-core:test
CI / Build Grails-Core (macos-latest, 21) > :grails-fields:test (first 40 of 173)
CI / Build Grails-Core (ubuntu-latest, 21) > :grails-data-graphql-core:test
CI / Build Grails-Core (ubuntu-latest, 21) > :grails-data-simple:test
CI / Build Grails-Core (ubuntu-latest, 25) > :grails-data-graphql-core:test
CI / Build Grails-Core (ubuntu-latest, 25) > :grails-data-simple:test
CI / Build Grails-Core (windows-latest, 25) > :grails-data-graphql-core:test
CI / Build Grails-Core Rerunning all Tasks (ubuntu-latest, 21) > :grails-data-graphql-core:test
SiteMesh 2 Compatibility / SiteMesh 2 Core Tests (Java 21) > :grails-data-graphql-core:test
🏷️ Commit: 54d8eaa Test Failures (first 10 of 234)AssociationTypeTemplatesSpec > property name trumps association type (:grails-fields:test in CI / Build Grails-Core (macos-latest, 21))AssociationTypeTemplatesSpec > resolves template for association type (:grails-fields:test in CI / Build Grails-Core (macos-latest, 21))AssociationTypeTemplatesSpec > theme: property name trumps association type (:grails-fields:test in CI / Build Grails-Core (macos-latest, 21))AssociationTypeTemplatesSpec > theme: resolves template for association type (:grails-fields:test in CI / Build Grails-Core (macos-latest, 21))CreateEntityDataFetcherSpec > test get (:grails-data-graphql-core:test in CI / Build Grails-Core (macos-latest, 21))DefaultInputRenderingPersistentSpec > a one-to-many property has a list of links instead of an input (:grails-fields:test in CI / Build Grails-Core (macos-latest, 21))DefaultInputRenderingPersistentSpec > an enum with a toString method uses name instead of toString for the keys (:grails-fields:test in CI / Build Grails-Core (macos-latest, 21))DefaultInputRenderingPersistentSpec > enum select has correct selected option (:grails-fields:test in CI / Build Grails-Core (macos-latest, 21))DefaultInputRenderingPersistentSpec > enum select should respect constraint inList > enum select should respect constraint inList [inListConstraint: [first, second], notAllowed: [third], #0] (:grails-fields:test in CI / Build Grails-Core (macos-latest, 21))DefaultInputRenderingPersistentSpec > enum select should respect constraint inList > enum select should respect constraint inList [inListConstraint: [first], notAllowed: [third, second], #1] (:grails-fields:test in CI / Build Grails-Core (macos-latest, 21))Muted Tests (first 20 of 234)Select tests to mute in this pull request:
Reuse successful test results:
Click the checkbox to trigger a rerun:
Learn more about TestLens at testlens.app. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Wires the remaining adapters and support modules into the
GormRegistryintroduced in #15780.Modules updated:
grails-data-graphql— registers GraphQL GORM APIs with the registry; addsGraphqlTenantContextProfilingSpecgrails-datamapping-async— async GORM operations wired through registry-based API resolutiongrails-datamapping-rx— RxGORM static/instance APIs sourced from the registrygrails-views-gson— JSON views resolve GORM entity APIs via the registrygrails-scaffolding— scaffold data binding uses registry-based API lookupgrails-converters— JSON/XML converters resolve domain class APIs via the registrygrails-test-suite-uber— integration testNonDefaultDatasourceFlushSpecexercises the registry path across multiple datastoresTest plan
./gradlew :grails-data-graphql:testpasses./gradlew :grails-test-suite-uber:testpassesStack
feat/gorm-registry-h7🤖 Generated with Claude Code