Skip to content

Commit e9452fc

Browse files
Update depedencies
1 parent fbfb764 commit e9452fc

2 files changed

Lines changed: 14 additions & 3 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: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
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"
8-
assertj = "3.27.3"
8+
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"
1415
compile-testing = "0.21.0"
1516
json-schema = "1.12.1"
17+
# TODO: upgrade major version
1618
shadow = "8.3.9"
1719
api-guardian = "1.1.2"
1820
jreleaser = "1.19.0"

0 commit comments

Comments
 (0)