Stream: IG creation
Topic: Publisher Version warning
Jean Duteau (Nov 18 2021 at 17:28):
Since IG Pub v1.1.86, the publisher version warning is borked:
IG Publisher Version: v1.1.86, which is out of date. The current version is v?pub-ver-1?
Vassil Peytchev (Nov 18 2021 at 17:40):
1.1.86 is the latest published version. Are you hitting an edge case, when a new version is about to be released, but the process is in progress? FWIW, I just got this:
FHIR IG Publisher Version 1.1.86 (Git# 02f125f89dcf). Built 2021-11-14T21:29:09.706Z (3 days old)
Jean Duteau (Nov 18 2021 at 18:04):
this is the warning that is found in the output/qa.html page. I know that 1.1.86 is the latest. but whatever code is being used to check for QA is not working
David Pyke (Nov 18 2021 at 18:18):
It's working for me
Grahame Grieve (Nov 18 2021 at 18:23):
@Jean Duteau the relevant java code is
try {
// This calls the GitHub api, to fetch the info on the latest release. As part of our release process, we name
// all tagged releases as the version number. ex: "1.1.2".
// This value can be grabbed from the "tag_name" field, or the "name" field of the returned JSON.
JsonObject json = JsonTrackingParser.fetchJson("https://api.github.com/repos/HL7/fhir-ig-publisher/releases/latest");
currVer = json.getAsJsonObject().get("name").getAsString();
} catch (IOException e) {
currVer = "?pub-ver-1?";
}
Jean Duteau (Nov 18 2021 at 19:07):
hmm, when i do a curl on that url, the name is 1.1.86. but this weird error is happening on a couple of my guides.
David Pyke (Nov 18 2021 at 19:40):
Perhaps your internet is unstable?
Jean Duteau (Nov 18 2021 at 19:40):
how dare you insult my internet! :heart_kiss: i'm just ignoring it for now, but I thought I'd raise it if others were seeing it
Vassil Peytchev (Nov 18 2021 at 20:50):
1.1.87 is out, you should try it...
Last updated: Apr 12 2022 at 19:14 UTC