Skip to content

Commit 800e885

Browse files
authored
Merge branch 'master' into doc
2 parents 2e53fa9 + 118eaa0 commit 800e885

File tree

31 files changed

+79
-81
lines changed

31 files changed

+79
-81
lines changed

aws-cognito/http-client-authtoken/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@
1717
<dependency>
1818
<groupId>io.avaje</groupId>
1919
<artifactId>avaje-http-client</artifactId>
20-
<version>3.5-RC3</version>
20+
<version>3.5-RC4</version>
2121
</dependency>
2222

2323
<dependency>
2424
<groupId>io.avaje</groupId>
2525
<artifactId>avaje-json-core</artifactId>
26-
<version>3.6</version>
26+
<version>3.7</version>
2727
</dependency>
2828

2929
<!-- test dependencies -->
3030
<dependency>
3131
<groupId>io.avaje</groupId>
3232
<artifactId>avaje-json-node</artifactId>
33-
<version>3.6</version>
33+
<version>3.7</version>
3434
<scope>test</scope>
3535
</dependency>
3636

htmx-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.avaje</groupId>
88
<artifactId>avaje-http-parent</artifactId>
9-
<version>3.5-RC3</version>
9+
<version>3.5-RC4</version>
1010
</parent>
1111

1212
<artifactId>avaje-htmx-api</artifactId>

htmx-nima-jstache/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.avaje</groupId>
88
<artifactId>avaje-http-parent</artifactId>
9-
<version>3.5-RC3</version>
9+
<version>3.5-RC4</version>
1010
</parent>
1111

1212
<artifactId>avaje-htmx-nima-jstache</artifactId>

htmx-nima/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.avaje</groupId>
88
<artifactId>avaje-http-parent</artifactId>
9-
<version>3.5-RC3</version>
9+
<version>3.5-RC4</version>
1010
</parent>
1111

1212
<artifactId>avaje-htmx-nima</artifactId>
@@ -22,12 +22,12 @@
2222
<dependency>
2323
<groupId>io.avaje</groupId>
2424
<artifactId>avaje-htmx-api</artifactId>
25-
<version>3.5-RC3</version>
25+
<version>3.5-RC4</version>
2626
</dependency>
2727
<dependency>
2828
<groupId>io.helidon.webserver</groupId>
2929
<artifactId>helidon-webserver</artifactId>
30-
<version>4.2.6</version>
30+
<version>4.2.7</version>
3131
</dependency>
3232
</dependencies>
3333
</project>

http-api-javalin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.avaje</groupId>
66
<artifactId>avaje-http-parent</artifactId>
7-
<version>3.5-RC3</version>
7+
<version>3.5-RC4</version>
88
<relativePath>..</relativePath>
99
</parent>
1010

http-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.avaje</groupId>
66
<artifactId>avaje-http-parent</artifactId>
7-
<version>3.5-RC3</version>
7+
<version>3.5-RC4</version>
88
<relativePath>..</relativePath>
99
</parent>
1010

http-api/src/main/java/io/avaje/http/api/SupressLogging.java renamed to http-api/src/main/java/io/avaje/http/api/SuppressLogging.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717
* interface CustomerApi {
1818
* ...
1919
* @Get("/{id}")
20-
* @SupressLogging
20+
* @SuppressLogging
2121
* Customer getById(long id);
2222
*
2323
* @Post
24-
* @SupressLogging
24+
* @SuppressLogging
2525
* long save(Customer customer);
2626
* }
2727
*
2828
* }</pre>
2929
*/
3030
@Retention(SOURCE)
3131
@Target({ElementType.TYPE, ElementType.METHOD})
32-
public @interface SupressLogging {}
32+
public @interface SuppressLogging {}

http-client-gson-adapter/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.avaje</groupId>
66
<artifactId>avaje-http-parent</artifactId>
7-
<version>3.5-RC3</version>
7+
<version>3.5-RC4</version>
88
</parent>
99

1010
<artifactId>avaje-http-client-gson</artifactId>
@@ -15,13 +15,13 @@
1515
<dependency>
1616
<groupId>com.google.code.gson</groupId>
1717
<artifactId>gson</artifactId>
18-
<version>2.13.1</version>
18+
<version>2.13.2</version>
1919
</dependency>
2020

2121
<dependency>
2222
<groupId>io.avaje</groupId>
2323
<artifactId>avaje-http-client</artifactId>
24-
<version>3.5-RC3</version>
24+
<version>3.5-RC4</version>
2525
<scope>provided</scope>
2626
</dependency>
2727

http-client-moshi-adapter/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>io.avaje</groupId>
55
<artifactId>avaje-http-parent</artifactId>
6-
<version>3.5-RC3</version>
6+
<version>3.5-RC4</version>
77
</parent>
88
<artifactId>avaje-http-client-moshi</artifactId>
99
<name>avaje-http-client-moshi</name>
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>io.avaje</groupId>
2222
<artifactId>avaje-http-client</artifactId>
23-
<version>3.5-RC3</version>
23+
<version>3.5-RC4</version>
2424
<scope>provided</scope>
2525
</dependency>
2626

http-client/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.avaje</groupId>
66
<artifactId>avaje-http-parent</artifactId>
7-
<version>3.5-RC3</version>
7+
<version>3.5-RC4</version>
88
</parent>
99

1010
<artifactId>avaje-http-client</artifactId>
@@ -30,21 +30,21 @@
3030
<dependency>
3131
<groupId>com.fasterxml.jackson.core</groupId>
3232
<artifactId>jackson-databind</artifactId>
33-
<version>2.19.2</version>
33+
<version>2.20.0</version>
3434
<optional>true</optional>
3535
</dependency>
3636

3737
<dependency>
3838
<groupId>io.avaje</groupId>
3939
<artifactId>avaje-jsonb</artifactId>
40-
<version>3.6</version>
40+
<version>3.7</version>
4141
<optional>true</optional>
4242
</dependency>
4343

4444
<dependency>
4545
<groupId>io.avaje</groupId>
4646
<artifactId>avaje-json-node</artifactId>
47-
<version>3.6</version>
47+
<version>3.7</version>
4848
<scope>test</scope>
4949
</dependency>
5050

@@ -112,7 +112,7 @@
112112
<plugin>
113113
<groupId>org.apache.maven.plugins</groupId>
114114
<artifactId>maven-compiler-plugin</artifactId>
115-
<version>3.14.0</version>
115+
<version>3.14.1</version>
116116
<executions>
117117
<execution>
118118
<id>default-testCompile</id>

0 commit comments

Comments
 (0)