Skip to content

Commit

Permalink
Updates for Django 4.1.6, and minors in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
bjarnoldus committed Feb 5, 2023
1 parent f50c961 commit 8d113f5
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,8 @@ folder.
Remove the contents of `/srv/www`.

```bash
rm /srv/www
cd /srv/www
rm -rf ./bounca
```

Get the newest BounCA release from [the packages repo](https://gitlab.com/bounca/bounca/-/packages).
Expand Down
6 changes: 5 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Change Log
The BounCA change history

## Develop
## [0.4.1] - Release 2022-02-14
* Added migration for Django 4.1.6
* Update Readme

## [0.4.0] - Release 2022-02-14
* Added support for generating code signing certificates
* Added Serial and Fingerprint to certificate table, including search
* Added preset expire dates when creating certificates
Expand Down
1 change: 1 addition & 0 deletions docs/source/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ Remove the contents of ``/srv/www``.
.. code-block:: none
rm /srv/www
rm -rf ./bounca
Get the newest BounCA release from [the packages repo](https://gitlab.com/bounca/bounca/-/packages).
Expand Down
27 changes: 27 additions & 0 deletions x509_pki/migrations/0005_alter_certificate_crl_distribution_url.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Generated by Django 4.1.5 on 2023-02-05 14:38

import django.core.validators
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("x509_pki", "0004_alter_certificate_type"),
]

operations = [
migrations.AlterField(
model_name="certificate",
name="crl_distribution_url",
field=models.URLField(
blank=True,
help_text="Base URL for certificate revocation list (CRL)",
null=True,
validators=[
django.core.validators.RegexValidator("[^\\/]\\.crl$", "CRL url should end with <filename>.crl")
],
verbose_name="CRL distribution url",
),
),
]

0 comments on commit 8d113f5

Please sign in to comment.