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

yasoo

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yasoo - npm Package Compare versions

Comparing version
0.12.1
to
0.12.2
+1
-1
PKG-INFO
Metadata-Version: 2.1
Name: yasoo
Version: 0.12.1
Version: 0.12.2
Summary: Yet another serializer of objects

@@ -5,0 +5,0 @@ Home-page: https://github.com/drorvinkler/yasoo

@@ -9,3 +9,3 @@ import setuptools

name="yasoo",
version="0.12.1",
version="0.12.2",
author="Dror A. Vinkler",

@@ -12,0 +12,0 @@ description="Yet another serializer of objects",

Metadata-Version: 2.1
Name: yasoo
Version: 0.12.1
Version: 0.12.2
Summary: Yet another serializer of objects

@@ -5,0 +5,0 @@ Home-page: https://github.com/drorvinkler/yasoo

@@ -172,2 +172,7 @@ import json

real_type, generic_args = normalize_type(obj_type, all_globals)
if external_globals and isinstance(real_type, type):
bases = {real_type}
while bases:
all_globals.update((b.__name__, b) for b in bases)
bases = {ancestor for b in bases for ancestor in b.__bases__}

@@ -174,0 +179,0 @@ if not ignore_custom_deserializer: