File tree Expand file tree Collapse file tree 6 files changed +11
-8
lines changed
src/main/resources/config Expand file tree Collapse file tree 6 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 2
2
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
3
3
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
4
4
5
+ ## 1.0.2 (01/26/2018
6
+ - Increase file upload limit from 15MB to 64MB.
7
+
5
8
## 1.0.1 (01/17/2018)
6
9
- Add Dockerfile / Dockerhub images.
7
10
- [ Issue #49 ] ( https://github.com/SourceLabOrg/kafka-webview/issues/49 ) Fix bug in View create when a Filter has configurable options.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ WORKDIR /app
10
10
11
11
# Download latest distribution inside image
12
12
# Extract package into /app stripping top level directory contained within the zip.
13
- RUN wget https://github.com/SourceLabOrg/kafka-webview/releases/download/v1.0.1 /kafka-webview-ui-1.0.1 -bin.zip && unzip -d /app kafka-webview-ui-*-bin.zip && rm -f /app/kafka-webview-ui-*-bin.zip && f=`ls` && mv /app/*/* /app && rmdir $f && rm -f /app/kafka-webview-ui-*-sources.jar && rm -f /app/kafka-webview-ui-*-javadoc.jar && apk add --update bash && rm -rf /var/cache/apk/*
13
+ RUN wget https://github.com/SourceLabOrg/kafka-webview/releases/download/v1.0.2 /kafka-webview-ui-1.0.2 -bin.zip && unzip -d /app kafka-webview-ui-*-bin.zip && rm -f /app/kafka-webview-ui-*-bin.zip && f=`ls` && mv /app/*/* /app && rmdir $f && rm -f /app/kafka-webview-ui-*-sources.jar && rm -f /app/kafka-webview-ui-*-javadoc.jar && apk add --update bash && rm -rf /var/cache/apk/*
14
14
15
15
# Create volume to persist data
16
16
VOLUME /app/data
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >org.sourcelab</groupId >
7
7
<artifactId >kafka-webview</artifactId >
8
- <version >1.0.1 </version >
8
+ <version >1.0.2 </version >
9
9
</parent >
10
10
<modelVersion >4.0.0</modelVersion >
11
11
<artifactId >kafka-webview-plugin</artifactId >
34
34
<dependencies >
35
35
<!-- None! -->
36
36
</dependencies >
37
- </project >
37
+ </project >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<artifactId >kafka-webview</artifactId >
7
7
<groupId >org.sourcelab</groupId >
8
- <version >1.0.1 </version >
8
+ <version >1.0.2 </version >
9
9
</parent >
10
10
<modelVersion >4.0.0</modelVersion >
11
11
<artifactId >kafka-webview-ui</artifactId >
12
- <version >1.0.1 </version >
12
+ <version >1.0.2 </version >
13
13
14
14
<!-- Module Description and Ownership -->
15
15
<name >Kafka WebView UI</name >
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ spring:
23
23
24
24
http :
25
25
multipart :
26
- max-file-size : 15MB
27
- max-request-size : 15MB
26
+ max-file-size : 64MB
27
+ max-request-size : 64MB
28
28
29
29
thymeleaf :
30
30
cache : false
Original file line number Diff line number Diff line change 7
7
<groupId >org.sourcelab</groupId >
8
8
<artifactId >kafka-webview</artifactId >
9
9
<packaging >pom</packaging >
10
- <version >1.0.1 </version >
10
+ <version >1.0.2 </version >
11
11
12
12
<!-- Define submodules -->
13
13
<modules >
You can’t perform that action at this time.
0 commit comments