Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

xeauth

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xeauth - npm Package Compare versions

Comparing version
0.2.2
to
0.2.3
+1
-1
PKG-INFO
Metadata-Version: 2.1
Name: xeauth
Version: 0.2.2
Version: 0.2.3
Summary: Top-level package for xeauth.

@@ -5,0 +5,0 @@ Home-page: https://github.com/jmosbacher/xeauth

[tool]
[tool.poetry]
name = "xeauth"
version = "0.2.2"
version = "0.2.3"
homepage = "https://github.com/jmosbacher/xeauth"

@@ -6,0 +6,0 @@ description = "Top-level package for xeauth."

@@ -24,3 +24,3 @@ # -*- coding: utf-8 -*-

'name': 'xeauth',
'version': '0.2.2',
'version': '0.2.3',
'description': 'Top-level package for xeauth.',

@@ -27,0 +27,0 @@ 'long_description': '======\nxeauth\n======\n\n\n.. image:: https://img.shields.io/pypi/v/xeauth.svg\n :target: https://pypi.python.org/pypi/xeauth\n\n.. image:: https://img.shields.io/travis/jmosbacher/xeauth.svg\n :target: https://travis-ci.com/jmosbacher/xeauth\n\n.. image:: https://readthedocs.org/projects/xeauth/badge/?version=latest\n :target: https://xeauth.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n\n\n\nAuthentication client for the Xenon edark matter experiment.\n\n\n* Free software: MIT\n* Documentation: https://xeauth.readthedocs.io.\n\n\nFeatures\n--------\n\n* TODO\n\nCredits\n-------\n\nThis package was created with Cookiecutter_ and the `briggySmalls/cookiecutter-pypackage`_ project template.\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`briggySmalls/cookiecutter-pypackage`: https://github.com/briggySmalls/cookiecutter-pypackage\n',

@@ -11,2 +11,2 @@ """Top-level package for xeauth."""

__email__ = "joe.mosbacher@gmail.com"
__version__ = "0.2.2"
__version__ = "0.2.3"

@@ -16,3 +16,3 @@ from xeauth.settings import config

_SCOPE = " ".join(["read:org", "read:user", "read:public_key", "user:email", "read:gpg_key"])
_SCOPE = ["read:org", "read:user", "read:public_key", "user:email", "read:gpg_key"]

@@ -23,1 +23,2 @@ def _on_auth(self, user_info, access_token, refresh_token=None):

raise HTTPError(500, f"Github authentication failed. You are not a member of the XENONnT organization.")
return super()._on_auth(user_info, access_token, refresh_token)