OIDC jwks endpoint do not return empty kid claim

This commit is contained in:
Éloi Rivard 2023-08-26 19:59:44 +02:00
parent 823bba35b4
commit 21ea0238b5
No known key found for this signature in database
GPG key ID: 7EDA204EA57DD184
3 changed files with 5 additions and 2 deletions

View file

@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
The format is based on `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_,
and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_.
Fixed
*****
- OIDC jwks endpoint do not return empty kid claim
[0.0.33] - 2023-08-26
=====================

View file

@ -242,7 +242,6 @@ def jwks():
{
"keys": [
{
"kid": None,
"use": "sig",
"alg": alg,
**jwk,

View file

@ -9,7 +9,6 @@ def test_jwks(testclient, keypair):
assert res.json == {
"keys": [
{
"kid": None,
"use": "sig",
"alg": "RS256",
**jwk,