Skip to content

Commit 5a1c064

Browse files
committed
Merge branch '3.x' into 4.x
2 parents 5c1377b + 524a052 commit 5a1c064

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

docs/asciidoc/routing.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ interface Filter {
467467
----
468468
{
469469
/** Kotlin uses implicit variables: `ctx` and `next` */
470-
filter {
470+
use {
471471
val start = System.currentTimeMillis() // <1>
472472
473473
val response = next.apply(ctx) // <2>
@@ -1014,14 +1014,14 @@ A `scoped filter` looks like:
10141014
----
10151015
{
10161016
// Increment +1
1017-
filter {
1017+
use {
10181018
val n = next.apply(ctx) as Int
10191019
return 1 + n
10201020
}
10211021
10221022
routes { // <1>
10231023
// Multiply by 2
1024-
filter {
1024+
use {
10251025
val n = next.apply(ctx) as Int
10261026
2 * n
10271027
}

jooby/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171

7272
<dependency>
7373
<groupId>com.squareup.okhttp3</groupId>
74-
<artifactId>okhttp</artifactId>
74+
<artifactId>okhttp-jvm</artifactId>
7575
<scope>test</scope>
7676
</dependency>
7777

modules/jooby-avaje-inject/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565

6666
<dependency>
6767
<groupId>com.squareup.okhttp3</groupId>
68-
<artifactId>okhttp</artifactId>
68+
<artifactId>okhttp-jvm</artifactId>
6969
<scope>test</scope>
7070
</dependency>
7171

modules/jooby-awssdk-v2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>jooby-awssdk-v2</name>
1313

1414
<properties>
15-
<aws.java.sdk.version>2.31.73</aws.java.sdk.version>
15+
<aws.java.sdk.version>2.31.77</aws.java.sdk.version>
1616
</properties>
1717

1818
<dependencyManagement>

modules/jooby-swagger-ui/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/jooby-swagger-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"license": "ASF",
66
"dependencies": {
7-
"swagger-ui-dist": "^5.25.3"
7+
"swagger-ui-dist": "^5.26.0"
88
},
99
"scarfSettings": {
1010
"enabled": false

modules/jooby-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757

5858
<dependency>
5959
<groupId>com.squareup.okhttp3</groupId>
60-
<artifactId>okhttp</artifactId>
60+
<artifactId>okhttp-jvm</artifactId>
6161
<scope>test</scope>
6262
</dependency>
6363

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106

107107
<!-- Server -->
108108
<undertow.version>2.3.18.Final</undertow.version>
109-
<jetty.version>12.0.22</jetty.version>
109+
<jetty.version>12.0.23</jetty.version>
110110
<netty.version>4.2.2.Final</netty.version>
111111

112112
<!--OpenAPI-->
@@ -129,7 +129,7 @@
129129
<spotbugs-annotations.version>4.9.3</spotbugs-annotations.version>
130130

131131
<!-- Misc -->
132-
<okhttp.version>4.12.0</okhttp.version>
132+
<okhttp.version>5.0.0</okhttp.version>
133133
<jsonwebtoken.version>0.12.6</jsonwebtoken.version>
134134
<pac4j.version>6.1.3</pac4j.version>
135135
<quartz.version>2.5.0</quartz.version>
@@ -148,7 +148,7 @@
148148

149149
<!-- Test dependencies -->
150150
<jacoco.version>0.8.13</jacoco.version>
151-
<junit.version>5.13.2</junit.version>
151+
<junit.version>5.13.3</junit.version>
152152
<rest-assured.version>5.5.5</rest-assured.version>
153153
<assertj-core.version>3.27.3</assertj-core.version>
154154
<mockito.version>5.18.0</mockito.version>
@@ -171,8 +171,8 @@
171171
<maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version>
172172
<maven-core.version>3.9.10</maven-core.version>
173173
<maven-deploy-plugin.version>3.1.4</maven-deploy-plugin.version>
174-
<maven-enforcer-plugin.version>3.5.0</maven-enforcer-plugin.version>
175-
<maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version>
174+
<maven-enforcer-plugin.version>3.6.0</maven-enforcer-plugin.version>
175+
<maven-gpg-plugin.version>3.2.8</maven-gpg-plugin.version>
176176
<maven-jar-plugin.version>3.4.2</maven-jar-plugin.version>
177177
<maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version>
178178
<archetype-packaging.version>3.2.1</archetype-packaging.version>
@@ -929,7 +929,7 @@
929929
<!-- OKHttp -->
930930
<dependency>
931931
<groupId>com.squareup.okhttp3</groupId>
932-
<artifactId>okhttp</artifactId>
932+
<artifactId>okhttp-jvm</artifactId>
933933
<version>${okhttp.version}</version>
934934
</dependency>
935935

tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@
198198

199199
<dependency>
200200
<groupId>com.squareup.okhttp3</groupId>
201-
<artifactId>okhttp</artifactId>
201+
<artifactId>okhttp-jvm</artifactId>
202202
<scope>test</scope>
203203
</dependency>
204204

0 commit comments

Comments
 (0)