Skip to content

Releases: maxlambrecht/rust-spiffe

spire-api-v0.3.2

07 Nov 22:12
c17ea55
Compare
Choose a tag to compare

What's Changed

Full Changelog: spire-api-v0.3.1...spire-api-v0.3.2

spiffe-v0.6.3

07 Nov 22:09
bde0ee7
Compare
Choose a tag to compare

What's Changed

Full Changelog: spiffe-v0.6.2...spiffe-v0.6.3

spire-api-v0.3.1

07 Oct 21:38
1abaffd
Compare
Choose a tag to compare

What's Changed

New Contributors

spiffe-v0.6.2

07 Oct 21:26
31da3f6
Compare
Choose a tag to compare

What's Changed

New Contributors

spire-api-v0.3.0

12 Sep 19:12
371d378
Compare
Choose a tag to compare
  • Update Rust Edition to 2021 (#82)
  • Enhance Usability with Core Type Re-exports (#83)
  • Sync delegate api changes + spire-api-sdk bump to 1.10.2 by @bleggett (#96)

New contributor

Thanks to @bleggett for his contribution (#96) to this release!

spiffe-v0.6.1

12 Sep 18:59
0dc8641
Compare
Choose a tag to compare

What's Changed

  • Fix re-exports (#100)
  • Add Missing Debug Implementations (#85)
  • Update Rust Edition to 2021 (#82)
  • Enhance Usability with Core spiffe and spire-api Type Re-exports (#83)
  • Bump actions/checkout from 4.1.1 to 4.1.2 by https://github.com/dependabot in #86
  • Add Test for Parsing JWKS with Empty Keys Array (#89)
  • cargo fmt fixes + makefile by @bleggett in #97

Full Changelog: spiffe-v0.5.0...spiffe-v0.6.1

spire-api-v0.2.0

07 Mar 17:10
15f6101
Compare
Choose a tag to compare

Dependencies updates

  • Updated prost, prost-types, and prost-build to "0.12" (#73)
  • Updated tonic and tonic-build to "0.11" (#73)

spiffe-v0.5.0

07 Mar 17:11
15f6101
Compare
Choose a tag to compare

Dependencies updates

  • Updated prost, prost-types, and prost-build to "0.12" (#73)
  • Updated tonic and tonic-build to "0.11" (#73)
  • Updated x509-parser to "0.16" (#73)

spire-api-v0.1.0

03 Sep 14:31
f40b652
Compare
Choose a tag to compare

Added

  • SPIRE Delegated Identity API support (#43).

This new feature allows authorized workloads to obtain SVIDs and bundles on behalf of other workloads that can't be directly attested by SPIRE Agent.

Kudos to @EItanya for the contribution!

spiffe-v0.4.0

23 Aug 16:42
13be0c9
Compare
Choose a tag to compare

Added

  • Refactor of spiffe crate: Introduced spiffe-types and workload-api features for better modularity (#44).
  • Implemented X509Source for fetching X.509 materials (#50).
  • Added dependencies log and tokio-util specifically to the workload-api feature (#50, #51).

API Changes

  • Renamed stream_ methods in WorkloadApiClient (#44).
  • Moved SocketPathError and GrpcClientError to spiffe::errors package as part of the spiffe-types feature,
    aligning with the new structure (#44).

Changed

  • Replaced unreachable!() in find_spiffe_id function with UnexpectedExtension error variant to handle unexpected
    X.509 extensions, improving error handling in SAN extension parsing (#48).