Skip to content

Releases: smartive/zitadel-rust

v5.5.1

22 Jan 00:40
be389ca
Compare
Choose a tag to compare

5.5.1 (2025-01-22)

Bug Fixes

  • deps: update rust crate axum-extra to 0.11.0 (#587) (be389ca)

v5.5.0

15 Jan 21:40
2956242
Compare
Choose a tag to compare

5.5.0 (2025-01-15)

Features

  • allow Application::load_from_file to accept paths (#583) (2956242)

v5.4.0

15 Jan 21:23
de1c389
Compare
Choose a tag to compare

5.4.0 (2025-01-15)

Features

  • log error responses returned by Zitadel (#584) (de1c389)

v5.3.3

15 Jan 21:13
e550ba3
Compare
Choose a tag to compare

5.3.3 (2025-01-15)

Bug Fixes

v5.3.2

13 Nov 00:24
230a4a4
Compare
Choose a tag to compare

5.3.2 (2024-11-13)

Bug Fixes

  • deps: update rust crate rocket_okapi to 0.9.0 (#579) (230a4a4)

v5.3.1

28 Sep 07:59
a114ddd
Compare
Choose a tag to compare

5.3.1 (2024-09-28)

Bug Fixes

v5.3.0

26 Sep 11:49
28b7c05
Compare
Choose a tag to compare

5.3.0 (2024-09-26)

Features

  • Add Optional Support for Rocket-Okapi in IntrospectedUser (#559) (2fb5786)

v5.2.0

06 Sep 09:25
d3d3997
Compare
Choose a tag to compare

5.2.0 (2024-09-06)

Features

  • Add project_roles and metadata to all IntrospectedUser (#571) (d3d3997)

v5.1.0

05 Sep 17:56
4ebde7b
Compare
Choose a tag to compare

5.1.0 (2024-09-05)

Features

v5.0.0

29 Aug 12:37
da2dddf
Compare
Choose a tag to compare

5.0.0 (2024-08-29)

Features

BREAKING CHANGES

  • Return types of the client builder
    have changed. Please update to the newest returned types
    to use the client builder. This removed the ChainedInterceptor
    which essentially has hidden the cloneable feature for
    interceptors.
  • This removes the "roles" enum
    from the introspected user. It is possible to achieve the same
    mechanism with the following work around:
enum Role {
  Admin,
  Client
}

trait MyExtIntrospectedUser {
    fn role(&self, role: Role) -> Option<..>;
}

impl MyExtIntrospectedUser for IntrospectedUser {
   fn role(&self, role: Role) -> Option<..> {
     // convenience impl here

  }
}