Skip to content

Commit

Permalink
automatic project update for v8.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
deepu105 committed Mar 20, 2024
1 parent ba02dff commit a2860d7
Show file tree
Hide file tree
Showing 255 changed files with 5,053 additions and 2,328 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// maven and gradle wrappers are used by default, we don't need them installed globally
// "INSTALL_MAVEN": "true",
// "INSTALL_GRADLE": "false",
"NODE_VERSION": "18.18.2"
"NODE_VERSION": "20.11.1"
}
},

Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ out/
######################
.gradle/
/build/
/buildSrc/.gradle/
/buildSrc/build/

######################
# Package Files
Expand Down
2 changes: 1 addition & 1 deletion .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.5/apache-maven-3.9.5-bin.zip
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ bracketSameLine: false
plugins:
- prettier-plugin-packagejson
- prettier-plugin-java

# java rules:
overrides:
- files: "*.java"
Expand Down
2 changes: 1 addition & 1 deletion .yo-rc.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"entitySuffix": "",
"hibernateCache": "ehcache",
"jhiPrefix": "jhi",
"jhipsterVersion": "8.1.0",
"jhipsterVersion": "8.2.1",
"jwtSecretKey": "bXktc2VjcmV0LWtleS13aGljaC1zaG91bGQtYmUtY2hhbmdlZC1pbi1wcm9kdWN0aW9uLWFuZC1iZS1iYXNlNjQtZW5jb2RlZAo=",
"languages": ["en"],
"messageBroker": false,
Expand Down
36 changes: 18 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# jhipsterSampleApplication

