Skip to content

Commit

Permalink
Revert change to name field in PackageURLMixin #73
Browse files Browse the repository at this point in the history
Signed-off-by: Jono Yang <[email protected]>
  • Loading branch information
JonoYang committed Feb 11, 2022
1 parent 99bd8d2 commit 4423a40
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ Changelog
------------------

- Do not create a generic PackageURL for URLs without a path in url2purl #72
- Increase the name field size for packageurl.contrib.django.models.PackageURLMixin to 255 #73
- Use project name as the Package name when creating generic sourceforge PackageURLs #74
- Update PyPI route pattern in url2purl to handle different file name formats #76
- Create generic PackageURL for code.google.com archive URLs #78
Expand Down
2 changes: 1 addition & 1 deletion src/packageurl/contrib/django/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class PackageURLMixin(models.Model):
)

name = models.CharField(
max_length=255,
max_length=100,
blank=True,
help_text=_('Name of the package.'),
)
Expand Down

0 comments on commit 4423a40

Please sign in to comment.