xpusostomos

Results 33 issues of xpusostomos

I would like to resurrect a previously reported bug... https://github.com/grails/grails-core/issues/11321 Because I for one can't see how there is not some kind of bug here. According to the documentation http://gorm.grails.org/6.0.x/hibernate/manual/#modificationChecking...

I'm trying to use the gradle docker plugin to push docker images to repositories, but it doesn't work on Windows. The reason being that it can't find the docker-credential-gcloud command....

bug

Grails has a special field "lastUpdated", which auto-populates the update date. You can make this field nullable: false, which makes sense... why should an auto-updated field be nullable. But what...

type: docs

The auto-generated data model from grails / gorm creates referential integrity constraints... good. However when you use the joinTable: clause, it doesn't create constraints. An example of this is the...

Using Grails 4.0.1, hibernate5:7.0.0, hibernate-code:5.4.0 I'm trying to save an object with no validation: ```groovy Name.withTransaction { nm.save(validate: false, deepValidate: false, flush: true) } ``` However it ends up calling...

status: awaiting validation

I wanted to make a field template that has pre-encoded HTML: __fields/contract/contractTerms/displayWidget.gsp:_ `${raw(value)}` value is expected to contain HTML. However, raw() doesn't work inside a template. I put this in...

enhancement

If you have a domain object with this.. ``` static mapping = { id generator: 'assigned' } ``` It would be really great if `

enhancement
help wanted

If I have a field in my domain class: `Long myField` and that field has a value of 1000000. It ends up generating this HTML: `` Those commas mean that...

bug
help wanted

As far as I can see, this is terribly designed, because you can't get access to the column names until you've actually read the first line of real data. The...

Making things private (as opposed to protected) in an object language is extremely anti-social, because it prevents people from inheriting and expanding the class. For example, I wrote the below...