Skip to content

Releases: aspiredu/django-safemigrate

4.3

28 Mar 19:01
1b597b7
Compare
Choose a tag to compare

What's Changed

Full Changelog: 4.2...4.3

4.2

13 Dec 14:44
cac4af8
Compare
Choose a tag to compare
4.2

What's Changed

Full Changelog: 4.1...4.2

4.1

13 Sep 20:02
afb27aa
Compare
Choose a tag to compare
4.1

What's Changed

Full Changelog: 4.0...4.1

4.0

07 Mar 14:51
0cfc434
Compare
Choose a tag to compare
4.0

What's Changed

  • Utilize pre-commit to manage lint and styles. by @tim-schilling in #35
  • Upgrade GitHub test action to use latest action versions. by @tim-schilling in #36
  • Drop support for Python 3.6, 3.7
  • Drop support for Django 3.0, 3.1

Full Changelog: 3.1...4.0

3.1

08 Dec 17:11
Compare
Choose a tag to compare
3.1

Add support for Django 4.0

3.0

07 Oct 16:02
5831d31
Compare
Choose a tag to compare
3.0

Drop support for Django 2

2.1

07 Oct 16:01
Compare
Choose a tag to compare
2.1

Add support for Django 3

2.0

17 Jan 20:23
Compare
Choose a tag to compare
2.0
  • The valid values for safe are:
    • Safe.before_deploy
    • Safe.after_deploy
    • Safe.always
      Import with from django_safemigrate import Safe. True is now Safe.before_deploy, and False is now Safe.after_deploy.
  • The default safety marking, when unspecified, is now Safe.after_deploy, instead of Safe.before_deploy.
  • Safe.always allows for migrations that may be run either before or after deployment, because they don't require any database changes.
  • Multiple dependent Safe.after_deploy migrations do not block deployment as long as there are no dependent Safe.before_deploy migrations.
  • Enforce that any given value of safe is valid.

1.0

17 Jan 20:17
Compare
Choose a tag to compare
1.0
Prepare initial release