File tree Expand file tree Collapse file tree 6 files changed +13
-13
lines changed
src/main/java/com/ibm/eventstreams/connect/mqsink Expand file tree Collapse file tree 6 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 57
57
label : Version
58
58
description : What version of our software are you running?
59
59
options :
60
- - 1.5.1 (Default)
60
+ - 1.5.2 (Default)
61
+ - 1.5.1
61
62
- older (<1.5.1)
62
63
validations :
63
64
required : true
Original file line number Diff line number Diff line change @@ -15,10 +15,9 @@ Please delete options that are not relevant.
15
15
16
16
## How Has This Been Tested?
17
17
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
22
21
23
22
## Checklist
24
23
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Checkstyle and Tests
3
3
on :
4
4
pull_request :
5
5
branches :
6
- - ' master '
6
+ - ' main '
7
7
types : [opened, synchronize, reopened]
8
8
9
9
jobs :
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ COPY --chown=esuser:esgroup --from=builder /opt/kafka/libs/ /opt/kafka/libs/
18
18
COPY --chown=esuser:esgroup --from=builder /opt/kafka/config/ /opt/kafka/config/
19
19
20
20
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 /
22
22
23
23
WORKDIR /opt/kafka
24
24
Original file line number Diff line number Diff line change 20
20
<groupId >com.ibm.eventstreams.connect</groupId >
21
21
<artifactId >kafka-connect-mq-sink</artifactId >
22
22
<packaging >jar</packaging >
23
- <version >1.5.1 </version >
23
+ <version >1.5.2 </version >
24
24
<name >kafka-connect-mq-sink</name >
25
25
<organization >
26
26
<name >IBM Corporation</name >
63
63
<dependency >
64
64
<groupId >com.ibm.mq</groupId >
65
65
<artifactId >com.ibm.mq.allclient</artifactId >
66
- <version >9.1.5.0 </version >
66
+ <version >9.3.3.1 </version >
67
67
</dependency >
68
68
69
69
<dependency >
70
70
<groupId >junit</groupId >
71
71
<artifactId >junit</artifactId >
72
- <version >4.13.1 </version >
72
+ <version >4.13.2 </version >
73
73
<scope >test</scope >
74
74
</dependency >
75
75
<dependency >
76
76
<groupId >org.slf4j</groupId >
77
77
<artifactId >slf4j-log4j12</artifactId >
78
- <version >1.7.25 </version >
78
+ <version >2.0.7 </version >
79
79
<scope >test</scope >
80
80
</dependency >
81
81
84
84
<dependency >
85
85
<groupId >org.testcontainers</groupId >
86
86
<artifactId >testcontainers</artifactId >
87
- <version >1.17.2 </version >
87
+ <version >1.17.6 </version >
88
88
<scope >test</scope >
89
89
</dependency >
90
90
</dependencies >
Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ public class MQSinkConnector extends SinkConnector {
153
153
public static final String CONFIG_DISPLAY_MQ_RETRY_BACKOFF_MS = "Retry backoff (ms)" ;
154
154
155
155
156
- public static String version = "1.5.1 " ;
156
+ public static String version = "1.5.2 " ;
157
157
158
158
private Map <String , String > configProps ;
159
159
You can’t perform that action at this time.
0 commit comments