Skip to content

Commit

Permalink
v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon committed Jul 18, 2024
1 parent 20c55b1 commit bab46d2
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .ambient-package-update/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

METADATA = PackageMetadata(
package_name="django_migration_zero",
module_name="django_migration_zero",
github_package_group="ambient-innovation",
authors=[
PackageAuthor(
name="Ambient Digital",
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.8
rev: v0.5.2
hooks:
# Run the Ruff linter.
- id: ruff
Expand All @@ -12,7 +12,7 @@ repos:
- id: ruff-format

- repo: https://github.com/adamchainz/blacken-docs
rev: 1.16.0
rev: 1.18.0
hooks:
- id: blacken-docs
additional_dependencies:
Expand All @@ -27,7 +27,7 @@ repos:
stages: [ push ]

- repo: https://github.com/adamchainz/django-upgrade
rev: 1.18.0
rev: 1.19.0
hooks:
- id: django-upgrade
args: [--target-version, "4.2"]
Expand Down
6 changes: 4 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# Changelog

* *master* (unreleased)
* *2.2.0* (2024-07-18)
* Use ORM to reset `django_migrations` table
* Lock rows to enable parallel deployments
* Dropped Python 3.8 support
* Added multiple ruff linters
* Added multiple ruff linters and updated packages
* Updated GitHub actions
* Added SECURITY.md
* Internal updates via `ambient-package-update`

* *2.1.0* (2024-07-09)
* Discover apps in nested directories
Expand Down
18 changes: 18 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Reporting Security Issues

The maintainers of this package take security bugs seriously. We appreciate your efforts to responsibly
disclose your findings, and will make every effort to acknowledge your contributions.

To report a security issue, please use the GitHub Security
Advisory ["Report a Vulnerability"](https://github.com/ambient-innovation/django-migration-zero/security/advisories/new)
tab.

The maintainers will send a response indicating the next steps in handling your report. After the initial reply to
your report, the security team will keep you informed of the progress towards a fix and full announcement, and may ask
for additional information or guidance.

Report security bugs in third-party modules to the person or team maintaining the module.

## Source

This file was inspired by: https://github.com/electron/electron/blob/main/SECURITY.md
2 changes: 1 addition & 1 deletion django_migration_zero/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
Holistic implementation of "migration zero" pattern for Django covering local changes and in-production database adjustments.
"""

__version__ = "2.1.0"
__version__ = "2.2.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dev = [
'mistune<2.0.0',
'flit~=3.9',
'keyring~=25.2',
'ambient-package-update~=24.7.6',
'ambient-package-update',
'unittest-parametrize~=1.3',
]

Expand Down

0 comments on commit bab46d2

Please sign in to comment.