diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f95b97440..c1885e2488 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,34 @@ +# SEED Version 3.2.2 + + + +## What's Changed +### New Features 🎉 +* Add button to show or hide all labels by @perryr16 in https://github.com/SEED-platform/seed/pull/4875 +* Add transactions template to portfolio summary by @perryr16 in https://github.com/SEED-platform/seed/pull/4891 +* Add building groups functionality by @haneslinger in https://github.com/SEED-platform/seed/pull/4899 +### Improvements 📈 +* Add derived columns to program setup by @haneslinger in https://github.com/SEED-platform/seed/pull/4888 +* Fix Default Reports and Analyses by @kflemin in https://github.com/SEED-platform/seed/pull/4887 +* Portfolio summary move to backend by @perryr16 in https://github.com/SEED-platform/seed/pull/4885 +* Speed up program and property insight pages by @haneslinger in https://github.com/SEED-platform/seed/pull/4890 +* Add show all labels description text and translation by @kflemin in https://github.com/SEED-platform/seed/pull/4896 +* Update list of possible Audit Template reports in org settings by @kflemin in https://github.com/SEED-platform/seed/pull/4903 +### Maintenance 🧹 +* Remove obsolete scope 1 emission codes by @anchapin in https://github.com/SEED-platform/seed/pull/4897 +* Major dependency update by @axelstudios in https://github.com/SEED-platform/seed/pull/4806 +### Bug Fixes 🐛 +* Display current access level instance names in default reports by @kflemin in https://github.com/SEED-platform/seed/pull/4882 +* Include derived columns in y axis for default reports by @kflemin in https://github.com/SEED-platform/seed/pull/4883 +* Change CTS export column name by @haneslinger in https://github.com/SEED-platform/seed/pull/4884 +* Fix invalid permission class by @axelstudios in https://github.com/SEED-platform/seed/pull/4894 +* Fix notes modal by @haneslinger in https://github.com/SEED-platform/seed/pull/4874 +* Fix organization deletion by @crutan in https://github.com/SEED-platform/seed/pull/4851 +* Mapping review and line length bug fixes by @axelstudios in https://github.com/SEED-platform/seed/pull/4906 + + +**Full Changelog**: https://github.com/SEED-platform/seed/compare/v3.2.1...v3.2.2 + # SEED Version 3.2.1 diff --git a/docs/source/migrations.rst b/docs/source/migrations.rst index 9277e59c8f..30798d17c8 100644 --- a/docs/source/migrations.rst +++ b/docs/source/migrations.rst @@ -38,6 +38,10 @@ local_untracked.py file ), ) +Version 3.2.2 +------------- +- There are no special migrations needed for this version. Simply run ``./manage.py migrate``. + Version 3.2.1 ------------- - There are no special migrations needed for this version. Simply run ``./manage.py migrate``. diff --git a/package-lock.json b/package-lock.json index 058a845811..1f56c63b5c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "seed", - "version": "3.2.1", + "version": "3.2.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "seed", - "version": "3.2.1", + "version": "3.2.2", "hasInstallScript": true, "license": "SEE LICENSE IN LICENSE.md", "devDependencies": { diff --git a/package.json b/package.json index e913aa63e2..d29d7c6d48 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "seed", - "version": "3.2.1", + "version": "3.2.2", "description": "Standard Energy Efficiency Data (SEED) Platform™", "license": "SEE LICENSE IN LICENSE.md", "directories": { diff --git a/seed/views/v3/portfolio_manager.py b/seed/views/v3/portfolio_manager.py index bf4e8c0441..baf94d44e3 100644 --- a/seed/views/v3/portfolio_manager.py +++ b/seed/views/v3/portfolio_manager.py @@ -503,7 +503,7 @@ def generate_and_download_template_report(self, matched_template, report_format= break if report_generation_complete: - _log.debug("Report appears to have been generated successfully (attempt_count=" + str(attempt_count) + ")") + _log.debug(f"Report appears to have been generated successfully (attempt_count={attempt_count})") else: raise PMError("Template report not generated successfully; aborting.")