From dccf26a28d3f0149a7ae54c7ccceb2e96db44cd1 Mon Sep 17 00:00:00 2001 From: sergio Date: Mon, 13 Jun 2022 09:36:57 +0100 Subject: [PATCH 1/3] fix: wrong info in changelog --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f49efa2..e470468 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # 0.1.9 -- Added external API with a filterable commitments index -- rake task to update countries to UN compliant names +- Rake task to update countries to UN compliant names +- Added API documentation # 0.1.8 From 8a86fde62653d6b769d1c124f1964caa60baefe4 Mon Sep 17 00:00:00 2001 From: Ynda Jas Date: Mon, 20 Jun 2022 11:51:54 +0100 Subject: [PATCH 2/3] fix: view commitments from map error (remove unused required argument) --- app/models/commitment.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/commitment.rb b/app/models/commitment.rb index 16ca32b..6397695 100644 --- a/app/models/commitment.rb +++ b/app/models/commitment.rb @@ -207,7 +207,7 @@ def self.parse_filters(filters) params.compact end - def self.run_query(_page, where_params) + def self.run_query(where_params) # WARNING! Do not remove the 'published' scope, because this will show unpublished Commitments # people might not want public and CBD commitments we've chosen not to display. Commitment.published From f2d0f59d87c1bdd7ec9d63ecdd8cecffa3e2dbb5 Mon Sep 17 00:00:00 2001 From: Dagmara Date: Mon, 20 Jun 2022 14:58:34 +0100 Subject: [PATCH 3/3] docs: 0.2.0 release notes --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e470468..96d4870 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.2.0 + +- Bugfix map popup - button link functionality + # 0.1.9 - Rake task to update countries to UN compliant names