Skip to content

Commit e9b81f1

Browse files
Brendan Lynchbrendan-p-lynch
authored andcommitted
Updated versions for security vulnerabilities, added -SNAPSHOT in version, and fixed test warning with escape character
1 parent 7dcb909 commit e9b81f1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<awssdk.version>2.19.2</awssdk.version>
66
<aws-java-sdk.version>1.12.370</aws-java-sdk.version>
77
<kcl.version>2.5.2</kcl.version>
8-
<netty.version>4.1.86.Final</netty.version>
8+
<netty.version>4.1.94.Final</netty.version>
99
<netty-reactive.version>2.0.6</netty-reactive.version>
10-
<fasterxml-jackson.version>2.13.4</fasterxml-jackson.version>
10+
<fasterxml-jackson.version>2.13.5</fasterxml-jackson.version>
1111
<logback.version>1.3.0</logback.version>
1212
</properties>
1313
<dependencies>
@@ -209,7 +209,7 @@
209209
<dependency>
210210
<groupId>com.google.guava</groupId>
211211
<artifactId>guava</artifactId>
212-
<version>32.0.0-jre</version>
212+
<version>32.1.1-jre</version>
213213
</dependency>
214214
<dependency>
215215
<groupId>com.google.code.findbugs</groupId>
@@ -239,7 +239,7 @@
239239
<dependency>
240240
<groupId>com.google.protobuf</groupId>
241241
<artifactId>protobuf-java</artifactId>
242-
<version>3.21.5</version>
242+
<version>3.21.7</version>
243243
</dependency>
244244
<dependency>
245245
<groupId>org.apache.commons</groupId>

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
PACKAGE_NAME = 'amazon_kclpy'
4444
JAR_DIRECTORY = os.path.join(PACKAGE_NAME, 'jars')
45-
PACKAGE_VERSION = '2.1.3'
45+
PACKAGE_VERSION = '2.1.4-SNAPSHOT'
4646
PYTHON_REQUIREMENTS = [
4747
'boto',
4848
# argparse is part of python2.7 but must be declared for python2.6

test/test_amazon_kclpy_input_output_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def shutdown(self, checkpointer, reason):
6060

6161

6262
def _strip_all_whitespace(s):
63-
return re.sub('\s*', '', s)
63+
return re.sub('\\s*', '', s)
6464

6565

6666
test_shard_id = "shardId-123"

0 commit comments

Comments
 (0)