Skip to content

Commit

Permalink
AWS to Core 4.7.x (#2241)
Browse files Browse the repository at this point in the history
* fix(deps): update dependency io.micronaut.views:micronaut-views-bom to v5.5.1
* fix(deps): update dependency io.micronaut.validation:micronaut-validation-bom to v4.8.0
* fix(deps): update dependency io.micronaut.testresources:micronaut-test-resources-bom to v2.6.2
* fix(deps): update dependency io.micronaut.servlet:micronaut-servlet-bom to v4.11.2
* fix(deps): update dependency io.micronaut.serde:micronaut-serde-bom to v2.12.0
* fix(deps): update dependency io.micronaut.security:micronaut-security-bom to v4.11.0
* fix(deps): update dependency io.micronaut.reactor:micronaut-reactor-bom to v3.6.0
* fix(deps): update dependency io.micronaut.mongodb:micronaut-mongo-bom to v5.5.0
* fix(deps): update dependency io.micronaut.gradle:micronaut-gradle-plugin to v4.4.4
* fix(deps): update dependency io.micronaut.discovery:micronaut-discovery-client-bom to v4.5.0
* fix(deps): update dependency com.amazonaws:aws-lambda-java-events to v3.14.0
* fix(deps): update aws-java-sdk-v2 monorepo to v2.29.7
* Micronaut 4.7.2
* servlet 4.12.0
* javadoc: fix throws
* fix javadoc error
* ignore JsonViewsTest
* ignore FormUrlEncodedBodyInRequestFilterTest
  • Loading branch information
sdelamo authored Nov 7, 2024
1 parent a6a048c commit 4f2f42b
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import java.io.IOException;

/**
* This seems to be necessary because Serde was not picking the appropriate constructor {@link com.amazonaws.services.lambda.runtime.events.models.s3.S3EventNotification.S3ObjectEntity(String, Long, String, String, String)}.
* This seems to be necessary because Serde was not picking the appropriate constructor {@code S3EventNotification.S3ObjectEntity(String, Long, String, String, String)}.
*/
@Internal
@Singleton
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ public void setParsedBody(T body) {
* @param bodySupplier HTTP Request's Body Supplier
* @param base64EncodedSupplier Whether the body is Base 64 encoded
* @return body bytes
* @throws IOException if the body is empty
* @throws EmptyBodyException if the body is empty
*/
protected byte[] getBodyBytes(@NonNull Supplier<String> bodySupplier, @NonNull BooleanSupplier base64EncodedSupplier) throws EmptyBodyException {
String requestBody = bodySupplier.get();
Expand Down
27 changes: 13 additions & 14 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
micronaut = "4.6.2"
micronaut = "4.7.2"
micronaut-docs = "2.0.0"
micronaut-test = "4.5.0"
groovy = "4.0.22"
Expand All @@ -10,24 +10,23 @@ fileupload = '0.0.6'
jetty = '11.0.24'
logback-json-classic = '0.1.5'

micronaut-discovery = "4.4.0"
micronaut-discovery = "4.5.0"
micronaut-groovy = "4.4.0"
micronaut-logging = "1.4.0"
micronaut-mongodb = "5.3.0"
micronaut-reactor = "3.5.0"

micronaut-security = "4.9.1"
micronaut-serde = "2.11.2"
micronaut-servlet = "4.10.1"
micronaut-test-resources="2.5.4"
micronaut-views = "5.4.4"
micronaut-validation = "4.7.0"
micronaut-mongodb = "5.5.0"
micronaut-reactor = "3.6.0"
micronaut-security = "4.11.0"
micronaut-serde = "2.12.0"
micronaut-servlet = "4.12.0"
micronaut-test-resources="2.6.2"
micronaut-views = "5.5.1"
micronaut-validation = "4.8.0"

managed-alexa-ask-sdk = "2.86.0"
managed-aws-java-sdk-v1 = '1.12.777'
managed-aws-java-sdk-v2 = '2.27.21'
managed-aws-java-sdk-v2 = '2.29.7'
managed-aws-lambda = '1.2.3'
managed-aws-lambda-events = '3.13.0'
managed-aws-lambda-events = '3.14.0'
managed-aws-lambda-java-serialization = '1.1.5'
aws-lambda-java-runtime-interface-client = '2.6.0'

Expand All @@ -43,7 +42,7 @@ graal = "23.1.5"
kotlin = "1.9.25"

# Micronaut
micronaut-gradle-plugin = "4.4.2"
micronaut-gradle-plugin = "4.4.4"

[libraries]
# Core
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"io.micronaut.http.server.tck.lambda.tests"
})
@ExcludeClassNamePatterns({
"io.micronaut.http.server.tck.tests.jsonview.JsonViewsTest", // https://github.com/micronaut-projects/micronaut-servlet/pull/826
"io.micronaut.http.server.tck.tests.hateoas.JsonErrorTest",
"io.micronaut.http.server.tck.tests.hateoas.VndErrorTest",
"io.micronaut.http.server.tck.tests.FilterProxyTest", // Immmutable request
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"io.micronaut.http.server.tck.lambda.tests"
})
@ExcludeClassNamePatterns({
"io.micronaut.http.server.tck.tests.jsonview.JsonViewsTest", // https://github.com/micronaut-projects/micronaut-servlet/pull/826
"io.micronaut.http.server.tck.tests.hateoas.JsonErrorTest",
"io.micronaut.http.server.tck.tests.hateoas.VndErrorTest",
"io.micronaut.http.server.tck.tests.filter.options.OptionsFilterTest",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"io.micronaut.http.server.tck.lambda.tests"
})
@ExcludeClassNamePatterns({
"io.micronaut.http.server.tck.tests.jsonview.JsonViewsTest", // https://github.com/micronaut-projects/micronaut-servlet/pull/826
"io.micronaut.http.server.tck.tests.hateoas.JsonErrorTest",
"io.micronaut.http.server.tck.tests.hateoas.VndErrorTest",
"io.micronaut.http.server.tck.tests.filter.options.OptionsFilterTest",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
"io.micronaut.http.server.tck.lambda.tests"
})
@ExcludeClassNamePatterns({
"io.micronaut.http.server.tck.tests.forms.FormUrlEncodedBodyInRequestFilterTest",
"io.micronaut.http.server.tck.tests.jsonview.JsonViewsTest", // https://github.com/micronaut-projects/micronaut-servlet/pull/826
"io.micronaut.http.server.tck.tests.forms.FormsSubmissionsWithListsTest",
"io.micronaut.http.server.tck.tests.filter.options.OptionsFilterTest",
"io.micronaut.http.server.tck.tests.LocalErrorReadingBodyTest", // Binding body different type (e.g. a String in error handler)
Expand Down

0 comments on commit 4f2f42b

Please sign in to comment.