Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

better documentation of Git-sourced fields when parsing #176

Open
MangoIV opened this issue Mar 29, 2024 · 12 comments
Open

better documentation of Git-sourced fields when parsing #176

MangoIV opened this issue Mar 29, 2024 · 12 comments

Comments

@MangoIV
Copy link
Contributor

MangoIV commented Mar 29, 2024

The fact we use the Git history to deduce the published and modified date fields is
non-obvious and can confuse users, because parsing our advisory content will fail if
they are divorced from the Git repo. We should improve the documentation about this.

original summary retained below


Summary

  • remove an advisory
  • toml parsing fails

Expected behavior

  • toml parsing works on some bag of advisories, there shouldn't have to be any constraints on them

Cause of the bug

@MangoIV MangoIV changed the title toml parsing fails if not all advisories are consecutive toml parsing fails if you remove one of the advisories Mar 29, 2024
@MangoIV
Copy link
Contributor Author

MangoIV commented Mar 29, 2024

yeah I have no idea of where this is coming from; the toml parser also fails if I just 1;1 copy the advisories to some empty directories.

@MangoIV
Copy link
Contributor Author

MangoIV commented Mar 29, 2024

ListAdvisoryValidationError
    "/nix/store/99blf5rfm6rp0sr18168xclkw1gnr47y-empty-dir-with-advisories"
    [ AdvisoryError
        [ MatchMessage
            { matchAnn = Nothing
            , matchPath = []
            , matchMessage =
                "missing mandatory key: advisory.date"
            }
        ]
        "missing mandatory key: advisory.date in <top-level>\n"
    , AdvisoryError
        [ MatchMessage
            { matchAnn = Nothing
            , matchPath = []
            , matchMessage =
                "missing mandatory key: advisory.date"
            }
        ]
        "missing mandatory key: advisory.date in <top-level>\n"
    , AdvisoryError
        [ MatchMessage
            { matchAnn = Nothing
            , matchPath = []
            , matchMessage =
                "missing mandatory key: advisory.date"
            }
        ]
        "missing mandatory key: advisory.date in <top-level>\n"
    , AdvisoryError
        [ MatchMessage
            { matchAnn = Nothing
            , matchPath = []
            , matchMessage =
                "missing mandatory key: advisory.date"
            }
        ]
        "missing mandatory key: advisory.date in <top-level>\n"
    , AdvisoryError
        [ MatchMessage
            { matchAnn = Nothing
            , matchPath = []
            , matchMessage =
                "missing mandatory key: advisory.date"
            }
        ]
        "missing mandatory key: advisory.date in <top-level>\n"
    , AdvisoryError
        [ MatchMessage
            { matchAnn = Nothing
            , matchPath = []
            , matchMessage =
                "missing mandatory key: advisory.date"
            }
        ]
        "missing mandatory key: advisory.date in <top-level>\n"
    , AdvisoryError
        [ MatchMessage
            { matchAnn = Nothing
            , matchPath = []
            , matchMessage =
                "missing mandatory key: advisory.date"
            }
        ]
        "missing mandatory key: advisory.date in <top-level>\n"
    , AdvisoryError
        [ MatchMessage
            { matchAnn = Nothing
            , matchPath = []
            , matchMessage =
                "missing mandatory key: advisory.date"
            }
        ]
        "missing mandatory key: advisory.date in <top-level>\n"
    , AdvisoryError
        [ MatchMessage
            { matchAnn = Nothing
            , matchPath = []
            , matchMessage =
                "missing mandatory key: advisory.date"
            }
        ]
        "missing mandatory key: advisory.date in <top-level>\n"
    , AdvisoryError
        [ MatchMessage
            { matchAnn = Nothing
            , matchPath = []
            , matchMessage =
                "missing mandatory key: advisory.date"
            }
        ]
        "missing mandatory key: advisory.date in <top-level>\n"
    , AdvisoryError
        [ MatchMessage
            { matchAnn = Nothing
            , matchPath = []
            , matchMessage =
                "missing mandatory key: advisory.date"
            }
        ]
        "missing mandatory key: advisory.date in <top-level>\n"
    , AdvisoryError
        [ MatchMessage
            { matchAnn = Nothing
            , matchPath = []
            , matchMessage =
                "missing mandatory key: advisory.date"
            }
        ]
        "missing mandatory key: advisory.date in <top-level>\n"
    , AdvisoryError
        [ MatchMessage
            { matchAnn = Nothing
            , matchPath = []
            , matchMessage =
                "missing mandatory key: advisory.date"
            }
        ]
        "missing mandatory key: advisory.date in <top-level>\n"
    , AdvisoryError
        [ MatchMessage
            { matchAnn = Nothing
            , matchPath = []
            , matchMessage =
                "missing mandatory key: advisory.date"
            }
        ]
        "missing mandatory key: advisory.date in <top-level>\n"
    , AdvisoryError
        [ MatchMessage
            { matchAnn = Nothing
            , matchPath = []
            , matchMessage =
                "missing mandatory key: advisory.date"
            }
        ]
        "missing mandatory key: advisory.date in <top-level>\n"
    , AdvisoryError
        [ MatchMessage
            { matchAnn = Nothing
            , matchPath = []
            , matchMessage =
                "missing mandatory key: advisory.date"
            }
        ]
        "missing mandatory key: advisory.date in <top-level>\n"
    , AdvisoryError
        [ MatchMessage
            { matchAnn = Nothing
            , matchPath = []
            , matchMessage =
                "missing mandatory key: advisory.date"
            }
        ]
        "missing mandatory key: advisory.date in <top-level>\n"
    ]

@MangoIV
Copy link
Contributor Author

MangoIV commented Mar 29, 2024

is it possible that this has to do something with .git? this is the only way I could explain how just copying it to the store would break it.

@frasertweedale
Copy link
Collaborator

We use the git history to deduce the date and modified data. Advisory files that are not in a git repo need to include those fields explicitly.

@frasertweedale
Copy link
Collaborator

I can't reproduce the issue as described in the summary (remove one advisory). I deduce that this all
occurred outside a git repo, which is the actual cause (and expected behaviour).

FWIW, we will soon work on an index/archive format of some kind (#170) for efficient distribution of advisories, and which
will allow them to be divorced from the git repo without losing metadata. In it's simplest form, this could be a
re-rendering of the advisories with the derived date fields present in the TOML.

@MangoIV
Copy link
Contributor Author

MangoIV commented Mar 29, 2024

Ahhh makes sense yes. Thank you!

@MangoIV
Copy link
Contributor Author

MangoIV commented Mar 30, 2024

FWIW, we will soon work on an index/archive format of some kind (#170) for efficient distribution of advisories, and which
will allow them to be divorced from the git repo without losing metadata. In it's simplest form, this could be a
re-rendering of the advisories with the derived date fields present in the TOML.

I think that's a good idea; fwiw if you provided not-only a toml parser but also pretty-printer, that should be really easy to do ;)

@frasertweedale
Copy link
Collaborator

Cheers, I'm going to leave this issue open as a reminder to improve the documentation about this implementation detail.

@frasertweedale frasertweedale changed the title toml parsing fails if you remove one of the advisories better documentation of Git-sourced fields when parsing Mar 30, 2024
@MangoIV
Copy link
Contributor Author

MangoIV commented Mar 30, 2024

thank you <3

@MangoIV
Copy link
Contributor Author

MangoIV commented Mar 31, 2024

osv seems to be appropriate

@MangoIV
Copy link
Contributor Author

MangoIV commented Mar 31, 2024

I guess as a jsonl

@MangoIV
Copy link
Contributor Author

MangoIV commented May 31, 2024

without any code changes, this started breaking downstream @frasertweedale https://github.com/MangoIV/cabal-audit/actions/runs/9102576510/job/25656820603 I don't know what is wrong, I can use cabal-audit as usual locally, it only fails in the github runner now. I don't know what the issues is there.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants