Skip to content

Commit 2ff7905

Browse files
committed
Bump a bunch of deps at once.
Notes: - The GWT bump requires changing the browser setting from "FF38" to "FF." - I skipped the `jsinterop-annotations` bump to 2.1.0 because it's built with `-target 11`, while we still support 8. (Closes #1147) (I've noted this in google/guava#6614) - The command I used is: ``` mvn org.codehaus.mojo:versions-maven-plugin:2.16.0:{update-properties,use-latest-releases} -DgenerateBackupPoms=false -Dexcludes=com.google.guava:guava ``` That tried to update protobuf to a release candidate. I had thought that perhaps this was the result of [a protobuf change from "-rc1" to "-rc-1"](protocolbuffers/protobuf#6522), but I'm wondering if it's actually just that `versions-maven-plugin` (in contrast to Dependabot) counts release candidates [as releases](https://www.mojohaus.org/versions/versions-maven-plugin/use-latest-releases-mojo.html)? I'd have to investigate further and perhaps [use `rulesUri`](https://stackoverflow.com/a/46935363/28465). But since we normally rely on Dependabot (and I was using `versions-maven-plugin` here only "to make things easier"... :)), I'm not going to worry about it now.
1 parent 1857121 commit 2ff7905

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
<goals><goal>test</goal></goals>
139139
<configuration>
140140
<mode>htmlunit</mode>
141-
<htmlunit>FF38</htmlunit>
141+
<htmlunit>FF</htmlunit>
142142
<productionMode>true</productionMode>
143143
<!-- Fix OutOfMemoryError in Travis. -->
144144
<extraJvmArgs>-Xms3500m -Xmx3500m -Xss1024k</extraJvmArgs>

pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1515

1616
<!-- Properties for multiple-artifact deps. -->
17-
<auto-value.version>1.10.1</auto-value.version>
17+
<auto-value.version>1.10.2</auto-value.version>
1818
<!--
1919
We have a separate property for each flavor of Guava (instead of a shared
2020
version without the -android and -jre suffixes) because that lets
@@ -29,8 +29,8 @@
2929
the other ends up with a merge conflict. That requires reapprovals.
3030
-->
3131
<guava.jre.version>32.1.1-jre</guava.jre.version>
32-
<gwt.version>2.9.0</gwt.version>
33-
<protobuf.version>3.23.2</protobuf.version>
32+
<gwt.version>2.10.0</gwt.version>
33+
<protobuf.version>3.23.4</protobuf.version>
3434
<!-- Property for protobuf-lite protocArtifact, which isn't a "normal" Maven dep. -->
3535
<!-- TODO(cpovirk): Use protobuf.version instead. But that requires finding the new way to request the Lite runtime. -->
3636
<protobuf-lite.protoc.version>3.1.0</protobuf-lite.protoc.version>
@@ -73,7 +73,7 @@
7373
<dependency>
7474
<groupId>org.checkerframework</groupId>
7575
<artifactId>checker-qual</artifactId>
76-
<version>3.35.0</version>
76+
<version>3.36.0</version>
7777
</dependency>
7878
<dependency>
7979
<groupId>junit</groupId>

0 commit comments

Comments
 (0)