Start version 6.3.0

* Upgrade supported dependencies to their latest versions or `alpha`, `RC`
* Migrate to `com.github.spotbugs` plugin
* Upgrade to GraalVM `23.1.1`, which includes `org.graalvm.polyglot:js` migration
* Remove `spring-integration-security` module
* Fix Debezium tests according to the latest changes in the Debezium library
* Fix deprecations and incompatibility for latest Smack and Spring AMQP
This commit is contained in:
Artem Bilan
2023-12-21 17:39:34 -05:00
parent 075613c4a1
commit 23c792e11b
19 changed files with 338 additions and 443 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2018-2022 the original author or authors.
* Copyright 2018-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -145,7 +145,7 @@ class FunctionsTests {
val gateways = this.monoFunctionGateway.gateways
assertThat(gateways).size().isEqualTo(3)
val methodNames = gateways.keys.stream().map { it.name }.collect(Collectors.toList())
assertThat(methodNames).containsAll("apply", "andThen", "compose")
assertThat(methodNames).containsAtLeast("apply", "andThen", "compose")
}
@Autowired