Skip to content

Commit 658d559

Browse files
authored
[ISSUE-53] Increase file upload limit (#54)
* Increase file upload limit * bump version * fix pom * update docker file
1 parent bddfe36 commit 658d559

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
The format is based on [Keep a Changelog](http://keepachangelog.com/)
33
and 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.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
1616
VOLUME /app/data

kafka-webview-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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>
@@ -34,4 +34,4 @@
3434
<dependencies>
3535
<!-- None! -->
3636
</dependencies>
37-
</project>
37+
</project>

kafka-webview-ui/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
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>

kafka-webview-ui/src/main/resources/config/base.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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>

0 commit comments

Comments
 (0)