jhipster-core
Advanced tools
Changelog
v6.0.7
## What's new:
min
and max
field validations now take decimal values (thanks to @ruddell for reporting this one):
entity MyEntity {
rate Double min(0.42)
}
MIN = 0.42
entity MyEntity {
rate Double min(MIN)
}
Changelog
v6.0.6
## Bug fixes:
jwtSecretKey
, rememberMeKey
and changelogDate
. That caused the import of such a JDL file to fail because of
"illegal" characters being present. Now, these options are quoted when an application is exported to a JDL file.Changelog
v6.0.5
When having a relationship like this:
relationship OneToOne {
A to B with jpaDerivedIdentifier,
C to D
}
The parsing system didn't know if the comma was separating the relationship from A to B or the relationship option list.
The comma is supposed to separate both, but a restriction has been made in this case: a comma without a new line has to separate relationship options.
Changelog
v6.0.4
Changelog
v6.0.3
## What's new:
Changelog
v6.0.2
Changelog
v6.0.1
rememberMeKey
option exists in the .yo-rc.json file, then the export failed.
jwtSecretKey
app option.Changelog
v6.0.0
pager
value from the pagination
option.
require('jhipster-core').PACKAGE
clientRootFolder
is now possibleenum Language {
FRENCH (frenchy),
ICELANDIC (viking)
}
all...
(like allowMultiple
) works again
all
keyword from the parsing system and relying on the existing matchers to
notice if the JDL file contains the "all" keywordrelationship ManyToMany {
A{b) to B
}
Changelog
v5.0.0
SEARCH_ENGINE
with SEARCH
redis
and caffeine
for cacheProvider
(thanks to @Shaolans and @murdos)jwtSecretKey
to the JDLreadonly
to declare an entity as read only (@murdos)