Skip to content

Commit

Permalink
Merge pull request #11557 from pascalgrimaud/upgrade-spring-boot-3.4.0
Browse files Browse the repository at this point in the history
Upgrade to Spring Boot 3.4.0 (generator)
  • Loading branch information
pascalgrimaud authored Dec 9, 2024
2 parents 8408066 + 1bbe119 commit f2b12ac
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/publish-native-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@ name: Build and publish native (GraalVM) images
on:
push:
branches:
- main
tags:
- 'v*.*.*'
pull_request:
branches:
- main
- not-exist-branch
# Disabled as related to https://github.com/spring-projects/spring-framework/issues/33936
# Waiting next release of Spring Boot
#on:
# push:
# branches:
# - main
# tags:
# - 'v*.*.*'
# pull_request:
# branches:
# - main

jobs:
build_native_docker_image:
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ docker run -p 7471:7471 --rm docker.io/library/jhlite:<VERSION>

## Executable with Native Build Tools

**IMPORTANT NOTE: this section is currently broken since JHLite v1.23.0. See this [issue](https://github.com/jhipster/jhipster-lite/issues/11558).**

Use this option if you want to explore more options such as running your tests in a native image.
The GraalVM native-image compiler should be installed and configured on your machine.

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.5</version>
<version>3.4.0</version>
</parent>

<groupId>tech.jhipster.lite</groupId>
Expand Down Expand Up @@ -66,7 +66,7 @@
<jacoco.version>0.8.12</jacoco.version>
<jgit.version>7.1.0.202411261347-r</jgit.version>
<archunit-junit5.version>1.3.0</archunit-junit5.version>
<springdoc-openapi.version>2.6.0</springdoc-openapi.version>
<springdoc-openapi.version>2.7.0</springdoc-openapi.version>
<properties-maven-plugin.version>1.2.1</properties-maven-plugin.version>
<sonar-maven-plugin.version>5.0.0.4389</sonar-maven-plugin.version>
<apache-commons-io.version>2.18.0</apache-commons-io.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ void shouldNotBuildWithWhitespace() {

@Test
void shouldNotBuildWithTooLongTag() {
var stringTooLong = RandomStringUtils.randomAlphabetic(16);
var stringTooLong = RandomStringUtils.secure().nextNumeric(16);
assertThatThrownBy(() -> new JHipsterModuleTag(stringTooLong)).isInstanceOf(StringTooLongException.class);
}

Expand Down

0 comments on commit f2b12ac

Please sign in to comment.