Skip to content

Commit b67a51c

Browse files
Update labkeyVersion to 26.3.2
2 parents 506e3ab + 2b7f866 commit b67a51c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ buildFromSource=true
4444

4545
# The default version for LabKey artifacts that are built or that we depend on.
4646
# override in an individual module's gradle.properties file as necessary
47-
labkeyVersion=26.3.1
47+
labkeyVersion=26.3.2
4848
labkeyClientApiVersion=7.2.0
4949

5050
# Version numbers for the various binary artifacts that are included when

server/embedded/src/org/labkey/embedded/LabKeyServer.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,9 @@ public static void main(String[] args)
130130

131131
// Enable HTTP compression for response content
132132
put("server.compression.enabled", "true");
133+
// Spring Boot compresses HTML, JSON and other types by default, but not TSV, CSV, or SVG.
134+
// We have to duplicate the defaults and add those types
135+
put("server.compression.mime-types", "text/html,text/xml,text/plain,text/css,text/javascript,application/javascript,application/json,application/xml,text/tab-separated-values,text/csv,image/svg+xml");
133136

134137
put("server.tomcat.accesslog.enabled", "true");
135138
put("server.tomcat.accesslog.pattern", "%h %l %u %t \"%r\" %s %b %D %S %I \"%{Referer}i\" \"%{User-Agent}i\" %{LABKEY.username}s %{X-Forwarded-For}i");

0 commit comments

Comments
 (0)