cdx-proto
    Preparing search index...

    Enumeration PatchClassification

    from enum cyclonedx.v1_6.PatchClassification

    Index

    Enumeration Members

    BACKPORT: 3

    A patch which takes code from a newer version of software and applies it to older versions of the same software. Refer to https://en.wikipedia.org/wiki/Backporting

    from enum value: PATCH_CLASSIFICATION_BACKPORT = 3;

    CHERRY_PICK: 4

    A patch created by selectively applying commits from other versions or branches of the same software.

    from enum value: PATCH_CLASSIFICATION_CHERRY_PICK = 4;

    MONKEY: 2

    A patch which dynamically modifies runtime behavior. Refer to https://en.wikipedia.org/wiki/Monkey_patch

    from enum value: PATCH_CLASSIFICATION_MONKEY = 2;

    NULL: 0

    buf:lint:ignore ENUM_ZERO_VALUE_SUFFIX -- null is our fallback, doubling unspecified

    from enum value: PATCH_CLASSIFICATION_NULL = 0;

    UNOFFICIAL: 1

    A patch which is not developed by the creators or maintainers of the software being patched. Refer to https://en.wikipedia.org/wiki/Unofficial_patch

    from enum value: PATCH_CLASSIFICATION_UNOFFICIAL = 1;