Skip to content

Commit 3bd3bdb

Browse files
authored
chore: Update mq allclient, log4j and junit versions (#62)
Signed-off-by: Joel Hanson <joel.hanson2@ibm.com>
1 parent 1680e74 commit 3bd3bdb

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.github/ISSUE_TEMPLATES/BUG_REPORT.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ body:
5757
label: Version
5858
description: What version of our software are you running?
5959
options:
60-
- 1.5.1 (Default)
60+
- 1.5.2 (Default)
61+
- 1.5.1
6162
- older (<1.5.1)
6263
validations:
6364
required: true

.github/PULL_REQUEST_TEMPLATE

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,9 @@ Please delete options that are not relevant.
1515

1616
## How Has This Been Tested?
1717

18-
<!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration
19-
20-
- [ ] Test A
21-
- [ ] Test B -->
18+
- [ ] E2E
19+
- [ ] Unit Test
20+
- [ ] Integration Test
2221

2322
## Checklist
2423

.github/workflows/checkstyle-and-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Checkstyle and Tests
33
on:
44
pull_request:
55
branches:
6-
- 'master'
6+
- 'main'
77
types: [opened, synchronize, reopened]
88

99
jobs:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ COPY --chown=esuser:esgroup --from=builder /opt/kafka/libs/ /opt/kafka/libs/
1818
COPY --chown=esuser:esgroup --from=builder /opt/kafka/config/ /opt/kafka/config/
1919

2020
RUN mkdir /opt/kafka/logs && chown esuser:esgroup /opt/kafka/logs
21-
COPY --chown=esuser:esgroup target/kafka-connect-*-jar-with-dependencies.jar /opt/kafka/libs/
21+
COPY --chown=esuser:esgroup target/kafka-connect-*-jar-with-dependencies.jar /opt/connectors/
2222

2323
WORKDIR /opt/kafka
2424

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<groupId>com.ibm.eventstreams.connect</groupId>
2121
<artifactId>kafka-connect-mq-sink</artifactId>
2222
<packaging>jar</packaging>
23-
<version>1.5.1</version>
23+
<version>1.5.2</version>
2424
<name>kafka-connect-mq-sink</name>
2525
<organization>
2626
<name>IBM Corporation</name>
@@ -63,19 +63,19 @@
6363
<dependency>
6464
<groupId>com.ibm.mq</groupId>
6565
<artifactId>com.ibm.mq.allclient</artifactId>
66-
<version>9.1.5.0</version>
66+
<version>9.3.3.1</version>
6767
</dependency>
6868

6969
<dependency>
7070
<groupId>junit</groupId>
7171
<artifactId>junit</artifactId>
72-
<version>4.13.1</version>
72+
<version>4.13.2</version>
7373
<scope>test</scope>
7474
</dependency>
7575
<dependency>
7676
<groupId>org.slf4j</groupId>
7777
<artifactId>slf4j-log4j12</artifactId>
78-
<version>1.7.25</version>
78+
<version>2.0.7</version>
7979
<scope>test</scope>
8080
</dependency>
8181

@@ -84,7 +84,7 @@
8484
<dependency>
8585
<groupId>org.testcontainers</groupId>
8686
<artifactId>testcontainers</artifactId>
87-
<version>1.17.2</version>
87+
<version>1.17.6</version>
8888
<scope>test</scope>
8989
</dependency>
9090
</dependencies>

src/main/java/com/ibm/eventstreams/connect/mqsink/MQSinkConnector.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public class MQSinkConnector extends SinkConnector {
153153
public static final String CONFIG_DISPLAY_MQ_RETRY_BACKOFF_MS = "Retry backoff (ms)";
154154

155155

156-
public static String version = "1.5.1";
156+
public static String version = "1.5.2";
157157

158158
private Map<String, String> configProps;
159159

0 commit comments

Comments
 (0)