mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-07-28 18:24:38 -05:00
Chore(deps): Bump the small-changes group across 1 directory with 6 updates (#7502)
* Chore(deps): Bump the small-changes group across 1 directory with 6 updates Bumps the small-changes group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [django-filter](https://github.com/carltongibson/django-filter) | `24.2` | `24.3` | | [django-soft-delete](https://github.com/san4ezy/django_softdelete) | `1.0.13` | `1.0.14` | | [nltk](https://github.com/nltk/nltk) | `3.8.1` | `3.9.1` | | [rapidfuzz](https://github.com/rapidfuzz/RapidFuzz) | `3.9.5` | `3.9.6` | | [watchdog](https://github.com/gorakhargosh/watchdog) | `4.0.1` | `4.0.2` | | [factory-boy](https://github.com/FactoryBoy/factory_boy) | `3.3.0` | `3.3.1` | Updates `django-filter` from 24.2 to 24.3 - [Release notes](https://github.com/carltongibson/django-filter/releases) - [Changelog](https://github.com/carltongibson/django-filter/blob/main/CHANGES.rst) - [Commits](https://github.com/carltongibson/django-filter/compare/24.2...24.3) Updates `django-soft-delete` from 1.0.13 to 1.0.14 - [Commits](https://github.com/san4ezy/django_softdelete/commits) Updates `nltk` from 3.8.1 to 3.9.1 - [Changelog](https://github.com/nltk/nltk/blob/develop/ChangeLog) - [Commits](https://github.com/nltk/nltk/compare/3.8.1...3.9.1) Updates `rapidfuzz` from 3.9.5 to 3.9.6 - [Release notes](https://github.com/rapidfuzz/RapidFuzz/releases) - [Changelog](https://github.com/rapidfuzz/RapidFuzz/blob/main/CHANGELOG.rst) - [Commits](https://github.com/rapidfuzz/RapidFuzz/compare/v3.9.5...v3.9.6) Updates `watchdog` from 4.0.1 to 4.0.2 - [Release notes](https://github.com/gorakhargosh/watchdog/releases) - [Changelog](https://github.com/gorakhargosh/watchdog/blob/master/changelog.rst) - [Commits](https://github.com/gorakhargosh/watchdog/compare/v4.0.1...v4.0.2) Updates `factory-boy` from 3.3.0 to 3.3.1 - [Changelog](https://github.com/FactoryBoy/factory_boy/blob/master/docs/changelog.rst) - [Commits](https://github.com/FactoryBoy/factory_boy/compare/3.3.0...3.3.1) --- updated-dependencies: - dependency-name: django-filter dependency-type: direct:production update-type: version-update:semver-minor dependency-group: small-changes - dependency-name: django-soft-delete dependency-type: direct:production update-type: version-update:semver-patch dependency-group: small-changes - dependency-name: nltk dependency-type: direct:production update-type: version-update:semver-minor dependency-group: small-changes - dependency-name: rapidfuzz dependency-type: direct:production update-type: version-update:semver-patch dependency-group: small-changes - dependency-name: watchdog dependency-type: direct:production update-type: version-update:semver-patch dependency-group: small-changes - dependency-name: factory-boy dependency-type: direct:development update-type: version-update:semver-patch dependency-group: small-changes ... Signed-off-by: dependabot[bot] <support@github.com> * Create 1052_document_transaction_id.py --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
This commit is contained in:
18
src/documents/migrations/1052_document_transaction_id.py
Normal file
18
src/documents/migrations/1052_document_transaction_id.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.2.15 on 2024-08-20 02:41
|
||||
|
||||
from django.db import migrations
|
||||
from django.db import models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("documents", "1051_alter_correspondent_owner_alter_document_owner_and_more"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="document",
|
||||
name="transaction_id",
|
||||
field=models.UUIDField(blank=True, null=True),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user