Skip to content

Directory to store the internal data used for Codegate

Notifications You must be signed in to change notification settings

stacklok/codegate-data

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Malicious

SELECT 
    name, 
    type, 
    CASE 
        WHEN description = 'security holding package' THEN NULL
        ELSE description 
    END as description
FROM package
INNER JOIN malicious_packages mp ON mp.package_id = package.id
ORDER BY type, name;

Deprecated

SELECT 
    name, 
    type, 
    CASE 
        WHEN description = 'security holding package' THEN NULL
        ELSE description 
    END as description
FROM package WHERE is_deprecated
ORDER BY type, name;

Archived

SELECT 
    package.name, 
    type, 
    CASE 
        WHEN package.description = 'security holding package' THEN NULL
        ELSE package.description 
    END as description
FROM package INNER JOIN repository ON package.repository_id=repository.id AND repository.archived=TRUE
ORDER BY type, name;

About

Directory to store the internal data used for Codegate

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published