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 22The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
33and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
44
5+ ## 1.0.2 (01/26/2018
6+ - Increase file upload limit from 15MB to 64MB.
7+
58## 1.0.1 (01/17/2018)
69- Add Dockerfile / Dockerhub images.
710- [ 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
1010
1111# Download latest distribution inside image
1212# 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/*
1414
1515# Create volume to persist data
1616VOLUME /app/data
Original file line number Diff line number Diff line change 55 <parent >
66 <groupId >org.sourcelab</groupId >
77 <artifactId >kafka-webview</artifactId >
8- <version >1.0.1 </version >
8+ <version >1.0.2 </version >
99 </parent >
1010 <modelVersion >4.0.0</modelVersion >
1111 <artifactId >kafka-webview-plugin</artifactId >
3434 <dependencies >
3535 <!-- None! -->
3636 </dependencies >
37- </project >
37+ </project >
Original file line number Diff line number Diff line change 55 <parent >
66 <artifactId >kafka-webview</artifactId >
77 <groupId >org.sourcelab</groupId >
8- <version >1.0.1 </version >
8+ <version >1.0.2 </version >
99 </parent >
1010 <modelVersion >4.0.0</modelVersion >
1111 <artifactId >kafka-webview-ui</artifactId >
12- <version >1.0.1 </version >
12+ <version >1.0.2 </version >
1313
1414 <!-- Module Description and Ownership -->
1515 <name >Kafka WebView UI</name >
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ spring:
2323
2424 http :
2525 multipart :
26- max-file-size : 15MB
27- max-request-size : 15MB
26+ max-file-size : 64MB
27+ max-request-size : 64MB
2828
2929 thymeleaf :
3030 cache : false
Original file line number Diff line number Diff line change 77 <groupId >org.sourcelab</groupId >
88 <artifactId >kafka-webview</artifactId >
99 <packaging >pom</packaging >
10- <version >1.0.1 </version >
10+ <version >1.0.2 </version >
1111
1212 <!-- Define submodules -->
1313 <modules >
You can’t perform that action at this time.
0 commit comments