Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update commons-lang3 to 3.17.0 #42740

Merged
merged 1 commit into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
<gizmo.version>1.8.0</gizmo.version>
<jackson-bom.version>2.17.2</jackson-bom.version>
<commons-logging-jboss-logging.version>1.0.0.Final</commons-logging-jboss-logging.version>
<commons-lang3.version>3.14.0</commons-lang3.version>
<commons-lang3.version>3.17.0</commons-lang3.version>
<commons-codec.version>1.17.1</commons-codec.version>
<classmate.version>1.7.0</classmate.version>
<!-- See root POM for hibernate-orm.version, hibernate-reactive.version, hibernate-validator.version,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ protected NativeImageBuildContainerRunner(NativeConfig nativeConfig) {

this.baseContainerRuntimeArgs = new String[] { "--env", "LANG=C", "--rm" };

containerName = "build-native-" + RandomStringUtils.random(5, true, false);
containerName = "build-native-" + RandomStringUtils.insecure().next(5, true, false);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ private boolean runUpxInContainer(NativeImageBuildItem nativeImage, NativeConfig
commandLine.add("--rm");
commandLine.add("--entrypoint=upx");

String containerName = "upx-" + RandomStringUtils.random(5, true, false);
String containerName = "upx-" + RandomStringUtils.insecure().next(5, true, false);
commandLine.add("--name");
commandLine.add(containerName);

Expand Down
2 changes: 1 addition & 1 deletion independent-projects/bootstrap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<jakarta.inject-api.version>2.0.1</jakarta.inject-api.version>
<commons-codec.version>1.17.1</commons-codec.version>
<commons-io.version>2.16.1</commons-io.version>
<commons-lang.version>3.16.0</commons-lang.version>
<commons-lang.version>3.17.0</commons-lang.version>
<guava.version>33.3.0-jre</guava.version>
<guava.failureaccess.version>1.0.1</guava.failureaccess.version><!-- keep in sync with guava.version -->
<j2objc.annotations.version>2.8</j2objc.annotations.version><!-- keep in sync with guava.version -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static class RabbitMQResource implements QuarkusTestResourceLifecycleMana
@Override
public Map<String, String> start() {
String username = "tester";
String password = RandomStringUtils.random(10);
String password = RandomStringUtils.insecure().next(10);

rabbit = new RabbitMQContainer(DockerImageName.parse("rabbitmq:3.12-management"))
.withNetwork(Network.SHARED)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class DefaultDockerContainerLauncher implements DockerContainerArtifactLa
private Map<String, String> labels;
private final Map<String, String> systemProps = new HashMap<>();
private boolean isSsl;
private final String containerName = "quarkus-integration-test-" + RandomStringUtils.random(5, true, false);
private final String containerName = "quarkus-integration-test-" + RandomStringUtils.insecure().next(5, true, false);
private String containerRuntimeBinaryName;
private final ExecutorService executorService = Executors.newSingleThreadExecutor();
private Optional<String> entryPoint;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ public void accept(String s, String s2) {
if (networkIdOpt.isPresent()) {
networkId = networkIdOpt.get();
} else {
networkId = "quarkus-integration-test-" + RandomStringUtils.random(5, true, false);
networkId = "quarkus-integration-test-" + RandomStringUtils.insecure().next(5, true, false);
manageNetwork = true;
}
}
Expand Down
Loading