Skip to content

Commit a3e6d06

Browse files
committed
Merge branch 'release/0.20.0'
2 parents 7ab0d39 + 1d57f6a commit a3e6d06

File tree

85 files changed

+180
-181
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+180
-181
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v2
42+
uses: actions/checkout@v3
4343

4444
# Initializes the CodeQL tools for scanning.
4545
- name: Initialize CodeQL

.github/workflows/gh-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
deploy:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313

1414
- name: Setup Node.js 12.x
1515
uses: actions/setup-node@v1
@@ -22,7 +22,7 @@ jobs:
2222
distribution: 'adopt'
2323
java-version: "11"
2424

25-
- uses: actions/cache@v2
25+
- uses: actions/cache@v3
2626
with:
2727
path: ~/.m2/repository
2828
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/graalvm-dev.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
strategy:
1414
matrix:
1515
version: [dev]
16-
os: [macos-latest, windows-latest, ubuntu-latest]
16+
os: [ubuntu-latest]
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020
- name: Cache JVM
2121
id: cache-java
22-
uses: actions/cache@v2
22+
uses: actions/cache@v3
2323
with:
2424
path: |
2525
${{ runner.temp }}/java_package.tar.gz
@@ -31,11 +31,7 @@ jobs:
3131
uses: graalvm/setup-graalvm@v1
3232
with:
3333
version: ${{ matrix.version }}
34-
java-version: '11'
34+
java-version: '17'
3535
components: 'js'
36-
- name: Run tests (UNIX)
36+
- name: Run tests
3737
run: ./mvnw clean verify
38-
if: runner.os != 'Windows'
39-
- name: Run tests (Windows)
40-
run: .\mvnw.cmd clean verify
41-
if: runner.os == 'Windows'

.github/workflows/graalvm.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:
15-
version: ['22.2.0']
15+
version: ['22.3.1']
1616
os: [macos-latest, windows-latest, ubuntu-latest]
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020
- name: Cache JVM
2121
id: cache-java
22-
uses: actions/cache@v2
22+
uses: actions/cache@v3
2323
with:
2424
path: |
2525
${{ runner.temp }}/java_package.tar.gz
@@ -31,7 +31,7 @@ jobs:
3131
uses: graalvm/setup-graalvm@v1
3232
with:
3333
version: ${{ matrix.version }}
34-
java-version: '11'
34+
java-version: '17'
3535
components: 'js'
3636
- name: Run tests (UNIX)
3737
run: ./mvnw clean verify

.github/workflows/java.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
os: [macos-latest, windows-latest, ubuntu-latest]
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020
- name: Cache JVM
2121
id: cache-java
22-
uses: actions/cache@v2
22+
uses: actions/cache@v3
2323
with:
2424
path: |
2525
${{ runner.temp }}/java_package.tar.gz

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [0.20.0] - 2023-06-16
9+
* Bumped vertx to 4.4.3
10+
* Bumped Graal to 22.3.2 LTS
11+
812
## [0.19.2] - 2023-02-24
913
* Bumped Graal to 22.3.1 LTS
1014
* Bumped vertx to 4.3.8
1115

12-
1316
## [0.19.1] - 2022-10-27
1417
* Bumped Graal to 22.3.0 LTS
1518
* Bumped vertx to 4.3.4

codegen/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
<parent>
55
<groupId>io.reactiverse</groupId>
66
<artifactId>es4x-parent</artifactId>
7-
<version>0.19.2</version>
7+
<version>0.20.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>
1212

1313
<artifactId>es4x-codegen</artifactId>
14-
<version>0.19.2</version>
14+
<version>0.20.0</version>
1515

1616
<dependencies>
1717
<dependency>

es4x/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
<parent>
55
<groupId>io.reactiverse</groupId>
66
<artifactId>es4x-parent</artifactId>
7-
<version>0.19.2</version>
7+
<version>0.20.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>
1212

1313
<artifactId>es4x</artifactId>
14-
<version>0.19.2</version>
14+
<version>0.20.0</version>
1515

1616
<properties>
1717
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

generator/io.reactiverse/elasticsearch-client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
<parent>
99
<groupId>io.reactiverse.es4x</groupId>
1010
<artifactId>es4x-generator</artifactId>
11-
<version>0.19.2</version>
11+
<version>0.20.0</version>
1212
<relativePath>../../pom.xml</relativePath>
1313
</parent>
1414

1515
<artifactId>elasticsearch-client</artifactId>
16-
<version>0.19.2</version>
16+
<version>0.20.0</version>
1717

1818
<packaging>jar</packaging>
1919

generator/io.reactiverse/reactiverse-contextual-logging/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
<parent>
99
<groupId>io.reactiverse.es4x</groupId>
1010
<artifactId>es4x-generator</artifactId>
11-
<version>0.19.2</version>
11+
<version>0.20.0</version>
1212
<relativePath>../../pom.xml</relativePath>
1313
</parent>
1414

1515
<artifactId>reactiverse-contextual-logging</artifactId>
16-
<version>0.19.2</version>
16+
<version>0.20.0</version>
1717

1818
<packaging>jar</packaging>
1919

generator/io.vertx/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
<parent>
99
<groupId>io.reactiverse</groupId>
1010
<artifactId>es4x-parent</artifactId>
11-
<version>0.19.2</version>
11+
<version>0.20.0</version>
1212
<relativePath>../../pom.xml</relativePath>
1313
</parent>
1414

1515
<artifactId>es4x-vertx-stack</artifactId>
16-
<version>0.19.2</version>
16+
<version>0.20.0</version>
1717

1818
<dependencies>
1919
<dependency>
@@ -95,7 +95,7 @@
9595
<artifactItem><groupId>io.reactiverse.es4x</groupId><artifactId>vertx-tcp-eventbus-bridge</artifactId><version>${project.version}</version></artifactItem>
9696
<artifactItem><groupId>io.reactiverse.es4x</groupId><artifactId>vertx-unit</artifactId><version>${project.version}</version></artifactItem>
9797
<artifactItem><groupId>io.reactiverse.es4x</groupId><artifactId>vertx-uri-template</artifactId><version>${project.version}</version></artifactItem>
98-
<artifactItem><groupId>io.reactiverse.es4x</groupId><artifactId>vertx-web-api-contract</artifactId><version>${project.version}</version></artifactItem>
98+
<!-- <artifactItem><groupId>io.reactiverse.es4x</groupId><artifactId>vertx-web-api-contract</artifactId><version>${project.version}</version></artifactItem>-->
9999
<artifactItem><groupId>io.reactiverse.es4x</groupId><artifactId>vertx-web-api-service</artifactId><version>${project.version}</version></artifactItem>
100100
<artifactItem><groupId>io.reactiverse.es4x</groupId><artifactId>vertx-web</artifactId><version>${project.version}</version></artifactItem>
101101
<artifactItem><groupId>io.reactiverse.es4x</groupId><artifactId>vertx-web-client</artifactId><version>${project.version}</version></artifactItem>

generator/io.vertx/vertx-amqp-client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<parent>
77
<groupId>io.reactiverse.es4x</groupId>
88
<artifactId>es4x-generator</artifactId>
9-
<version>0.19.2</version>
9+
<version>0.20.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>vertx-amqp-client</artifactId>
16-
<version>0.19.2</version>
16+
<version>0.20.0</version>
1717

1818
<properties>
1919
<maven.groupId>io.vertx</maven.groupId>

generator/io.vertx/vertx-auth-common/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<parent>
77
<groupId>io.reactiverse.es4x</groupId>
88
<artifactId>es4x-generator</artifactId>
9-
<version>0.19.2</version>
9+
<version>0.20.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>vertx-auth-common</artifactId>
16-
<version>0.19.2</version>
16+
<version>0.20.0</version>
1717

1818
<properties>
1919
<maven.groupId>io.vertx</maven.groupId>

generator/io.vertx/vertx-auth-htdigest/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<parent>
77
<groupId>io.reactiverse.es4x</groupId>
88
<artifactId>es4x-generator</artifactId>
9-
<version>0.19.2</version>
9+
<version>0.20.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>vertx-auth-htdigest</artifactId>
16-
<version>0.19.2</version>
16+
<version>0.20.0</version>
1717

1818
<properties>
1919
<maven.groupId>io.vertx</maven.groupId>

generator/io.vertx/vertx-auth-htpasswd/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<parent>
77
<groupId>io.reactiverse.es4x</groupId>
88
<artifactId>es4x-generator</artifactId>
9-
<version>0.19.2</version>
9+
<version>0.20.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>vertx-auth-htpasswd</artifactId>
16-
<version>0.19.2</version>
16+
<version>0.20.0</version>
1717

1818
<properties>
1919
<maven.groupId>io.vertx</maven.groupId>

generator/io.vertx/vertx-auth-jdbc/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<parent>
77
<groupId>io.reactiverse.es4x</groupId>
88
<artifactId>es4x-generator</artifactId>
9-
<version>0.19.2</version>
9+
<version>0.20.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>vertx-auth-jdbc</artifactId>
16-
<version>0.19.2</version>
16+
<version>0.20.0</version>
1717

1818
<properties>
1919
<maven.groupId>io.vertx</maven.groupId>

generator/io.vertx/vertx-auth-jwt/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<parent>
77
<groupId>io.reactiverse.es4x</groupId>
88
<artifactId>es4x-generator</artifactId>
9-
<version>0.19.2</version>
9+
<version>0.20.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>vertx-auth-jwt</artifactId>
16-
<version>0.19.2</version>
16+
<version>0.20.0</version>
1717

1818
<properties>
1919
<maven.groupId>io.vertx</maven.groupId>

generator/io.vertx/vertx-auth-ldap/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<parent>
77
<groupId>io.reactiverse.es4x</groupId>
88
<artifactId>es4x-generator</artifactId>
9-
<version>0.19.2</version>
9+
<version>0.20.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>vertx-auth-ldap</artifactId>
16-
<version>0.19.2</version>
16+
<version>0.20.0</version>
1717

1818
<properties>
1919
<maven.groupId>io.vertx</maven.groupId>

generator/io.vertx/vertx-auth-mongo/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<parent>
77
<groupId>io.reactiverse.es4x</groupId>
88
<artifactId>es4x-generator</artifactId>
9-
<version>0.19.2</version>
9+
<version>0.20.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>vertx-auth-mongo</artifactId>
16-
<version>0.19.2</version>
16+
<version>0.20.0</version>
1717

1818
<properties>
1919
<maven.groupId>io.vertx</maven.groupId>

generator/io.vertx/vertx-auth-oauth2/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<parent>
77
<groupId>io.reactiverse.es4x</groupId>
88
<artifactId>es4x-generator</artifactId>
9-
<version>0.19.2</version>
9+
<version>0.20.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>vertx-auth-oauth2</artifactId>
16-
<version>0.19.2</version>
16+
<version>0.20.0</version>
1717

1818
<properties>
1919
<maven.groupId>io.vertx</maven.groupId>

generator/io.vertx/vertx-auth-otp/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<parent>
77
<groupId>io.reactiverse.es4x</groupId>
88
<artifactId>es4x-generator</artifactId>
9-
<version>0.19.2</version>
9+
<version>0.20.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>vertx-auth-otp</artifactId>
16-
<version>0.19.2</version>
16+
<version>0.20.0</version>
1717

1818
<properties>
1919
<maven.groupId>io.vertx</maven.groupId>

generator/io.vertx/vertx-auth-properties/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<parent>
77
<groupId>io.reactiverse.es4x</groupId>
88
<artifactId>es4x-generator</artifactId>
9-
<version>0.19.2</version>
9+
<version>0.20.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>vertx-auth-properties</artifactId>
16-
<version>0.19.2</version>
16+
<version>0.20.0</version>
1717

1818
<properties>
1919
<maven.groupId>io.vertx</maven.groupId>

0 commit comments

Comments
 (0)