diff --git a/@xen-orchestra/lite/CHANGELOG.md b/@xen-orchestra/lite/CHANGELOG.md index 243e7dd1a..55c1ae3af 100644 --- a/@xen-orchestra/lite/CHANGELOG.md +++ b/@xen-orchestra/lite/CHANGELOG.md @@ -1,5 +1,9 @@ # ChangeLog -## **0.0.1** +## **0.2.0** + +- Invalidate sessionId token after logout (PR [#6480](https://github.com/vatesfr/xen-orchestra/pull/6480)) + +## **0.1.0** - Initial implementation diff --git a/@xen-orchestra/lite/src/libs/xen-api.ts b/@xen-orchestra/lite/src/libs/xen-api.ts index c68c79a98..ec4b0333a 100644 --- a/@xen-orchestra/lite/src/libs/xen-api.ts +++ b/@xen-orchestra/lite/src/libs/xen-api.ts @@ -179,6 +179,7 @@ export default class XenApi { } disconnect() { + this.#call("session.logout", [this.#sessionId]); this.stopWatch(); this.#sessionId = undefined; }