From c8e93df103859bb311eddcd123e0d5a76a6c1c5d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Jun 2025 04:22:29 +0000 Subject: [PATCH 1/2] Bump com.github.spotbugs:spotbugs-maven-plugin from 4.9.3.0 to 4.9.3.2 Bumps [com.github.spotbugs:spotbugs-maven-plugin](https://github.com/spotbugs/spotbugs-maven-plugin) from 4.9.3.0 to 4.9.3.2. - [Release notes](https://github.com/spotbugs/spotbugs-maven-plugin/releases) - [Commits](https://github.com/spotbugs/spotbugs-maven-plugin/compare/spotbugs-maven-plugin-4.9.3.0...spotbugs-maven-plugin-4.9.3.2) --- updated-dependencies: - dependency-name: com.github.spotbugs:spotbugs-maven-plugin dependency-version: 4.9.3.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9c538884..84e14068 100644 --- a/pom.xml +++ b/pom.xml @@ -187,7 +187,7 @@ com.github.spotbugs spotbugs-maven-plugin - 4.9.3.0 + 4.9.3.2 From 003efc6559e0b7d628630acb9191738321a9d782 Mon Sep 17 00:00:00 2001 From: Valentyn Kolesnikov Date: Mon, 30 Jun 2025 10:50:21 +0300 Subject: [PATCH 2/2] Update FunctionsTest.java --- src/test/java/com/github/underscore/FunctionsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/com/github/underscore/FunctionsTest.java b/src/test/java/com/github/underscore/FunctionsTest.java index 057a28b6..8743800f 100644 --- a/src/test/java/com/github/underscore/FunctionsTest.java +++ b/src/test/java/com/github/underscore/FunctionsTest.java @@ -199,7 +199,7 @@ void defer() { return null; }); assertEquals(0, counter[0].intValue(), "incr was debounced"); - await().atMost(360, TimeUnit.MILLISECONDS) + await().atMost(400, TimeUnit.MILLISECONDS) .until( () -> { assertEquals(1, counter[0].intValue(), "incr was debounced");