This application was generated using JHipster 8.1.0, you can find documentation and help at [https://www.jhipster.tech/documentation-archive/v8.1.0](https://www.jhipster.tech/documentation-archive/v8.1.0).
This application was generated using JHipster 8.2.1, you can find documentation and help at [https://www.jhipster.tech/documentation-archive/v8.2.1](https://www.jhipster.tech/documentation-archive/v8.2.1).

## Project Structure

Expand All @@ -13,7 +13,7 @@ In the project root, JHipster generates configuration files for tools like git,
- `.yo-rc.json` - Yeoman configuration file
JHipster configuration is stored in this file at `generator-jhipster` key. You may find `generator-jhipster-*` for specific blueprints configuration.
- `.yo-resolve` (optional) - Yeoman conflict resolver
Allows to use a specific action when conflicts are found skipping prompts for files that matches a pattern. Each line should match `[pattern] [action]` with pattern been a [Minimatch](https://github.com/isaacs/minimatch#minimatch) pattern and action been one of skip (default if ommited) or force. Lines starting with `#` are considered comments and are ignored.
Allows to use a specific action when conflicts are found skipping prompts for files that matches a pattern. Each line should match `[pattern] [action]` with pattern been a [Minimatch](https://github.com/isaacs/minimatch#minimatch) pattern and action been one of skip (default if omitted) or force. Lines starting with `#` are considered comments and are ignored.
- `.jhipster/*.json` - JHipster entity configuration files

- `npmw` - wrapper to use locally installed npm.
Expand All @@ -24,7 +24,7 @@ In the project root, JHipster generates configuration files for tools like git,

Before you can build this project, you must install and configure the following dependencies on your machine:

1. [Node.js][]: We use Node to run a development web server and build the project.
1. [Node.js](https://nodejs.org/): We use Node to run a development web server and build the project.
Depending on your system, you can install Node either from source or as a pre-packaged bundle.

After installing Node, you should be able to run the following command to install development tools.
Expand Down Expand Up @@ -148,14 +148,6 @@ docker compose -f src/main/docker/jhipster-control-center.yml up

## Testing

### Spring Boot tests

To launch your application's tests, run:

```
./mvnw verify
```

### Client tests

Unit tests are run by [Jest][]. They're located in [src/test/javascript/](src/test/javascript/) and can be run with:
Expand All @@ -173,6 +165,14 @@ You can execute automated [lighthouse audits][https://developers.google.com/web/
You should only run the audits when your application is packaged with the production profile.
The lighthouse report is created in `target/cypress/lhreport.html`

### Spring Boot tests

To launch your application's tests, run:

```
./mvnw verify
```

### Gatling

Performance tests are run by [Gatling][] and written in Scala. They're located in [src/test/java/gatling/simulations](src/test/java/gatling/simulations).
Expand Down Expand Up @@ -262,13 +262,13 @@ For more information refer to [Using Docker and Docker-Compose][], this page als
To configure CI for your project, run the ci-cd sub-generator (`jhipster ci-cd`), this will let you generate configuration files for a number of Continuous Integration systems. Consult the [Setting up Continuous Integration][] page for more information.

[JHipster Homepage and latest documentation]: https://www.jhipster.tech
[JHipster 8.1.0 archive]: https://www.jhipster.tech/documentation-archive/v8.1.0
[Using JHipster in development]: https://www.jhipster.tech/documentation-archive/v8.1.0/development/
[Using Docker and Docker-Compose]: https://www.jhipster.tech/documentation-archive/v8.1.0/docker-compose
[Using JHipster in production]: https://www.jhipster.tech/documentation-archive/v8.1.0/production/
[Running tests page]: https://www.jhipster.tech/documentation-archive/v8.1.0/running-tests/
[Code quality page]: https://www.jhipster.tech/documentation-archive/v8.1.0/code-quality/
[Setting up Continuous Integration]: https://www.jhipster.tech/documentation-archive/v8.1.0/setting-up-ci/
[JHipster 8.2.1 archive]: https://www.jhipster.tech/documentation-archive/v8.2.1
[Using JHipster in development]: https://www.jhipster.tech/documentation-archive/v8.2.1/development/
[Using Docker and Docker-Compose]: https://www.jhipster.tech/documentation-archive/v8.2.1/docker-compose
[Using JHipster in production]: https://www.jhipster.tech/documentation-archive/v8.2.1/production/
[Running tests page]: https://www.jhipster.tech/documentation-archive/v8.2.1/running-tests/
[Code quality page]: https://www.jhipster.tech/documentation-archive/v8.2.1/code-quality/
[Setting up Continuous Integration]: https://www.jhipster.tech/documentation-archive/v8.2.1/setting-up-ci/
[Node.js]: https://nodejs.org/
[NPM]: https://www.npmjs.com/
[Webpack]: https://webpack.github.io/
Expand Down
2 changes: 1 addition & 1 deletion npmw
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ basedir=`dirname "$0"`
if [ -f "$basedir/mvnw" ]; then
bindir="$basedir/target/node"
repodir="$basedir/target/node/node_modules"
installCommand="$basedir/mvnw -Pwebapp frontend:install-node-and-npm@install-node-and-npm"
installCommand="$basedir/mvnw --batch-mode -ntp -Pwebapp frontend:install-node-and-npm@install-node-and-npm"

PATH="$basedir/$builddir/:$PATH"
NPM_EXE="$basedir/$builddir/node_modules/npm/bin/npm-cli.js"
Expand Down
83 changes: 42 additions & 41 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"jest": "jest --coverage --logHeapUsage --maxWorkers=2 --config jest.conf.js",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"prepare": "husky",
"prettier:check": "prettier --check \"{,src/**/,webpack/,.blueprint/**/}*.{md,json,yml,html,cjs,mjs,js,ts,tsx,css,scss,java}\"",
"prettier:format": "prettier --write \"{,src/**/,webpack/,.blueprint/**/}*.{md,json,yml,html,cjs,mjs,js,ts,tsx,css,scss,java}\"",
"serve": "npm run start --",
Expand All @@ -83,82 +83,83 @@
"packaging": "jar"
},
"dependencies": {
"@angular/common": "17.0.6",
"@angular/compiler": "17.0.6",
"@angular/core": "17.0.6",
"@angular/forms": "17.0.6",
"@angular/localize": "17.0.6",
"@angular/platform-browser": "17.0.6",
"@angular/platform-browser-dynamic": "17.0.6",
"@angular/router": "17.0.6",
"@fortawesome/angular-fontawesome": "0.14.0",
"@angular/common": "17.3.0",
"@angular/compiler": "17.3.0",
"@angular/core": "17.3.0",
"@angular/forms": "17.3.0",
"@angular/localize": "17.3.0",
"@angular/platform-browser": "17.3.0",
"@angular/platform-browser-dynamic": "17.3.0",
"@angular/router": "17.3.0",
"@fortawesome/angular-fontawesome": "0.14.1",
"@fortawesome/fontawesome-svg-core": "6.5.1",
"@fortawesome/free-solid-svg-icons": "6.5.1",
"@ng-bootstrap/ng-bootstrap": "16.0.0",
"@ngx-translate/core": "15.0.0",
"@ngx-translate/http-loader": "8.0.0",
"@popperjs/core": "2.11.8",
"bootstrap": "5.3.2",
"bootstrap": "5.3.3",
"dayjs": "1.11.10",
"ngx-infinite-scroll": "17.0.0",
"rxjs": "7.8.1",
"tslib": "2.6.2",
"zone.js": "0.14.2"
"zone.js": "0.14.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "17.0.0",
"@angular-builders/jest": "17.0.0",
"@angular-devkit/build-angular": "17.0.6",
"@angular-eslint/eslint-plugin": "17.1.1",
"@angular/cli": "17.0.6",
"@angular/compiler-cli": "17.0.6",
"@angular/service-worker": "17.0.6",
"@types/jest": "29.5.11",
"@types/node": "18.19.3",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"browser-sync": "2.29.3",
"@angular-builders/custom-webpack": "17.0.1",
"@angular-builders/jest": "17.0.2",
"@angular-devkit/build-angular": "17.3.0",
"@angular-eslint/eslint-plugin": "17.3.0",
"@angular/cli": "17.3.0",
"@angular/compiler-cli": "17.3.0",
"@angular/service-worker": "17.3.0",
"@types/jest": "29.5.12",
"@types/node": "20.11.25",
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
"browser-sync": "3.0.2",
"browser-sync-webpack-plugin": "2.3.0",
"buffer": "6.0.3",
"concurrently": "8.2.2",
"copy-webpack-plugin": "11.0.0",
"cypress": "13.6.1",
"copy-webpack-plugin": "12.0.2",
"cypress": "13.7.0",
"cypress-audit": "1.1.0",
"eslint": "8.55.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "2.15.1",
"eslint-webpack-plugin": "4.0.1",
"eslint-webpack-plugin": "4.1.0",
"folder-hash": "4.0.4",
"generator-jhipster": "8.1.0",
"husky": "8.0.3",
"generator-jhipster": "8.2.1",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-date-mock": "1.0.8",
"jest-environment-jsdom": "29.7.0",
"jest-junit": "16.0.0",
"jest-preset-angular": "13.1.4",
"jest-preset-angular": "14.0.3",
"jest-sonar": "0.2.16",
"lighthouse": "11.3.0",
"lint-staged": "15.2.0",
"lighthouse": "11.6.0",
"lint-staged": "15.2.2",
"merge-jsons-webpack-plugin": "2.0.1",
"prettier": "3.1.0",
"prettier-plugin-java": "2.5.0",
"prettier-plugin-packagejson": "2.4.7",
"prettier": "3.2.5",
"prettier-plugin-java": "2.6.0",
"prettier-plugin-packagejson": "2.4.12",
"rimraf": "5.0.5",
"swagger-ui-dist": "5.10.3",
"ts-jest": "29.1.1",
"typescript": "5.2.2",
"swagger-ui-dist": "5.12.0",
"ts-jest": "29.1.2",
"typescript": "5.4.2",
"wait-on": "7.2.0",
"webpack-bundle-analyzer": "4.10.1",
"webpack-merge": "5.10.0",
"webpack-notifier": "1.15.0"
},
"engines": {
"node": ">=18.18.2"
"node": ">=20.11.1"
},
"cacheDirectories": [
"node_modules"
],
"overrides": {
"webpack": "5.89.0"
"browser-sync": "3.0.2",
"webpack": "5.90.3"
}
}
Loading

0 comments on commit a2860d7

Please sign in to comment.