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

Upgrade to JHipster 7.9.4 #248

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
2 changes: 1 addition & 1 deletion .yo-rc.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"herokuDeployType": "git",
"herokuJavaVersion": "11",
"jhiPrefix": "jhi",
"jhipsterVersion": "7.9.3",
"jhipsterVersion": "7.9.4",
"jwtSecretKey": "YjAwZDU2ODI3NzNjZjk0NjVhY2UzNGViZmY0YjY1ZGY2MDI5MTc5Y2FlZWYxNzE5Yjg5ZjMxOGZhZTgwZjA5NTFkN2VmNDM3ZGMyZDNjZTViNDAwYTg4NmNlMmM2ZDkxZTMwMDk5YmUxNWNkZmE0YTNiNDlhMGNhZmM4OTk1NmQ=",
"languages": ["en", "fr"],
"lastLiquibaseTimestamp": 1667866821000,
Expand Down
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# 21-Points Health

[![Build Status][github-actions-image]][github-actions-url] <!--[![Dependency Status][daviddm-image]][daviddm-url]--> <object id="badge" data="https://snyk-widget.herokuapp.com/badge/npm/%mraible%21-points/7.0.0/badge.svg" type="image/svg+xml"></object> [![Known Vulnerabilities][snyk-image]][snyk-url]

> To track your health and improve your life. 😊

