Skip to content

Commit 47d68a2

Browse files
authored
Merge branch 'develop' into 4789-import-labels
2 parents 06a120d + 3a0fb44 commit 47d68a2

File tree

236 files changed

+6861
-5612
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

236 files changed

+6861
-5612
lines changed

.cspell.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@
9898
"datestrings",
9999
"datetime",
100100
"dateutil",
101+
"dbressan",
101102
"dedeploy",
102103
"defaultdb",
103104
"defaultdict",
@@ -131,6 +132,7 @@
131132
"filename",
132133
"filepath",
133134
"filesystem",
135+
"filterset",
134136
"fineuploader",
135137
"firefox",
136138
"Firefox",
@@ -164,6 +166,7 @@
164166
"href",
165167
"html",
166168
"iand",
169+
"icontains",
167170
"idx",
168171
"importfile",
169172
"ImportFile",

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
- name: Install deps
112112
run: |
113113
pip install --upgrade pip
114-
pip install tox==3.14.3
114+
pip install tox==4.20.0
115115
sudo apt update
116116
sudo apt install gdal-bin
117117
- name: Setup config

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ repos:
55
- id: check-added-large-files
66
args: ["--maxkb=2000"]
77
- id: check-ast
8+
- id: check-builtin-literals
89
- id: check-case-conflict
910
- id: check-json
1011
- id: check-merge-conflict
12+
- id: check-toml
1113
- id: check-xml
1214
- id: check-yaml
13-
exclude: .*/templates
1415
- id: debug-statements
1516
- id: end-of-file-fixer
1617
exclude: seed/static/seed/locales/
1718
- id: fix-byte-order-marker
1819
- id: mixed-line-ending
19-
exclude: seed/static/seed/locales/
2020
- id: pretty-format-json
2121
args: ["--autofix", "--no-sort-keys", "--no-ensure-ascii"]
2222
exclude: seed/static/seed/locales/
@@ -29,7 +29,7 @@ repos:
2929
types_or: [yaml, markdown, css, scss]
3030
# https://docs.astral.sh/ruff/integrations/#pre-commit
3131
- repo: https://github.com/astral-sh/ruff-pre-commit
32-
rev: v0.4.1
32+
rev: v0.8.3
3333
hooks:
3434
# Run the linter
3535
- id: ruff

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
# SEED Version 3.2.2
2+
3+
<!-- Release notes generated using configuration in .github/release.yml at 3.2.2-release-prep -->
4+
5+
## What's Changed
6+
### New Features 🎉
7+
* Add button to show or hide all labels by @perryr16 in https://github.com/SEED-platform/seed/pull/4875
8+
* Add transactions template to portfolio summary by @perryr16 in https://github.com/SEED-platform/seed/pull/4891
9+
* Add building groups functionality by @haneslinger in https://github.com/SEED-platform/seed/pull/4899
10+
### Improvements 📈
11+
* Add derived columns to program setup by @haneslinger in https://github.com/SEED-platform/seed/pull/4888
12+
* Fix Default Reports and Analyses by @kflemin in https://github.com/SEED-platform/seed/pull/4887
13+
* Portfolio summary move to backend by @perryr16 in https://github.com/SEED-platform/seed/pull/4885
14+
* Speed up program and property insight pages by @haneslinger in https://github.com/SEED-platform/seed/pull/4890
15+
* Add show all labels description text and translation by @kflemin in https://github.com/SEED-platform/seed/pull/4896
16+
* Update list of possible Audit Template reports in org settings by @kflemin in https://github.com/SEED-platform/seed/pull/4903
17+
### Maintenance 🧹
18+
* Remove obsolete scope 1 emission codes by @anchapin in https://github.com/SEED-platform/seed/pull/4897
19+
* Major dependency update by @axelstudios in https://github.com/SEED-platform/seed/pull/4806
20+
### Bug Fixes 🐛
21+
* Display current access level instance names in default reports by @kflemin in https://github.com/SEED-platform/seed/pull/4882
22+
* Include derived columns in y axis for default reports by @kflemin in https://github.com/SEED-platform/seed/pull/4883
23+
* Change CTS export column name by @haneslinger in https://github.com/SEED-platform/seed/pull/4884
24+
* Fix invalid permission class by @axelstudios in https://github.com/SEED-platform/seed/pull/4894
25+
* Fix notes modal by @haneslinger in https://github.com/SEED-platform/seed/pull/4874
26+
* Fix organization deletion by @crutan in https://github.com/SEED-platform/seed/pull/4851
27+
* Mapping review and line length bug fixes by @axelstudios in https://github.com/SEED-platform/seed/pull/4906
28+
29+
30+
**Full Changelog**: https://github.com/SEED-platform/seed/compare/v3.2.1...v3.2.2
31+
132
# SEED Version 3.2.1
233

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

config/settings/common.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@
223223
CELERY_RESULT_EXPIRES = 86400 # 24 hours
224224
CELERY_TASK_COMPRESSION = "gzip"
225225
CELERY_BEAT_SCHEDULER = "django_celery_beat.schedulers:DatabaseScheduler"
226+
CELERY_BROKER_CONNECTION_RETRY_ON_STARTUP = True
226227

227228
# hmm, we are logging outside the context of the app?
228229
LOG_FILE = os.path.join(BASE_DIR, "../logs/py.log/")

config/settings/docker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def env_var(key, default=None):
5151

5252
for loc in ENV_VARS:
5353
if not locals().get(loc):
54-
raise Exception("%s Not defined as env variables" % loc)
54+
raise Exception(f"{loc} Not defined as env variables")
5555

5656

5757
DEBUG = env_var("Debug", False)

docs/Makefile

Lines changed: 0 additions & 223 deletions
This file was deleted.

0 commit comments

Comments
 (0)