Skip to content

Commit c6e839f

Browse files
committed
Merge branch 'release/0.21.0'
2 parents a3e6d06 + f565d32 commit c6e839f

File tree

81 files changed

+175
-170
lines changed

Some content is hidden

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

81 files changed

+175
-170
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ jobs:
3939

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

4444
# Initializes the CodeQL tools for scanning.
4545
- name: Initialize CodeQL
46-
uses: github/codeql-action/init@v1
46+
uses: github/codeql-action/init@v2
4747
with:
4848
languages: ${{ matrix.language }}
4949
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -54,7 +54,7 @@ jobs:
5454
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5555
# If this step fails, then you should remove it and run the build manually (see below)
5656
- name: Autobuild
57-
uses: github/codeql-action/autobuild@v1
57+
uses: github/codeql-action/autobuild@v2
5858

5959
# ℹ️ Command-line programs to run using the OS shell.
6060
# 📚 https://git.io/JvXDl
@@ -68,4 +68,4 @@ jobs:
6868
# make release
6969

7070
- name: Perform CodeQL Analysis
71-
uses: github/codeql-action/analyze@v1
71+
uses: github/codeql-action/analyze@v2

.github/workflows/graalvm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:
15-
version: ['22.3.1']
15+
version: ['23.0.1']
1616
os: [macos-latest, windows-latest, ubuntu-latest]
1717
steps:
1818
- name: Checkout

.github/workflows/java.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: [11, 17]
15+
version: [17]
1616
os: [macos-latest, windows-latest, ubuntu-latest]
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
- name: Cache JVM
2121
id: cache-java
22-
uses: actions/cache@v3
22+
uses: actions/cache@v4
2323
with:
2424
path: |
2525
${{ runner.temp }}/java_package.tar.gz
@@ -28,7 +28,7 @@ jobs:
2828
restore-keys: |
2929
${{ runner.os }}-java-
3030
- name: Setup Java
31-
uses: actions/setup-java@v2
31+
uses: actions/setup-java@v3
3232
with:
3333
distribution: 'temurin'
3434
java-version: ${{ matrix.version }}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ 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.21.0] - 2023-12-18
9+
* Bumped Graal to 23.0.2
10+
* Bumped vertx to 4.5.1
11+
* Bumped Graal to 23.0.1
12+
813
## [0.20.0] - 2023-06-16
914
* Bumped vertx to 4.4.3
1015
* Bumped Graal to 22.3.2 LTS

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.20.0</version>
7+
<version>0.21.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.20.0</version>
14+
<version>0.21.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.20.0</version>
7+
<version>0.21.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>
1212

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

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

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.20.0</version>
11+
<version>0.21.0</version>
1212
<relativePath>../../pom.xml</relativePath>
1313
</parent>
1414

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

1818
<packaging>jar</packaging>
1919

generator/io.vertx/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</groupId>
1010
<artifactId>es4x-parent</artifactId>
11-
<version>0.20.0</version>
11+
<version>0.21.0</version>
1212
<relativePath>../../pom.xml</relativePath>
1313
</parent>
1414

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

1818
<dependencies>
1919
<dependency>

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.20.0</version>
9+
<version>0.21.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.20.0</version>
16+
<version>0.21.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.20.0</version>
9+
<version>0.21.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.20.0</version>
16+
<version>0.21.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.20.0</version>
9+
<version>0.21.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.20.0</version>
16+
<version>0.21.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.20.0</version>
9+
<version>0.21.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.20.0</version>
16+
<version>0.21.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.20.0</version>
9+
<version>0.21.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.20.0</version>
16+
<version>0.21.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.20.0</version>
9+
<version>0.21.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.20.0</version>
16+
<version>0.21.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.20.0</version>
9+
<version>0.21.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.20.0</version>
16+
<version>0.21.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.20.0</version>
9+
<version>0.21.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.20.0</version>
16+
<version>0.21.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.20.0</version>
9+
<version>0.21.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.20.0</version>
16+
<version>0.21.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.20.0</version>
9+
<version>0.21.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.20.0</version>
16+
<version>0.21.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.20.0</version>
9+
<version>0.21.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.20.0</version>
16+
<version>0.21.0</version>
1717

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

generator/io.vertx/vertx-auth-shiro/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.20.0</version>
9+
<version>0.21.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>vertx-auth-shiro</artifactId>
16-
<version>0.20.0</version>
16+
<version>0.21.0</version>
1717

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

generator/io.vertx/vertx-auth-sql-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.20.0</version>
9+
<version>0.21.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>vertx-auth-sql-client</artifactId>
16-
<version>0.20.0</version>
16+
<version>0.21.0</version>
1717

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

generator/io.vertx/vertx-auth-webauthn/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.20.0</version>
9+
<version>0.21.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>vertx-auth-webauthn</artifactId>
16-
<version>0.20.0</version>
16+
<version>0.21.0</version>
1717

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

generator/io.vertx/vertx-bridge-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.20.0</version>
9+
<version>0.21.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

1313
<modelVersion>4.0.0</modelVersion>
1414

1515
<artifactId>vertx-bridge-common</artifactId>
16-
<version>0.20.0</version>
16+
<version>0.21.0</version>
1717

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

0 commit comments

Comments
 (0)