This application was generated using [JHipster 7.9.3](https://www.jhipster.tech/documentation-archive/v7.9.3), and serves as the sample application in the [JHipster Mini-Book](https://www.infoq.com/minibooks/jhipster-mini-book).
This application was generated using [JHipster 7.9.4](https://www.jhipster.tech/documentation-archive/v7.9.4), and serves as the sample application in the [JHipster Mini-Book](https://www.infoq.com/minibooks/jhipster-mini-book).

## Project Structure

Expand Down Expand Up @@ -240,13 +241,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 7.9.3 archive]: https://www.jhipster.tech/documentation-archive/v7.9.3
[using jhipster in development]: https://www.jhipster.tech/documentation-archive/v7.9.3/development/
[using docker and docker-compose]: https://www.jhipster.tech/documentation-archive/v7.9.3/docker-compose
[using jhipster in production]: https://www.jhipster.tech/documentation-archive/v7.9.3/production/
[running tests page]: https://www.jhipster.tech/documentation-archive/v7.9.3/running-tests/
[code quality page]: https://www.jhipster.tech/documentation-archive/v7.9.3/code-quality/
[setting up continuous integration]: https://www.jhipster.tech/documentation-archive/v7.9.3/setting-up-ci/
[jhipster 7.9.4 archive]: https://www.jhipster.tech/documentation-archive/v7.9.4
[using jhipster in development]: https://www.jhipster.tech/documentation-archive/v7.9.4/development/
[using docker and docker-compose]: https://www.jhipster.tech/documentation-archive/v7.9.4/docker-compose
[using jhipster in production]: https://www.jhipster.tech/documentation-archive/v7.9.4/production/
[running tests page]: https://www.jhipster.tech/documentation-archive/v7.9.4/running-tests/
[code quality page]: https://www.jhipster.tech/documentation-archive/v7.9.4/code-quality/
[setting up continuous integration]: https://www.jhipster.tech/documentation-archive/v7.9.4/setting-up-ci/
[node.js]: https://nodejs.org/
[npm]: https://www.npmjs.com/
[webpack]: https://webpack.github.io/
Expand Down
30 changes: 15 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
"eslint-plugin-cypress": "2.12.1",
"eslint-webpack-plugin": "3.2.0",
"folder-hash": "4.0.2",
"generator-jhipster": "7.9.3",
"generator-jhipster": "7.9.4",
"generator-jhipster-es-entity-reindexer": "1.0.4",
"husky": "8.0.3",
"jest": "28.1.3",
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/jhipster/health/GeneratedByJHipster.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import java.lang.annotation.Target;
import javax.annotation.Generated;

@Generated(value = "JHipster", comments = "Generated by JHipster 7.9.3")
@Generated(value = "JHipster", comments = "Generated by JHipster 7.9.4")
@Retention(RetentionPolicy.SOURCE)
@Target({ ElementType.TYPE })
public @interface GeneratedByJHipster {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public ResponseEntity<Weight> createWeight(@Valid @RequestBody Weight weight) th
/**
* {@code PUT /weights/:id} : Updates an existing weight.
*
* @param id the id of the weight to save.
* @param id the id of the weight to save.
* @param weight the weight to update.
* @return the {@link ResponseEntity} with status {@code 200 (OK)} and with body the updated weight,
* or with status {@code 400 (Bad Request)} if the weight is not valid,
Expand Down Expand Up @@ -138,7 +138,7 @@ public ResponseEntity<?> updateWeight(@PathVariable(value = "id", required = fal
/**
* {@code PATCH /weights/:id} : Partial updates given fields of an existing weight, field will ignore if it is null
*
* @param id the id of the weight to save.
* @param id the id of the weight to save.
* @param weight the weight to update.
* @return the {@link ResponseEntity} with status {@code 200 (OK)} and with body the updated weight,
* or with status {@code 400 (Bad Request)} if the weight is not valid,
Expand Down Expand Up @@ -197,7 +197,7 @@ public ResponseEntity<?> partialUpdateWeight(
/**
* {@code GET /weights} : get all the weights.
*
* @param pageable the pagination information.
* @param pageable the pagination information.
* @param eagerload flag to eager load entities from relationships (This is applicable for many-to-many).
* @return the {@link ResponseEntity} with status {@code 200 (OK)} and the list of weights in body.
*/
Expand Down Expand Up @@ -268,7 +268,7 @@ public ResponseEntity<?> deleteWeight(@PathVariable Long id) {
* {@code SEARCH /_search/weights?query=:query} : search for the weight corresponding
* to the query.
*
* @param query the query of the weight search.
* @param query the query of the weight search.
* @param pageable the pagination information.
* @return the result of the search.
*/
Expand Down
Empty file modified src/main/resources/templates/error.html
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion src/main/webapp/app/admin/logs/logs.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h2 id="logs-page-heading" jhiTranslate="logs.title" data-cy="logsPageHeading">L
<tbody>
<tr *ngFor="let logger of filteredAndOrderedLoggers">
<td>
<small>{{ logger.name | slice: 0:140 }}</small>
<small>{{ logger.name | slice : 0 : 140 }}</small>
</td>
<td>
<button
Expand Down
6 changes: 3 additions & 3 deletions src/main/webapp/app/history/history.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</div>
</div>
<div class="col-md-4">
<h3>{{ viewDate | calendarDate: view + 'ViewTitle':'en' }}</h3>
<h3>{{ viewDate | calendarDate: view + 'ViewTitle' : 'en' }}</h3>
</div>
<div class="col-md-4">
<div class="btn-group">
Expand Down Expand Up @@ -37,7 +37,7 @@ <h3>{{ viewDate | calendarDate: view + 'ViewTitle':'en' }}</h3>
<span class="cal-day-badge bg-{{ day.dayPoints[0].meta.value >= 2 ? 'success' : 'warning' }}" *ngIf="day.dayPoints?.length">
{{ day.dayPoints[0].meta.value }}
</span>
<span class="cal-day-number">{{ day.date | calendarDate: 'monthViewDayNumber':locale }}</span>
<span class="cal-day-number">{{ day.date | calendarDate: 'monthViewDayNumber' : locale }}</span>
<div
class="cal-day-notes"
*ngIf="day.dayPoints?.length"
Expand All @@ -56,7 +56,7 @@ <h3>{{ viewDate | calendarDate: view + 'ViewTitle':'en' }}</h3>
[ngClass]="event?.cssClass"
(mouseenter)="highlightDay.emit({ event: event })"
(mouseleave)="unhighlightDay.emit({ event: event })"
[mwlCalendarTooltip]="event.title | calendarEventTitle: 'monthTooltip':event"
[mwlCalendarTooltip]="event.title | calendarEventTitle: 'monthTooltip' : event"
[tooltipPlacement]="tooltipPlacement"
[tooltipEvent]="event"
[tooltipTemplate]="tooltipTemplate"
Expand Down
Empty file modified src/main/webapp/i18n/en/configuration.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/en/error.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/en/home.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/en/login.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/en/logs.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/en/metrics.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/en/password.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/en/register.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/en/sessions.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/en/settings.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/en/user-management.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/fr/configuration.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/fr/error.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/fr/home.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/fr/login.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/fr/logs.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/fr/metrics.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/fr/password.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/fr/register.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/fr/sessions.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/fr/settings.json
100644 → 100755
Empty file.
Empty file modified src/main/webapp/i18n/fr/user-management.json
100644 → 100755
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
import org.springframework.http.MediaType;
import org.springframework.security.test.context.support.WithMockUser;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.setup.MockMvcBuilders;
import org.springframework.transaction.annotation.Transactional;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
import org.springframework.http.MediaType;
import org.springframework.security.test.context.support.WithMockUser;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.setup.MockMvcBuilders;
import org.springframework.transaction.annotation.Transactional;

/**
Expand Down
Empty file modified src/test/javascript/cypress/fixtures/integration-test.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading