Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix/3.13.2 #681

Merged
merged 4 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
- run: npm ci
- run: npm run test:unit
- uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
flags: javascript

Expand Down Expand Up @@ -87,6 +89,8 @@ jobs:

- name: Upload test coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
flags: python

Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@
CHANGELOG
=========

3.13.2
------
- Add `INCLUDE_ANALYTICS` to template context so Plausible analytics can be enabled

3.13.1
----
------
- Add support for Plausible analytics
- Update admin login template to correctly include pucas styles and adjust spacing

Expand Down
2 changes: 1 addition & 1 deletion ppa/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version_info__ = (3, 13, 1, None)
__version_info__ = (3, 13, 2, None)


# Dot-connect all but the last. Last is dash-connected if not None.
Expand Down
1 change: 1 addition & 0 deletions ppa/context_processors.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ def template_globals(request):
"SHOW_TEST_WARNING": getattr(settings, "SHOW_TEST_WARNING", False),
"site": Site.objects.get_current(),
"GTAGS_ANALYTICS_ID": getattr(settings, "GTAGS_ANALYTICS_ID", False),
"INCLUDE_ANALYTICS": getattr(settings, "INCLUDE_ANALYTICS", False),
"PLAUSIBLE_ANALYTICS_SCRIPT": getattr(settings, "PLAUSIBLE_ANALYTICS_SCRIPT", False),
"PLAUSIBLE_ANALYTICS_404s": getattr(settings, "PLAUSIBLE_ANALYTICS_404s", False),
}
Expand Down
Loading