diff --git a/CHANGELOG.md b/CHANGELOG.md
index c43a361cc0..6a979e5f9e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,15 @@
# Changelog
+## RDMO 1.8.1 (May 25, 2022)
+
+* Fix a bug on the "show all projects on site" view
+* Fix a bug with the slider in the interview
+* Fix a when selecting and deselecting a checkbox in the interview
+* Fix exception when no user matched filter criteria
+* Add keycloak logo to be used with allauth
+* Add email and phone to VALUE_TYPE_CHOICES
+* Various minor fixes
+
## RDMO 1.8.0 (Mar 07, 2022)
* Add Project Export Provider to perform import and export from and to webservices
diff --git a/docs/dev.md b/docs/dev.md
index f931773e82..ffa60e1719 100644
--- a/docs/dev.md
+++ b/docs/dev.md
@@ -92,6 +92,12 @@ The testing data can be imported using:
```bash
python manage.py loaddata ../rdmo/testing/fixtures/*
```
+To update the testing data fixtures based on the current database, each of the RDMO apps with new data needs to be dumped using the following command.
+As an example, the views and projects app contain new data:
+```bash
+python manage.py dumpdata --indent 4 -o ../rdmo/testing/fixtures/views.json views
+python manage.py dumpdata --indent 4 -o ../rdmo/testing/fixtures/projects.json projects
+```
The test upload files are initialized using:
diff --git a/rdmo/accounts/static/accounts/img/keycloak_logo_200px.svg b/rdmo/accounts/static/accounts/img/keycloak_logo_200px.svg
new file mode 100644
index 0000000000..27fba53778
--- /dev/null
+++ b/rdmo/accounts/static/accounts/img/keycloak_logo_200px.svg
@@ -0,0 +1,711 @@
+
+
diff --git a/rdmo/accounts/templates/socialaccount/snippets/provider_list.html b/rdmo/accounts/templates/socialaccount/snippets/provider_list.html
index 99727dd2d5..f8f4e278cd 100644
--- a/rdmo/accounts/templates/socialaccount/snippets/provider_list.html
+++ b/rdmo/accounts/templates/socialaccount/snippets/provider_list.html
@@ -24,6 +24,13 @@
+{% elif provider.id == 'keycloak' %}
+