Skip to content

Commit b09d484

Browse files
Update depedencies
1 parent 22a1cdf commit b09d484

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

config/spotbugs/filter.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,15 @@
194194
<Bug pattern="DE_MIGHT_IGNORE"/>
195195
</Match>
196196

197+
<!-- We could mark these as volatile, but in practice we don't share instances across
198+
threads, so there isn't a need to. This class is private, so we don't have to worry
199+
about outside
200+
usage. -->
201+
<Match>
202+
<Class name="software.amazon.smithy.cli.commands.ModelBuilder"/>
203+
<Bug pattern="AT_STALE_THREAD_WRITE_OF_PRIMITIVE"/>
204+
</Match>
205+
197206
<!-- This checks for mutability, but it's full of false positives. Among other things, it doesn't
198207
recognize SetUtils.copyOf and similar as providing immutable collections. -->
199208
<Match>

gradle/libs.versions.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
[versions]
22
junit5 = "5.13.4"
33
hamcrest = "3.0"
4-
jmh = "0.6.6"
5-
spotbugs = "6.0.22"
4+
jmh = "0.7.2"
5+
spotbugs = "6.2.4"
66
spotless = "7.2.1"
77
smithy-gradle = "1.3.0"
88
assertj = "3.27.4"
99
prettier4j = "0.3.0"
1010
maven-resolver-provider = "3.9.11"
11+
# TODO: upgrade major version
1112
maven-resolver = "1.9.24"
1213
slf4j = "1.7.36"
1314
mockserver = "5.15.0"

0 commit comments

Comments
 (0)