Skip to content

Releases: smartive/zitadel-rust

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

  }
}

v4.4.0

26 Aug 12:25
d1528a2
Compare
Choose a tag to compare

4.4.0 (2024-08-26)

Features

  • Upgrade apis to v2 & allow to select apis via feature flag for optimized compile times (#565) (d1528a2)

v4.3.5

02 May 13:01
e05ef07
Compare
Choose a tag to compare

4.3.5 (2024-05-02)

Bug Fixes

v4.3.4

02 May 09:50
e6c8a84
Compare
Choose a tag to compare

4.3.4 (2024-05-02)

Bug Fixes

  • deps: update grpc packages to 0.12.4 (#551) (e6c8a84)

v4.3.3

02 May 07:50
728dd31
Compare
Choose a tag to compare

4.3.3 (2024-05-02)

Bug Fixes

  • deps: update rust crate document-features to 0.2.8 (#554) (728dd31)

v4.3.2

02 May 05:50
ac37a85
Compare
Choose a tag to compare

4.3.2 (2024-05-02)

Bug Fixes

  • deps: update rust crate axum-extra to 0.9.3 (#553) (ac37a85)