James Hedley
James Hedley
Hmm, just tried it on a CentOS 6.5 Vbox and that segfaulted too. That should be equivalent to my RHEL 6.5 system... odd. Kernels are both 2.6.32-431 so must be...
Is std::rand random enough? There are [dire warnings](https://www.securecoding.cert.org/confluence/display/cplusplus/MSC50-CPP.+Do+not+use+std%3A%3Arand%28%29+for+generating+pseudorandom+numbers) about using it in secure applications, but I guess it might be ok for this. I'm not a C programmer so I'm...
@jsdevel can you give me some more details on how to "update the schema"? What schema are you referring to? The link above takes you to `schema.json` but there's nothing...
https://github.com/jameskhedley/test151 It's just a fresh app `$ grails create-app test151 --profile=web`, then change the dependencies for hibernate5 to hibernate4, then add the plugin, then a single domain class. The only...
Adding specific liquibase doesn't help either, as per docs: `compile 'org.liquibase:liquibase-core:3.5.3'`
@jameskleeh anything yet? If migration plugin is broken for grails 3, would halt our migration project. Suspect I'm doing something wrong though...
@robertoschwald yes it says plugin version 2.0.0, which is the version that is supposed to work with hibernate4? As per https://github.com/grails-plugins/grails-database-migration#versions As far as I can see, plugin v1.4 works...
Using grails 3.3.8, hibernate5 and plugin v3.0.3 fails with a different error (see below). Is there a version of grails 3.x that you would expect to work with 2.0.0 and...
Good spot and thanks for help so far. Actually i tried it with 3.0.4 and got the same error - but only with `dbm-status` - `dbm-gorm-diff` worked! I think dbm-status...
Additionally, the current Guava level (16.0.1, see project.gradle) is vulnerable according to https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-10237. Using Guava 26.0 breaks because the character definitions in CharMatcher have been removed (had been deprecated for...