[PR #313] [MERGED] Update to Django 1.11 LTS #457

Closed
opened 2026-02-26 10:31:34 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/nsupdate-info/nsupdate.info/pull/313
Author: @elnappo
Created: 5/26/2017
Status: Merged
Merged: 1/30/2018
Merged by: @ThomasWaldmann

Base: masterHead: django111


📝 Commits (9)

  • 55f47ff Update to Django 1.11 LTS, fixes #293
  • cbf7027 already something for Django 2.0
  • 81370d1 fix travis
  • 2b5f0e9 update BaseCommand option_list for Django 1.11
  • d50c225 update Travis workflow to always use latest minor version
  • fe1c697 fix pep8, fix argparse
  • a2b8e3d fix register test, view now redirects
  • 262fce4 Update jquery to v3.2.1
  • 6b3d2ff Minor changes and fixes, v0.12 milestone

📊 Changes

24 files changed (+166 additions, -189 deletions)

View changed files

📝 .travis.yml (+7 -7)
📝 nsupdate/accounts/_tests/test_accounts.py (+14 -16)
📝 nsupdate/accounts/models.py (+1 -1)
📝 nsupdate/accounts/templates/accounts/user_settings_account.html (+1 -1)
📝 nsupdate/accounts/urls.py (+1 -3)
📝 nsupdate/accounts/views.py (+1 -1)
📝 nsupdate/api/_tests/test_api.py (+1 -1)
📝 nsupdate/login/templates/login.html (+2 -2)
📝 nsupdate/login/templates/logout.html (+1 -1)
📝 nsupdate/login/urls.py (+13 -12)
📝 nsupdate/main/_tests/test_main.py (+1 -1)
📝 nsupdate/main/models.py (+17 -13)
📝 nsupdate/main/urls.py (+2 -3)
📝 nsupdate/main/views.py (+4 -4)
📝 nsupdate/management/commands/domains.py (+12 -18)
📝 nsupdate/management/commands/faults.py (+49 -62)
📝 nsupdate/management/commands/hosts.py (+11 -15)
📝 nsupdate/management/commands/testuser.py (+3 -3)
📝 nsupdate/settings/base.py (+11 -1)
📝 nsupdate/templates/base.html (+3 -3)

...and 4 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/nsupdate-info/nsupdate.info/pull/313 **Author:** [@elnappo](https://github.com/elnappo) **Created:** 5/26/2017 **Status:** ✅ Merged **Merged:** 1/30/2018 **Merged by:** [@ThomasWaldmann](https://github.com/ThomasWaldmann) **Base:** `master` ← **Head:** `django111` --- ### 📝 Commits (9) - [`55f47ff`](https://github.com/nsupdate-info/nsupdate.info/commit/55f47ff52d432e4b20cf35637209af5f125bc243) Update to Django 1.11 LTS, fixes #293 - [`cbf7027`](https://github.com/nsupdate-info/nsupdate.info/commit/cbf702728730c94e670b8ad4b652d0c7f49408e0) already something for Django 2.0 - [`81370d1`](https://github.com/nsupdate-info/nsupdate.info/commit/81370d15fe7b8a842b128d21c308be576f0df18c) fix travis - [`2b5f0e9`](https://github.com/nsupdate-info/nsupdate.info/commit/2b5f0e9f05a47746ca89830fd44346d6263a5c81) update BaseCommand option_list for Django 1.11 - [`d50c225`](https://github.com/nsupdate-info/nsupdate.info/commit/d50c225eab67c0189b53e95637e7b97e1e887d32) update Travis workflow to always use latest minor version - [`fe1c697`](https://github.com/nsupdate-info/nsupdate.info/commit/fe1c697631954cf131173d0cb16a82eebe282f1c) fix pep8, fix argparse - [`a2b8e3d`](https://github.com/nsupdate-info/nsupdate.info/commit/a2b8e3da9d1003721e123bd362ef1ccb036542ff) fix register test, view now redirects - [`262fce4`](https://github.com/nsupdate-info/nsupdate.info/commit/262fce4476c14ceb90ad04959f75b5c033bfec22) Update jquery to v3.2.1 - [`6b3d2ff`](https://github.com/nsupdate-info/nsupdate.info/commit/6b3d2ffbd87b02c4d80df5405dc60fa8ecd86dce) Minor changes and fixes, v0.12 milestone ### 📊 Changes **24 files changed** (+166 additions, -189 deletions) <details> <summary>View changed files</summary> 📝 `.travis.yml` (+7 -7) 📝 `nsupdate/accounts/_tests/test_accounts.py` (+14 -16) 📝 `nsupdate/accounts/models.py` (+1 -1) 📝 `nsupdate/accounts/templates/accounts/user_settings_account.html` (+1 -1) 📝 `nsupdate/accounts/urls.py` (+1 -3) 📝 `nsupdate/accounts/views.py` (+1 -1) 📝 `nsupdate/api/_tests/test_api.py` (+1 -1) 📝 `nsupdate/login/templates/login.html` (+2 -2) 📝 `nsupdate/login/templates/logout.html` (+1 -1) 📝 `nsupdate/login/urls.py` (+13 -12) 📝 `nsupdate/main/_tests/test_main.py` (+1 -1) 📝 `nsupdate/main/models.py` (+17 -13) 📝 `nsupdate/main/urls.py` (+2 -3) 📝 `nsupdate/main/views.py` (+4 -4) 📝 `nsupdate/management/commands/domains.py` (+12 -18) 📝 `nsupdate/management/commands/faults.py` (+49 -62) 📝 `nsupdate/management/commands/hosts.py` (+11 -15) 📝 `nsupdate/management/commands/testuser.py` (+3 -3) 📝 `nsupdate/settings/base.py` (+11 -1) 📝 `nsupdate/templates/base.html` (+3 -3) _...and 4 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 10:31:34 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/nsupdate.info-nsupdate-info#457
No description provided.