GraphQL: staging - Deploy version v0.0.93
Create a new GraphQL staging release. Tag created: v0.0.93
Major changes:
- Add user sign in against swh.auth from the explorer
- New default query
config changes:
- New public_server attribute inside the auth config entry and it should be same as the value of server
eg
auth:
server: https://auth.softwareheritage.org/auth/
** public_server: https://auth.softwareheritage.org/auth/**
realm: SoftwareHeritageStaging
client: swh-web
Plan:
-
Create app-image [1] -
swh/infra/ci-cd/swh-charts!41 (merged): swh-chart: Adapt configmap with the optional configuration key -
swh-chart: Reference new version -
Deploy -
Checks
[1] https://jenkins.softwareheritage.org/job/swh-apps/job/build-docker-image/58/console
[2] https://webapp.staging.swh.network/graphql/
query FindCodeMeta {
directoryEntry(
directorySWHID: "swh:1:dir:ec88e5b901c034d5a91aa133e824d65cff3788a3"
path: "codemeta.json"
) {
name {
text
}
target {
node {
... on Content {
data {
url
}
}
}
}
}
}
replied:
{
"data": {
"directoryEntry": {
"name": {
"text": "codemeta.json"
},
"target": {
"node": {
"data": {
"url": "https://archive.softwareheritage.org/api/1/content/sha1:597c3ef82ef332a4fb60f59010b87ec7f60b5d3e/raw/"
}
}
}
}
}
}
Edited by Antoine R. Dumont