Skip to content

Commit

Permalink
Bump quarkus.version from 3.7.1 to 3.8.0 (#355)
Browse files Browse the repository at this point in the history
* Bump quarkus.version from 3.7.1 to 3.8.0

Bumps `quarkus.version` from 3.7.1 to 3.8.0.

Updates `io.quarkus:quarkus-bom` from 3.7.1 to 3.8.0
- [Release notes](https://github.com/quarkusio/quarkus/releases)
- [Commits](quarkusio/quarkus@3.7.1...3.8.0)

Updates `io.quarkus:quarkus-extension-processor` from 3.7.1 to 3.8.0

Updates `io.quarkus:quarkus-extension-maven-plugin` from 3.7.1 to 3.8.0
- [Release notes](https://github.com/quarkusio/quarkus/releases)
- [Commits](quarkusio/quarkus@3.7.1...3.8.0)

---
updated-dependencies:
- dependency-name: io.quarkus:quarkus-bom
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.quarkus:quarkus-extension-processor
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.quarkus:quarkus-extension-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update README.md

* 3.7 regression profile

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Łukasz Witkowski <38762002+lwitkowski@users.noreply.github.com>
Co-authored-by: Łukasz Witkowski <contact@lukaszwitkowski.com>
  • Loading branch information
3 people committed Feb 22, 2024
1 parent 80e2529 commit 644cefd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven-regression.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
quarkus-version: [ "3.0", "3.1", "3.2", "3.3", "3.4", "3.5", "3.6" ]
quarkus-version: [ "3.0", "3.1", "3.2", "3.3", "3.4", "3.5", "3.6", "3.7" ]
json-provider: [ "jsonb-classic", "jackson-classic" ]

steps:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ so-called "HTTP APIs" are usually not.
### Quarkus 3.X / Java 17+
Make sure JDK 17 is in your PATH, then run:
```shell
mvn io.quarkus:quarkus-maven-plugin:3.7.1:create \
mvn io.quarkus:quarkus-maven-plugin:3.8.0:create \
-DprojectGroupId=problem \
-DprojectArtifactId=quarkus-resteasy-problem-playground \
-DclassName="problem.HelloResource" \
-Dpath="/hello" \
-Dextensions="resteasy,resteasy-jackson"
cd quarkus-resteasy-problem-playground
./mvnw quarkus:add-extension -Dextensions="com.tietoevry.quarkus:quarkus-resteasy-problem:3.1.0"
./mvnw quarkus:add-extension -Dextensions="com.tietoevry.quarkus:quarkus-resteasy-problem:3.8.0"
```
Or add the following dependency to `pom.xml` in existing project:
```xml
Expand Down
7 changes: 7 additions & 0 deletions integration-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,13 @@
</properties>
</profile>

<profile>
<id>quarkus-3.7</id>
<properties>
<quarkus.version>3.7.4</quarkus.version>
</properties>
</profile>

<profile>
<id>native</id>
<properties>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<!-- runtime/test dependencies -->
<quarkus.version>3.7.1</quarkus.version>
<quarkus.version>3.8.0</quarkus.version>
<zalando-problem.version>0.27.1</zalando-problem.version>
<assertj.version>3.25.3</assertj.version>
<jmh.version>1.37</jmh.version>
Expand Down

0 comments on commit 644cefd

Please sign in to comment.