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

Disable Couchbase and move WebFlux and Infinispan out of beta #14186

Merged
merged 2 commits into from Mar 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 6 additions & 5 deletions generators/server/prompts.js
Expand Up @@ -44,7 +44,7 @@ function askForServerSideOpts() {
when: () => ['monolith', 'microservice'].includes(applicationType),
type: 'confirm',
name: 'reactive',
message: '[Beta] Do you want to make it reactive with Spring WebFlux?',
message: 'Do you want to make it reactive with Spring WebFlux?',
default: serverDefaultConfig.reactive,
},
{
Expand Down Expand Up @@ -143,10 +143,11 @@ function askForServerSideOpts() {
name: 'Cassandra',
});
}
opts.push({
// Couchbase is broken, see https://github.com/jhipster/generator-jhipster/pull/14184 for more information.
/* opts.push({
value: 'couchbase',
name: '[BROKEN] Couchbase',
});
name: 'Couchbase',
}); */
opts.push({
value: 'neo4j',
name: '[BETA] Neo4j',
Expand Down Expand Up @@ -205,7 +206,7 @@ function askForServerSideOpts() {
},
{
value: 'infinispan',
name: '[BETA] Infinispan (hybrid cache, for multiple nodes)',
name: 'Infinispan (hybrid cache, for multiple nodes)',
},
{
value: 'memcached',
Expand Down