forked from Github-Mirrors/canaille
OIDC jwks endpoint do not return empty kid claim
This commit is contained in:
parent
823bba35b4
commit
21ea0238b5
3 changed files with 5 additions and 2 deletions
|
@ -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
|
||||
=====================
|
||||
|
||||
|
|
|
@ -242,7 +242,6 @@ def jwks():
|
|||
{
|
||||
"keys": [
|
||||
{
|
||||
"kid": None,
|
||||
"use": "sig",
|
||||
"alg": alg,
|
||||
**jwk,
|
||||
|
|
|
@ -9,7 +9,6 @@ def test_jwks(testclient, keypair):
|
|||
assert res.json == {
|
||||
"keys": [
|
||||
{
|
||||
"kid": None,
|
||||
"use": "sig",
|
||||
"alg": "RS256",
|
||||
**jwk,
|
||||
|
|
Loading…
Reference in a new issue