lovasoa
2025-12-07 13:52:55 +01:00
parent 7531921e67
commit 6c35de7cdc
3 changed files with 6 additions and 5 deletions
+1
View File
@@ -3,6 +3,7 @@
## 0.41.0
- **New Function**: `sqlpage.oidc_logout_url(redirect_uri)` - Generates a secure logout URL for OIDC-authenticated users with support for [RP-Initiated Logout](https://openid.net/specs/openid-connect-rpinitiated-1_0.html#RPLogout)
- Fix compatibility with Auth0 for OpenID-Connect authentification. See https://github.com/ramosbugs/openidconnect-rs/issues/23
- updated sql parser: https://github.com/apache/datafusion-sqlparser-rs/blob/main/changelog/0.60.0.md
## 0.40.0 (2025-11-28)
- OIDC login redirects now use HTTP 303 responses so POST submissions are converted to safe GET requests before reaching the identity provider, fixing incorrect reuse of the original POST (HTTP 307) that could break standard auth flows.
Generated
+4 -4
View File
@@ -4211,9 +4211,9 @@ dependencies = [
[[package]]
name = "sqlparser"
version = "0.59.0"
version = "0.60.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4591acadbcf52f0af60eafbb2c003232b2b4cd8de5f0e9437cb8b1b59046cc0f"
checksum = "505aa16b045c4c1375bf5f125cce3813d0176325bfe9ffc4a903f423de7774ff"
dependencies = [
"log",
"sqlparser_derive",
@@ -4221,9 +4221,9 @@ dependencies = [
[[package]]
name = "sqlparser_derive"
version = "0.3.0"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da5fc6819faabb412da764b99d3b713bb55083c11e7e0c00144d386cd6a1939c"
checksum = "028e551d5e270b31b9f3ea271778d9d827148d4287a5d96167b6bb9787f5cc38"
dependencies = [
"proc-macro2",
"quote",
+1 -1
View File
@@ -50,7 +50,7 @@ serde_json = { version = "1.0.82", features = [
"arbitrary_precision",
] }
lambda-web = { version = "0.2.1", features = ["actix4"], optional = true }
sqlparser = { version = "0.59.0", default-features = false, features = [
sqlparser = { version = "0.60.0", default-features = false, features = [
"std",
"visitor",
] }