Skip to content

Commit

Permalink
Updates for v3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
axelstudios committed Dec 16, 2024
1 parent cdcd9c3 commit 3a0fb44
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 4 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
# SEED Version 3.2.2

<!-- Release notes generated using configuration in .github/release.yml at 3.2.2-release-prep -->

## 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

<!-- Release notes generated using configuration in .github/release.yml at 3.2.1-release-prep -->
Expand Down
4 changes: 4 additions & 0 deletions docs/source/migrations.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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``.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion seed/views/v3/portfolio_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.")

Expand Down

0 comments on commit 3a0fb44

Please sign in to comment.