Bump commons-io from 2.6 to 2.9.0 (#11338)

* Bump commons-io from 2.6 to 2.9.0

Bumps commons-io from 2.6 to 2.9.0.

---
updated-dependencies:
- dependency-name: commons-io:commons-io
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* update licenses.yaml to reflect version bumps
* fix tests relying on specific log messages

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Xavier Léauté <xvrl@apache.org>
This commit is contained in:
dependabot[bot] 2021-06-08 10:02:59 -07:00 committed by GitHub
parent 145cf9e5c3
commit be10a236d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -35,7 +35,7 @@
<properties>
<confluent.version>6.0.1</confluent.version>
<commons-io.version>2.6</commons-io.version>
<commons-io.version>2.9.0</commons-io.version>
</properties>
<repositories>

View File

@ -545,13 +545,13 @@ name: Apache Commons IO
license_category: binary
module: java-core
license_name: Apache License version 2.0
version: 2.6
version: 2.9.0
libraries:
- commons-io: commons-io
notices:
- commons-io: |
Apache Commons IO
Copyright 2002-2017 The Apache Software Foundation
Copyright 2002-2021 The Apache Software Foundation
---

View File

@ -222,7 +222,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
<version>2.9.0</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>

View File

@ -153,7 +153,7 @@ public class LocalDataSegmentPusherTest
public void testPushCannotCreateDirectory() throws IOException
{
exception.expect(IOException.class);
exception.expectMessage("Unable to create directory");
exception.expectMessage("Cannot create directory");
config.storageDirectory = new File(config.storageDirectory, "xxx");
Assert.assertTrue(config.storageDirectory.mkdir());
config.storageDirectory.setWritable(false);