[pbs-devel] [PATCH pve-rs] depend on proxmox-openid 0.7.0, bump version to 0.3.0
Dietmar Maurer
dietmar at proxmox.com
Fri Aug 6 09:17:04 CEST 2021
---
Cargo.toml | 2 +-
debian/changelog | 8 ++++++++
src/openid/mod.rs | 2 +-
3 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
index 736bc49..ef8c27c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -20,5 +20,5 @@ anyhow = "1.0"
proxmox = { version = "0.12.1", default-features = false }
perlmod = { version = "0.5.2", features = [ "exporter" ] }
proxmox-apt = "0.6.0"
-proxmox-openid = "0.6.1"
+proxmox-openid = "0.7.0"
serde = "1.0"
diff --git a/debian/changelog b/debian/changelog
index b247a35..33ab4a6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+libpve-rs-perl (0.3.0) bullseye; urgency=medium
+
+ * depend on proxmox-openid 0.7.0 (support prompt an d scopes)
+
+ * openid: use new verify_authorization_code_simple() to return all claims
+
+ -- Proxmox Support Team <support at proxmox.com> Fri, 06 Aug 2021 08:48:59 +0200
+
libpve-rs-perl (0.2.3) bullseye; urgency=medium
* use newer dependencies for apt to improve repo+suite handling
diff --git a/src/openid/mod.rs b/src/openid/mod.rs
index febe927..aa31f9c 100644
--- a/src/openid/mod.rs
+++ b/src/openid/mod.rs
@@ -81,7 +81,7 @@ mod export {
) -> Result<Value, Error> {
let open_id = this.inner.lock().unwrap();
- let claims = open_id.verify_authorization_code(code, &private_auth_state)?;
+ let claims = open_id.verify_authorization_code_simple(code, &private_auth_state)?;
Ok(to_value(&claims)?)
}
--
2.30.2
More information about the pbs-devel
mailing list