From c25b4bb22cdb65ec3bacfd27995bf06a75fdf67c Mon Sep 17 00:00:00 2001
From: Erlend Klakegg Bergheim <erlend@klakegg.net>
Date: Thu, 27 Aug 2015 19:30:16 +0200
Subject: [PATCH 1/2] Fixing charset when returning rendered document.

---
 .../no/difi/vefa/validator/controller/ValidationController.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/validator-web/src/main/java/no/difi/vefa/validator/controller/ValidationController.java b/validator-web/src/main/java/no/difi/vefa/validator/controller/ValidationController.java
index 713e6914..fb270bbd 100644
--- a/validator-web/src/main/java/no/difi/vefa/validator/controller/ValidationController.java
+++ b/validator-web/src/main/java/no/difi/vefa/validator/controller/ValidationController.java
@@ -68,7 +68,7 @@ public FileSystemResource presentSource(@PathVariable String identifier, HttpSer
     }
 
     @ResponseBody
-    @RequestMapping(value = "/view", produces = MediaType.TEXT_HTML_VALUE)
+    @RequestMapping(value = "/view", produces = MediaType.TEXT_HTML_VALUE + "; charset=utf-8")
     public FileSystemResource presentView(@PathVariable String identifier) throws Exception {
         if (!workspaceService.exists(identifier))
             throw new Exception("Workspace not found.");

From 19276ba77fbda761488b5838f216c29b3cabce9e Mon Sep 17 00:00:00 2001
From: Erlend Klakegg Bergheim <erlend@klakegg.net>
Date: Thu, 27 Aug 2015 20:18:40 +0200
Subject: [PATCH 2/2] Updating CHANGELOG.md.

---
 CHANGELOG.md | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6ba32daa..e04faf71 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,10 @@
 
 * Allow tracing successful test.
 * Adding FlagType.SUCCESS in API.
+* Added more logging.
+* Updating version of no.difi.commons:commons-schematron.
+* Functionality to sign validation artifacts defined by parameters.
+* Fixing UTF-8 thing in presentation of rendered documents in sample application.
 
 ## 2.0.0-RC2