You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 26, 2026. It is now read-only.
* Fix example_setup with docker
* xml validation local_metadata in form
* refresh metadata on changed field content
* update version number for fix release
* select_related in admin
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,6 @@
1
1
# Changelog
2
2
3
-
## [0.7.0] - 2020-04-xx
4
-
5
-
*In development, *
3
+
## [0.7.2] - 2020-04-14
6
4
7
5
Many thanks for major contributions (especially on the testing front where the project was lacking) from [Amertz08](https://github.com/Amertz08) and [askvortsov1](https://github.com/askvortsov1)
8
6
@@ -12,7 +10,7 @@ Many thanks for major contributions (especially on the testing front where the p
12
10
- Django 3.0 is added to the tests matrix. We currently are doing Python 3.6, 3.7, 3.8 and Django 2.2, 3.0.
13
11
14
12
### Removed
15
-
- Python 3.5
13
+
-Dropped Python 3.5.
16
14
- Django 2.0 and 2.1 as they are no longer officially supported Django versions.
('remote_metadata_url', models.CharField(blank=True, help_text='If set, metadata will be fetched upon saving into the local metadata xml field, and automatically be refreshed after the expiration timestamp.', max_length=512, verbose_name='Remote metadata URL')),
Copy file name to clipboardExpand all lines: djangosaml2idp/models.py
+17-3Lines changed: 17 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -51,11 +51,25 @@ class ServiceProvider(models.Model):
51
51
remote_metadata_url=models.CharField(verbose_name='Remote metadata URL', max_length=512, blank=True, help_text='If set, metadata will be fetched upon saving into the local metadata xml field, and automatically be refreshed after the expiration timestamp.')
52
52
local_metadata=models.TextField(verbose_name='Local Metadata XML', blank=True, help_text='XML containing the metadata')
0 commit comments