chore: Unpin oidc-provider, update its patch

This commit is contained in:
Jennifer Richards 2023-05-12 16:56:38 -03:00
parent 87fdfaa713
commit 828071a582
No known key found for this signature in database
GPG key ID: 9B2BF5C5ADDA6A6E
2 changed files with 5 additions and 5 deletions

View file

@ -281,7 +281,7 @@ diff -ur oidc_provider.orig/migrations/0021_refresh_token_not_unique.py oidc_pro
diff -ur oidc_provider.orig/models.py oidc_provider/models.py diff -ur oidc_provider.orig/models.py oidc_provider/models.py
--- oidc_provider.orig/models.py 2018-09-14 21:34:52.000000000 +0200 --- oidc_provider.orig/models.py 2018-09-14 21:34:52.000000000 +0200
+++ oidc_provider/models.py 2020-06-07 13:34:26.830716635 +0200 +++ oidc_provider/models.py 2020-06-07 13:34:26.830716635 +0200
@@ -67,8 +67,8 @@ @@ -66,8 +66,8 @@
verbose_name=_(u'Client Type'), verbose_name=_(u'Client Type'),
help_text=_(u'<b>Confidential</b> clients are capable of maintaining the confidentiality' help_text=_(u'<b>Confidential</b> clients are capable of maintaining the confidentiality'
u' of their credentials. <b>Public</b> clients are incapable.')) u' of their credentials. <b>Public</b> clients are incapable.'))
@ -292,7 +292,7 @@ diff -ur oidc_provider.orig/models.py oidc_provider/models.py
response_types = models.ManyToManyField(ResponseType) response_types = models.ManyToManyField(ResponseType)
jwt_alg = models.CharField( jwt_alg = models.CharField(
max_length=10, max_length=10,
@@ -78,15 +78,15 @@ @@ -77,15 +77,15 @@
help_text=_(u'Algorithm used to encode ID Tokens.')) help_text=_(u'Algorithm used to encode ID Tokens.'))
date_created = models.DateField(auto_now_add=True, verbose_name=_(u'Date Created')) date_created = models.DateField(auto_now_add=True, verbose_name=_(u'Date Created'))
website_url = models.CharField( website_url = models.CharField(
@ -311,7 +311,7 @@ diff -ur oidc_provider.orig/models.py oidc_provider/models.py
logo = models.FileField( logo = models.FileField(
blank=True, default='', upload_to='oidc_provider/clients', verbose_name=_(u'Logo Image')) blank=True, default='', upload_to='oidc_provider/clients', verbose_name=_(u'Logo Image'))
reuse_consent = models.BooleanField( reuse_consent = models.BooleanField(
@@ -186,12 +186,12 @@ @@ -185,12 +185,12 @@
user = models.ForeignKey( user = models.ForeignKey(
settings.AUTH_USER_MODEL, verbose_name=_(u'User'), on_delete=models.CASCADE) settings.AUTH_USER_MODEL, verbose_name=_(u'User'), on_delete=models.CASCADE)
@ -328,7 +328,7 @@ diff -ur oidc_provider.orig/models.py oidc_provider/models.py
class Meta: class Meta:
verbose_name = _(u'Authorization Code') verbose_name = _(u'Authorization Code')
@@ -205,8 +205,8 @@ @@ -204,8 +204,8 @@
user = models.ForeignKey( user = models.ForeignKey(
settings.AUTH_USER_MODEL, null=True, verbose_name=_(u'User'), on_delete=models.CASCADE) settings.AUTH_USER_MODEL, null=True, verbose_name=_(u'User'), on_delete=models.CASCADE)

View file

@ -17,7 +17,7 @@ django-csp>=3.7
django-cors-headers>=3.11.0 django-cors-headers>=3.11.0
django-debug-toolbar>=3.2.4 django-debug-toolbar>=3.2.4
django-markup>=1.5 # Limited use - need to reconcile against direct use of markdown django-markup>=1.5 # Limited use - need to reconcile against direct use of markdown
django-oidc-provider>=0.7,<0.8 # 0.8 dropped Django 2 support django-oidc-provider>=0.8 # 0.8 dropped Django 2 support
django-password-strength>=1.2.1 django-password-strength>=1.2.1
django-referrer-policy>=1.0 django-referrer-policy>=1.0
django-simple-history>=3.0.0 django-simple-history>=3.0.0