This is an automated email from the ASF dual-hosted git repository.
scottheiberg pushed a change to branch 7.1.x
in repository https://gitbox.apache.org/repos/asf/grails-core.git
from e99e16f2d1 Merge pull request #15346 from
apache/feat/add-clearConstraintsMapCache-api
add 2bef7742ac Introduction of grails add-field for modify grails domain
objects via the command line
add 5176e35712 support for domain names with same name but different
packages
add ea3b914f6c make field prefixes variables
add e93e6e4d1e throw exception on syntax error
add d2a6c84d4b support for enums and custom types
add 177ff46e8a remove groovyVersion
add 385c5d7d1a make groovy 3 dep compile only
add 6b17eaf636 resolve groovy conflict from transitive bom import
add 8d1e8c0517 fix test on windows
add f267623709 Merge branch '7.1.x' into
fork/codeconsole/7.1.x-cli-enhancements
add 9c155505ec Merge branch '7.1.x' into 7.1.x-cli-enhancements
add 74df020b3e add-property support
add c2214f9d2d update since to 7.1
add 0f1e1dcb14 use --access instead of --private/protected/public
add f841c3256b remove add-field command
add 828dfe467c Merge branch '7.1.x' into 7.1.x-cli-enhancements
add 9aa89c0851 Merge pull request #15289 from
codeconsole/7.1.x-cli-enhancements
No new revisions were added by this update.
Summary of changes:
.../codegen/model/AbstractMemberDefinition.groovy | 225 +++++++++
.../codegen/model/DomainFieldModifier.groovy | 391 ++++++++++++++++
.../grails/codegen/model/FieldDefinition.groovy | 156 +++++++
.../grails/codegen/model/PropertyDefinition.groovy | 119 +++++
.../codegen/model/DomainFieldModifierSpec.groovy | 502 +++++++++++++++++++++
.../codegen/model/FieldDefinitionSpec.groovy | 162 +++++++
.../codegen/model/PropertyDefinitionSpec.groovy | 364 +++++++++++++++
grails-forge/grails-forge-cli/build.gradle | 5 +
.../forge/cli/command/AddPropertyCommand.java | 181 ++++++++
grails-profiles/base/commands/add-property.groovy | 132 ++++++
10 files changed, 2237 insertions(+)
create mode 100644
grails-bootstrap/src/main/groovy/grails/codegen/model/AbstractMemberDefinition.groovy
create mode 100644
grails-bootstrap/src/main/groovy/grails/codegen/model/DomainFieldModifier.groovy
create mode 100644
grails-bootstrap/src/main/groovy/grails/codegen/model/FieldDefinition.groovy
create mode 100644
grails-bootstrap/src/main/groovy/grails/codegen/model/PropertyDefinition.groovy
create mode 100644
grails-bootstrap/src/test/groovy/grails/codegen/model/DomainFieldModifierSpec.groovy
create mode 100644
grails-bootstrap/src/test/groovy/grails/codegen/model/FieldDefinitionSpec.groovy
create mode 100644
grails-bootstrap/src/test/groovy/grails/codegen/model/PropertyDefinitionSpec.groovy
create mode 100644
grails-forge/grails-forge-cli/src/main/java/org/grails/forge/cli/command/AddPropertyCommand.java
create mode 100644 grails-profiles/base/commands/add-property.groovy