Dependicus API Reference
    Preparing search index...

    Interface VersionContext

    Context passed to getLinearIssueSpec for each outdated dependency version. The plugin uses this to decide what kind of issue (if any) to create.

    interface VersionContext {
        currentVersion: string;
        ecosystem: string;
        latestVersion: string;
        name: string;
    }
    Index

    Properties

    currentVersion: string

    Currently installed version.

    ecosystem: string

    Ecosystem identifier (e.g. "npm", "go").

    latestVersion: string

    Latest version available on the registry.

    name: string

    Dependency name (e.g. "react").