Skip to content
Open
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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# during development.

# GAE packages should match the "libraries" section of app.yaml
django==1.2
django==4.2.28

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Align Django bump with App Engine pinning

This change only bumps the pip dependency, but production still forces Django 1.2 via use_library('django', '1.2') in appengine_config.py (lines 11–16), so the vulnerability isn’t actually remediated in the App Engine runtime and local dev will now be running a different Django version than prod. If any dependency (e.g., gae_mini_profiler/gae_bingo mentioned in that same file) relies on Django APIs, the mismatch can cause behavior differences that won’t be caught in local testing. Consider updating the App Engine library pin (or removing it) alongside the requirements bump so runtime and dev stay consistent and the security fix is effective.

Useful? React with 👍 / 👎.

jinja2==2.6
markupsafe==0.15
webapp2==2.3
Expand Down