Closed 5parkp1ug closed 2 years ago
Can anyone merge this PR? Or else update if there are any suggestions?
Thank you for your contribution. Will make sure that we'll release a new version ASAP.
Thank you for your contribution. Will make sure that we'll release a new version ASAP.
Any updates on when this can be released?
Oh, I'm sorry, I'll block a timeslot in my calendar to push forward on this.
Release v1.12 is on its way.
Release v1.12 is on its way.
Hey!! Was there any problem with the release? As I can see, it's not pushed to pypi
Context
Django earlier used to create id field using
django.db.fields.AutoField
which got replaced withdjango.db.fields.BigAutoField
. So, when we runmakemigrations
command a new migration file is created for the django-recurrence app with the changes to id field. This migration should be shipped by default with the package.Also, when the missing migration is created in a docker environment, permission issues are raised. This happens when pip install is done as root user and later a non-root user runs the application. Below is the snippet from the dockerfile which causes the issue -
When migration is run using the above docker configuration the user
user
does not have privileges to create new migration file as the environment is owned by the root user.Changes
Added the new migration file.