gocsaf / csaf

Tools to download or provide CSAF (Common Security Advisory Framework) documents.
https://csaf.io
40 stars 23 forks source link

datetime format inconsistent in json files #173

Closed bernhardreiter closed 2 years ago

bernhardreiter commented 2 years ago

A freshly run provider and aggregator write inconsistent datetime parameters (~v0.9.1), see examples

https://localhost:9443/.well-known/csaf-aggregator/aggregator.json

     "metadata": {
        "last_updated": "2022-06-09T10:52:03Z",
   }
  ],
  "last_updated": "2022-06-09T12:55:16+02:00"
}

https://localhost:8443/.well-known/csaf/white/csaf-feed-tlp-white.json

 "updated": "2022-06-09T16:40:27+02:00",
   "entry": [
      {

        "published": "2022-03-17T13:03:42Z",
        "updated": "2022-03-17T13:03:42Z",
"updated": "2022-03-17T13:03:42Z",

Expectation: should always be the UTC variant.

Fadiabb commented 2 years ago

Fixed with 714814a. Close here.