This is an automated email from the ASF dual-hosted git repository. pnowojski pushed a commit to branch release-1.19 in repository https://gitbox.apache.org/repos/asf/flink.git
commit 5da82f8ca4e5dbfa395b6c04a28eab7726d3b1c5 Author: Piotr Nowojski <[email protected]> AuthorDate: Tue Aug 20 12:45:22 2024 +0200 [FLINK-35886][source] Exclude japi checks for the API changes --- pom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pom.xml b/pom.xml index e7f7b7e018f..bb9454c3bf6 100644 --- a/pom.xml +++ b/pom.xml @@ -2355,6 +2355,10 @@ under the License. <exclude>@org.apache.flink.annotation.Experimental</exclude> <exclude>@org.apache.flink.annotation.Internal</exclude> <!-- MARKER: start exclusions; these will be wiped by tools/releasing/update_japicmp_configuration.sh --> + <!-- New method has been added to the interface, but this interface shouldn't be implemented by users, only used/called, so this doesn't break API compatibility. --> + <exclude>org.apache.flink.api.common.eventtime.WatermarkGeneratorSupplier$Context</exclude> + <!-- Base interface has been extracted from the existing Clock class. This interface shouldn't affect user code. --> + <exclude>org.apache.flink.util.clock.Clock</exclude> <!-- MARKER: end exclusions --> </excludes> <accessModifier>public</accessModifier>
