This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backport Django 3.2 upgrade in maple release (#3577)
* chore: remove pytest-django-ordering (#3515) * feat: implement create_from_breadcrumbs locally to remove blocker for django-oscar 2.1 upgrade * feat: implement create_from_breadcrumbs locally to avoid management command * test: adding test for create_subcategories method * fix: isort test_utils.py * fix: add test for line that returns early Co-authored-by: Diane Kaplan <[email protected]> * Revert "Revert "build: upgrade crispy forms" (#3550)" This reverts commit efd105b. * Revert "Revert "build: upgrade pytest & pytest-django"" This reverts commit 87d7d4e. * chore: remove karma-jquery plugin from karma and link to jquery directly, to enable upgrades to jquery 3.5 and django-oscar 2.1 (#3565) * fix: remove karma-jquery and use jquery 3.2.1 directly * fix: remove jquery from karma frameworks Co-authored-by: Diane Kaplan <[email protected]> * build(deps): bump jquery from 3.2.1 to 3.5.0 (#3566) Bumps [jquery](https://github.com/jquery/jquery) from 3.2.1 to 3.5.0. - [Release notes](https://github.com/jquery/jquery/releases) - [Commits](jquery/jquery@3.2.1...3.5.0) --- updated-dependencies: - dependency-name: jquery dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore: upgrade oscar-django 2.1 with dependent packages (needed to get to django 3.2) * feat: upgrade Django version to 3.2 * test: In django32 delete with distinct is not working. Applied the alternate solution. * chore: ran django codemods * fix: modify custom user model to avoid large migration on user_auth table * chore: add final django-oscar upgrade migration (#3597) Co-authored-by: Max Sokolski <[email protected]> Co-authored-by: Diane Kaplan <[email protected]> Co-authored-by: Usama Sadiq <[email protected]> Co-authored-by: Diane Kaplan <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Awais Qureshi <[email protected]> Co-authored-by: M. Zulqarnain <[email protected]>
- Loading branch information
1 parent
90a994d
commit 2be41ee
Showing
72 changed files
with
930 additions
and
337 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
ecommerce/extensions/basket/migrations/0014_line_date_updated.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 2.2.24 on 2021-09-22 18:57 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('basket', '0013_auto_20200305_1448'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='line', | ||
name='date_updated', | ||
field=models.DateTimeField(auto_now=True, db_index=True, verbose_name='Date Updated'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.