added latest changes file
diff --git a/_data/latest-changes.yml b/_data/latest-changes.yml
new file mode 100644
index 0000000..69514d7
--- /dev/null
+++ b/_data/latest-changes.yml
@@ -0,0 +1,6 @@
+- date: 2021-07-08
+  short: added latest changes documentation
+- date: 2021-07-05
+  short: added Microsoft Azure, Scaleway, Github, Fastly to terms
+- date: 2021-07-05
+  short: added mailing list policy (draft)  
\ No newline at end of file
diff --git a/policies/index.md b/policies/index.md
index e8736e3..4d93e14 100644
--- a/policies/index.md
+++ b/policies/index.md
@@ -21,6 +21,8 @@
 
 # Available Policies
 
+Please read about our [latest changes here](/policies/latest-changes.html).
+
 ## Privacy Policies 
 
  - [Privacy Policy for public services](/policies/privacy-policy-public.html)
diff --git a/policies/latest-changes.html b/policies/latest-changes.html
new file mode 100644
index 0000000..b67d699
--- /dev/null
+++ b/policies/latest-changes.html
@@ -0,0 +1,32 @@
+---
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+layout: default
+---
+
+<h2>Latest Changes</h2>
+
+<div>A detailled list of changes can be found in our <a href="https://github.com/apache/privacy-website/commits/main">GitHub source repository</a>.</div>
+
+<ul>
+    {% for change in site.data.latest-changes %}
+      <li>
+        {{change.date}}: {{change.short}}
+      </li>
+    {% endfor %}
+</ul>
\ No newline at end of file