Skip to content

Commit 98c5641

Browse files
authored
Merge pull request #75 from mmolimar/develop
Release version 1.2.0
2 parents 7ec9293 + 1655831 commit 98c5641

36 files changed

+2658
-506
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM confluentinc/cp-kafka-connect-base:5.5.0
1+
FROM confluentinc/cp-kafka-connect-base:5.5.1
22

33
ARG PROJECT_VERSION
44
ENV CONNECT_PLUGIN_PATH="/usr/share/java,/usr/share/confluent-hub-components"

config/kafka-connect-fs.properties

+1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ policy.class=com.github.mmolimar.kafka.connect.fs.policy.SimplePolicy
77
policy.recursive=true
88
policy.regexp=^.*\.txt$
99
policy.batch_size=0
10+
policy.cleanup=none
1011
file_reader.class=com.github.mmolimar.kafka.connect.fs.file.reader.TextFileReader
1112
file_reader.batch_size=0

docker-compose.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3'
22
services:
33
cp-zookeeper:
4-
image: confluentinc/cp-zookeeper:5.5.0
4+
image: confluentinc/cp-zookeeper:5.5.1
55
hostname: zookeeper
66
container_name: zookeeper
77
ports:
@@ -11,7 +11,7 @@ services:
1111
ZOOKEEPER_TICK_TIME: 2000
1212

1313
cp-kafka:
14-
image: confluentinc/cp-kafka:5.5.0
14+
image: confluentinc/cp-kafka:5.5.1
1515
hostname: kafka
1616
container_name: kafka
1717
depends_on:
@@ -32,7 +32,7 @@ services:
3232
CONFLUENT_METRICS_ENABLE: 'false'
3333

3434
cp-schema-registry:
35-
image: confluentinc/cp-schema-registry:5.5.0
35+
image: confluentinc/cp-schema-registry:5.5.1
3636
hostname: schema-registry
3737
container_name: schema-registry
3838
depends_on:
@@ -45,7 +45,7 @@ services:
4545
SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181'
4646

4747
connect-fs:
48-
image: mmolimar/kafka-connect-fs:1.1.0
48+
image: mmolimar/kafka-connect-fs:1.2.0
4949
container_name: connect
5050
depends_on:
5151
- cp-kafka

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = '1.1'
58+
version = '1.2'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '1.1'
60+
release = '1.2'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

0 commit comments

Comments
 (0)