Skip to content

Commit 91f2ec7

Browse files
renovate[bot]sdelamomicronaut-buildwetted
authored
fix(deps): update dependency io.micronaut:micronaut-core-bom to v4.3.10 (#2077)
* ci: projectVersion=4.5.0-SNAPSHOT [ci skip] * fix(deps): update aws-java-sdk-v2 monorepo to v2.24.10 (#2046) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * fix(deps): update dependency io.micronaut.security:micronaut-security-bom to v4.6.6 (#2063) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * fix(deps): update aws-java-sdk monorepo to v1.12.668 (#2066) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Update common files (#2064) * fix(deps): update dependency io.micronaut:micronaut-core-bom to v4.3.10 * build: core to 4.3.11 * build: add jackson.databind dependency for tck tests * disable JsonErrorTest and VndErrorTest * disable JsonErrorTest and VndErrorTest * Update gradle/libs.versions.toml * Update gradle/libs.versions.toml --------- Co-authored-by: Sergio del Amo <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: micronaut-build <[email protected]> Co-authored-by: Dean Wette <[email protected]>
1 parent 7eb40c0 commit 91f2ec7

File tree

7 files changed

+23
-16
lines changed

7 files changed

+23
-16
lines changed

.github/workflows/gradle.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
fetch-depth: 0
4646

4747
- name: "🔧 Setup GraalVM CE"
48-
uses: graalvm/[email protected].8
48+
uses: graalvm/[email protected].7
4949
with:
5050
distribution: 'graalvm'
5151
java-version: ${{ matrix.java }}

buildSrc/src/main/groovy/io.micronaut.build.internal.aws.http-server-tck-module.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ dependencies {
1212
testImplementation(mn.micronaut.http.client)
1313
testImplementation(mn.micronaut.http.server.tck)
1414
testImplementation(libs.junit.platform.engine)
15+
testImplementation(mn.micronaut.jackson.databind)
1516
testImplementation(libs.junit.jupiter.engine)
1617
testRuntimeOnly(mnLogging.logback.classic)
1718

gradle/libs.versions.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
micronaut = "4.3.9"
2+
micronaut = "4.3.11"
33
micronaut-docs = "2.0.0"
44
micronaut-test = "4.2.0"
55
groovy = "4.0.15"
@@ -15,7 +15,7 @@ micronaut-groovy = "4.2.0"
1515
micronaut-logging = "1.2.2"
1616
micronaut-mongodb = "5.2.0"
1717
micronaut-reactor = "3.2.1"
18-
micronaut-security = "4.6.5"
18+
micronaut-security = "4.6.6"
1919
micronaut-serde = "2.8.1"
2020
micronaut-servlet = "4.5.0"
2121
micronaut-test-resources="2.3.3"

gradlew.bat

+10-10
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ set JAVA_EXE=java.exe
4343
%JAVA_EXE% -version >NUL 2>&1
4444
if %ERRORLEVEL% equ 0 goto execute
4545

46-
echo. 1>&2
47-
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
48-
echo. 1>&2
49-
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
50-
echo location of your Java installation. 1>&2
46+
echo.
47+
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
48+
echo.
49+
echo Please set the JAVA_HOME variable in your environment to match the
50+
echo location of your Java installation.
5151

5252
goto fail
5353

@@ -57,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
5757

5858
if exist "%JAVA_EXE%" goto execute
5959

60-
echo. 1>&2
61-
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
62-
echo. 1>&2
63-
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
64-
echo location of your Java installation. 1>&2
60+
echo.
61+
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
62+
echo.
63+
echo Please set the JAVA_HOME variable in your environment to match the
64+
echo location of your Java installation.
6565

6666
goto fail
6767

test-suite-http-server-tck-function-aws-api-gateway-proxy-alb/src/test/java/io/micronaut/http/server/tck/lambda/tests/ApplicationLoadBalancerTckTestSuite.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
})
1313
@ExcludeClassNamePatterns({
1414
"io.micronaut.http.server.tck.tests.FilterProxyTest", // Immmutable request
15-
"io.micronaut.http.server.tck.tests.filter.options.OptionsFilterTest"
15+
"io.micronaut.http.server.tck.tests.filter.options.OptionsFilterTest",
16+
"io.micronaut.http.server.tck.tests.hateoas.JsonErrorTest",
17+
"io.micronaut.http.server.tck.tests.hateoas.VndErrorTest"
1618
})
1719
@SuiteDisplayName("HTTP Server TCK for Function AWS API Gateway Proxy Application Load Balancer Event")
1820
public class ApplicationLoadBalancerTckTestSuite {

test-suite-http-server-tck-function-aws-api-gateway-proxy-payloadv1/src/test/java/io/micronaut/http/server/tck/lambda/tests/FunctionAwsApiGatewayProxyV1HttpServerTestSuite.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
})
1313
@ExcludeClassNamePatterns({
1414
"io.micronaut.http.server.tck.tests.filter.options.OptionsFilterTest",
15-
"io.micronaut.http.server.tck.tests.FilterProxyTest" // Immmutable request
15+
"io.micronaut.http.server.tck.tests.FilterProxyTest", // Immmutable request
16+
"io.micronaut.http.server.tck.tests.hateoas.JsonErrorTest",
17+
"io.micronaut.http.server.tck.tests.hateoas.VndErrorTest"
1618
})
1719
@SuiteDisplayName("HTTP Server TCK for Function AWS API Gateway Proxy v1 Event model")
1820
public class FunctionAwsApiGatewayProxyV1HttpServerTestSuite {

test-suite-http-server-tck-function-aws-api-gateway-proxy-payloadv2/src/test/java/io/micronaut/http/server/tck/lambda/tests/FunctionAwsApiGatewayProxyV2HttpServerTestSuite.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
})
1313
@ExcludeClassNamePatterns({
1414
"io.micronaut.http.server.tck.tests.filter.options.OptionsFilterTest",
15-
"io.micronaut.http.server.tck.tests.FilterProxyTest" // Immmutable request
15+
"io.micronaut.http.server.tck.tests.FilterProxyTest", // Immmutable request
16+
"io.micronaut.http.server.tck.tests.hateoas.JsonErrorTest",
17+
"io.micronaut.http.server.tck.tests.hateoas.VndErrorTest"
1618
})
1719
@SuiteDisplayName("HTTP Server TCK for Function AWS API Gateway Proxy v2 Event model")
1820
public class FunctionAwsApiGatewayProxyV2HttpServerTestSuite {

0 commit comments

Comments
 (0)