Skip to content
Snippets Groups Projects
Commit 4ab0ac1c authored by Jenkins for Software Heritage's avatar Jenkins for Software Heritage
Browse files

Merge tag 'debian/0.6.5-1_swh1' into debian/buster-swh

parents f13420d8 d331f7e7
No related branches found
No related tags found
No related merge requests found
Metadata-Version: 2.1
Name: swh.auth
Version: 0.6.4
Version: 0.6.5
Summary: Software Heritage Authentication Utilities
Home-page: https://forge.softwareheritage.org/source/swh-auth/
Author: Software Heritage developers
......
swh-auth (0.6.4-1~swh1~bpo10+1) buster-swh; urgency=medium
swh-auth (0.6.5-1~swh1) unstable-swh; urgency=medium
* Rebuild for buster-swh
* New upstream release 0.6.5 - (tagged by Antoine Lambert
<anlambert@softwareheritage.org> on 2022-07-12 13:17:34 +0200)
* Upstream changes: - version 0.6.5
-- Software Heritage autobuilder (on jenkins-debian1) <jenkins@jenkins-debian1.internal.softwareheritage.org> Mon, 30 May 2022 12:12:33 +0000
-- Software Heritage autobuilder (on jenkins-debian1) <jenkins@jenkins-debian1.internal.softwareheritage.org> Tue, 12 Jul 2022 11:21:09 +0000
swh-auth (0.6.4-1~swh1) unstable-swh; urgency=medium
......
Metadata-Version: 2.1
Name: swh.auth
Version: 0.6.4
Version: 0.6.5
Summary: Software Heritage Authentication Utilities
Home-page: https://forge.softwareheritage.org/source/swh-auth/
Author: Software Heritage developers
......
# Copyright (C) 2020-2021 The Software Heritage developers
# Copyright (C) 2020-2022 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU Affero General Public License version 3, or any later version
# See top-level LICENSE file for more information
......@@ -6,7 +6,6 @@
from typing import Any, Dict, cast
import uuid
from django.conf.urls import url
from django.contrib.auth import authenticate, login, logout
from django.core.cache import cache
from django.http import HttpRequest
......@@ -16,6 +15,7 @@ from django.http.response import (
HttpResponseRedirect,
HttpResponseServerError,
)
from django.urls import re_path as url
from swh.auth.django.models import OIDCUser
from swh.auth.django.utils import keycloak_oidc_client, oidc_profile_cache_key, reverse
......
# Copyright (C) 2021 The Software Heritage developers
# Copyright (C) 2021-2022 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
from django.conf.urls import url
from django.contrib.auth.views import LogoutView
from django.http import HttpResponse
from django.urls import re_path as url
from rest_framework.decorators import api_view
from rest_framework.response import Response
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment