Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Faker 9 breaking changes are not resolved. #27367

Closed
1 task
mshima opened this issue Sep 23, 2024 · 1 comment · Fixed by #27368
Closed
1 task

Faker 9 breaking changes are not resolved. #27367

mshima opened this issue Sep 23, 2024 · 1 comment · Fixed by #27368

Comments

@mshima
Copy link
Member

mshima commented Sep 23, 2024

Overview of the issue

Faker 9 migration needs adjusts.

Related to #27292, #27179

JHipster Version(s)

v8.7.1

JHipster configuration
JDL definitions
     application {
  config {
    applicationType monolith
    cacheProvider no
    creationTimestamp 1632872179205
    devDatabaseType h2Disk
    enableHibernateCache false
    enableTranslation false
    jwtSecretKey "ZjY4MTM4YjI5YzMwZjhjYjI2OTNkNTRjMWQ5Y2Q0Y2YwOWNmZTE2NzRmYzU3NTMwM2NjOTE3MTllOTM3MWRkMzcyYTljMjVmNmQ0Y2MxOTUzODc0MDhhMTlkMDIxMzI2YzQzZDM2ZDE3MmQ3NjVkODk3OTVmYzljYTQyZDNmMTQ="
    testFrameworks [cypress]
  }

entities Blog, Post, Tag
}

@EnableAudit
@ChangelogDate(20240000000000)
entity Blog {
name String required minlength(3)
handle String required minlength(2)
}

@EnableAudit
@ChangelogDate(20240000000100)
entity Post {
title String required
content TextBlob required
date Instant required
}

@EnableAudit
@ChangelogDate(20240000000300)
entity Tag {
name String required minlength(2)
}

relationship ManyToOne {
Post{blog(name)} to Blog
}

relationship ManyToMany {
Post{tag(name)} to Tag{entry}
}

The information is mandatory for bug reports. This will allow us to use automated tests and genarate the broken sample using jhipster from-issue command.

Browsers and Operating System
  • Checking this box is mandatory (this is just to show you read everything)
Copy link
Contributor

github-actions bot commented Sep 23, 2024

JHipster has completed the sample check
.yo-rc.json: blank
Entities JDL: blank
Application:
Frontend check: skipped
Backend check: skipped
E2E check: skipped

This check uses jhipster info output from the issue description to generate the sample.
Bug report that does not contain this information will be marked as invalid.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant