Changes between Initial Version and Version 1 of Ticket #33899
- Timestamp:
- Aug 5, 2022, 9:24:11 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33899 – Description
initial v1 1 1 == Description 2 2 3 I encountered the following error with django 4.1 in my Gitlab CI/CD Pipeline. When I bumped django versions from 4.0.7 to 4.1. my pipeline broke during the testing stage; specifically during db migrations. I have not changed theany other source code.3 I encountered the following error with django 4.1 in my Gitlab CI/CD Pipeline. When I bumped django versions from 4.0.7 to 4.1. my pipeline broke during the testing stage; specifically during db migrations. I have not changed any other source code. 4 4 5 5 == Steps to reproduce 6 6 7 Minimal example attached. Run `make green` to see that it works with 4.0.7, run `make red` to see that it does not work with 4.1. 7 Minimal example attached. Run `make green` to see that it works with 4.0.7, run `make red` to see that it does not work with 4.1. It will build and exercise a docker container which installs all dependencies in isolation and sets up an example django app and run migrations. 8 8 9 9 Manual steps: … … 20 20 21 21 The migration should fail. 22