Skip to content

Commit

Permalink
automatic project update for v8.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mraible committed Sep 21, 2024
1 parent 40405a3 commit 11bd6a8
Show file tree
Hide file tree
Showing 62 changed files with 319 additions and 300 deletions.
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.7.0",
"jhipsterVersion": "8.7.1",
"jwtSecretKey": "bXktc2VjcmV0LWtleS13aGljaC1zaG91bGQtYmUtY2hhbmdlZC1pbi1wcm9kdWN0aW9uLWFuZC1iZS1iYXNlNjQtZW5jb2RlZAo=",
"languages": ["en"],
"messageBroker": false,
Expand Down
16 changes: 8 additions & 8 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.7.0, you can find documentation and help at [https://www.jhipster.tech/documentation-archive/v8.7.0](https://www.jhipster.tech/documentation-archive/v8.7.0).
This application was generated using JHipster 8.7.1, you can find documentation and help at [https://www.jhipster.tech/documentation-archive/v8.7.1](https://www.jhipster.tech/documentation-archive/v8.7.1).

## Project Structure

Expand Down Expand Up @@ -259,13 +259,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.7.0 archive]: https://www.jhipster.tech/documentation-archive/v8.7.0
[Using JHipster in development]: https://www.jhipster.tech/documentation-archive/v8.7.0/development/
[Using Docker and Docker-Compose]: https://www.jhipster.tech/documentation-archive/v8.7.0/docker-compose
[Using JHipster in production]: https://www.jhipster.tech/documentation-archive/v8.7.0/production/
[Running tests page]: https://www.jhipster.tech/documentation-archive/v8.7.0/running-tests/
[Code quality page]: https://www.jhipster.tech/documentation-archive/v8.7.0/code-quality/
[Setting up Continuous Integration]: https://www.jhipster.tech/documentation-archive/v8.7.0/setting-up-ci/
[JHipster 8.7.1 archive]: https://www.jhipster.tech/documentation-archive/v8.7.1
[Using JHipster in development]: https://www.jhipster.tech/documentation-archive/v8.7.1/development/
[Using Docker and Docker-Compose]: https://www.jhipster.tech/documentation-archive/v8.7.1/docker-compose
[Using JHipster in production]: https://www.jhipster.tech/documentation-archive/v8.7.1/production/
[Running tests page]: https://www.jhipster.tech/documentation-archive/v8.7.1/running-tests/
[Code quality page]: https://www.jhipster.tech/documentation-archive/v8.7.1/code-quality/
[Setting up Continuous Integration]: https://www.jhipster.tech/documentation-archive/v8.7.1/setting-up-ci/
[Node.js]: https://nodejs.org/
[NPM]: https://www.npmjs.com/
[Gatling]: https://gatling.io/
Expand Down
59 changes: 30 additions & 29 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@
"build": "npm run webapp:prod --",
"build-watch": "concurrently 'npm run webapp:build:dev -- --watch' npm:backend:start",
"ci:backend:test": "npm run backend:info && npm run backend:doc:test && npm run backend:nohttp:test && npm run backend:unit:test -- -P$npm_package_config_default_environment",
"ci:e2e:dev": "concurrently -k -s first -n application,e2e -c red,blue \"./mvnw -ntp\" npm:e2e:headless",
"ci:e2e:package": "npm run java:$npm_package_config_packaging:$npm_package_config_default_environment -- -Pe2e -Denforcer.skip=true",
"ci:e2e:prepare": "npm run ci:e2e:prepare:docker",
"ci:e2e:prepare:docker": "npm run services:up --if-present && docker ps -a",
"ci:e2e:run": "concurrently -k -s first \"npm run ci:e2e:server:start\" \"npm run e2e:headless\"",
"ci:e2e:run": "concurrently -k -s first -n application,e2e -c red,blue npm:ci:e2e:server:start npm:e2e:headless",
"preci:e2e:server:start": "npm run services:db:await --if-present && npm run services:others:await --if-present",
"ci:e2e:server:start": "java -jar target/e2e.$npm_package_config_packaging --spring.profiles.active=e2e,$npm_package_config_default_environment -Dlogging.level.ROOT=OFF -Dlogging.level.tech.jhipster=OFF -Dlogging.level.io.github.jhipster.sample=OFF -Dlogging.level.org.springframework=OFF -Dlogging.level.org.springframework.web=OFF -Dlogging.level.org.springframework.security=OFF --logging.level.org.springframework.web=ERROR",
"ci:e2e:teardown": "npm run ci:e2e:teardown:docker --if-present",
Expand All @@ -41,8 +42,8 @@
"e2e:cypress:audits:headless": "npm run e2e:cypress -- --config-file cypress-audits.config.js",
"e2e:cypress:headed": "npm run e2e:cypress -- --headed",
"e2e:cypress:record": "npm run e2e:cypress -- --record",
"e2e:dev": "concurrently -k -s first \"./mvnw\" \"npm run e2e\"",
"e2e:devserver": "concurrently -k -s first \"npm run backend:start\" \"npm start\" \"wait-on -t 180000 http-get://127.0.0.1:9000 && npm run e2e:headless -- -c baseUrl=http://localhost:9000\"",
"e2e:dev": "concurrently -k -s first -n application,e2e -c red,blue \"./mvnw -ntp\" npm:e2e",
"e2e:devserver": "concurrently -k -s first -n backend,frontend,e2e -c red,yellow,blue npm:backend:start npm:start \"wait-on -t 180000 http-get://127.0.0.1:9000 && npm run e2e:headless -- -c baseUrl=http://localhost:9000\"",
"pree2e:headless": "npm run ci:server:await",
"e2e:headless": "npm run e2e:cypress --",
"java:docker": "./mvnw -ntp verify -DskipTests -Pprod jib:dockerBuild",
Expand Down Expand Up @@ -84,18 +85,18 @@
"packaging": "jar"
},
"dependencies": {
"@angular/common": "18.2.1",
"@angular/compiler": "18.2.1",
"@angular/core": "18.2.1",
"@angular/forms": "18.2.1",
"@angular/localize": "18.2.1",
"@angular/platform-browser": "18.2.1",
"@angular/platform-browser-dynamic": "18.2.1",
"@angular/router": "18.2.1",
"@angular/common": "18.2.5",
"@angular/compiler": "18.2.5",
"@angular/core": "18.2.5",
"@angular/forms": "18.2.5",
"@angular/localize": "18.2.5",
"@angular/platform-browser": "18.2.5",
"@angular/platform-browser-dynamic": "18.2.5",
"@angular/router": "18.2.5",
"@fortawesome/angular-fontawesome": "0.15.0",
"@fortawesome/fontawesome-svg-core": "6.6.0",
"@fortawesome/free-solid-svg-icons": "6.6.0",
"@ng-bootstrap/ng-bootstrap": "17.0.0",
"@ng-bootstrap/ng-bootstrap": "17.0.1",
"@ngx-translate/core": "15.0.0",
"@ngx-translate/http-loader": "8.0.0",
"@popperjs/core": "2.11.8",
Expand All @@ -109,47 +110,47 @@
"devDependencies": {
"@angular-builders/custom-webpack": "18.0.0",
"@angular-builders/jest": "18.0.0",
"@angular-devkit/build-angular": "18.2.1",
"@angular/cli": "18.2.1",
"@angular/compiler-cli": "18.2.1",
"@angular/service-worker": "18.2.1",
"@types/jest": "29.5.12",
"@angular-devkit/build-angular": "18.2.5",
"@angular/cli": "18.2.5",
"@angular/compiler-cli": "18.2.5",
"@angular/service-worker": "18.2.5",
"@types/jest": "29.5.13",
"@types/node": "20.11.25",
"angular-eslint": "18.3.0",
"angular-eslint": "18.3.1",
"browser-sync": "3.0.2",
"browser-sync-webpack-plugin": "2.3.0",
"buffer": "6.0.3",
"concurrently": "8.2.2",
"concurrently": "9.0.1",
"copy-webpack-plugin": "12.0.2",
"cypress": "13.13.3",
"cypress": "13.14.2",
"cypress-audit": "1.1.0",
"eslint": "9.9.1",
"eslint": "9.10.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "3.5.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-webpack-plugin": "4.2.0",
"folder-hash": "4.0.4",
"generator-jhipster": "8.7.0",
"generator-jhipster": "8.7.1",
"globals": "15.9.0",
"husky": "9.1.5",
"husky": "9.1.6",
"jest": "29.7.0",
"jest-date-mock": "1.0.10",
"jest-environment-jsdom": "29.7.0",
"jest-junit": "16.0.0",
"jest-preset-angular": "14.2.2",
"jest-preset-angular": "14.2.4",
"jest-sonar": "0.2.16",
"lighthouse": "12.2.0",
"lint-staged": "15.2.9",
"lighthouse": "12.2.1",
"lint-staged": "15.2.10",
"merge-jsons-webpack-plugin": "2.0.1",
"prettier": "3.3.3",
"prettier-plugin-java": "2.6.4",
"prettier-plugin-packagejson": "2.5.2",
"rimraf": "5.0.8",
"swagger-ui-dist": "5.17.14",
"ts-jest": "29.2.5",
"typescript": "5.4.5",
"typescript-eslint": "8.2.0",
"wait-on": "8.0.0",
"typescript": "5.5.4",
"typescript-eslint": "8.6.0",
"wait-on": "8.0.1",
"webpack-bundle-analyzer": "4.10.2",
"webpack-merge": "6.0.1",
"webpack-notifier": "1.15.0"
Expand Down
Loading

0 comments on commit 11bd6a8

Please sign in to comment.