Skip to content

Commit

Permalink
Changelog v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
beyera committed May 26, 2024
1 parent 75d5ef7 commit 99d37ca
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
4 changes: 4 additions & 0 deletions passage-auth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,8 @@

## 0.1.3 (2024-05-26)

- Added the support for the Passage auth Users endpoint (get_user, create_user)
- Made models public, the naming and location is likely to change in a future release
- Removed api_key config option as this crate should never need it unless we add support for
- Updated to jsonwebtoken 9.3.0

2 changes: 1 addition & 1 deletion passage-auth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
- [x] Tokens
- [x] Users
- [] OAuth2
- [] Passkey Readiness
- [] Passkey Readiness (Not planning to add support)

Models were automatically generated thanks to [OpenAPI Generator](https://openapi-generator.tech). The rest of the auth API was built by your friends at [Kindness](https://kindness.ai). With some prior art for the validation function from our friend [Rob Yoder](https://github.com/robyoder/passage-rust/blob/main/src/lib.rs).

Expand Down
13 changes: 1 addition & 12 deletions passage-auth/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,6 @@
//! a modern passwordless authentication experience based on passkeys.
//!
//! See Passage [Authentication API](https://docs.passage.id/api-docs/authentication-api).
//!
//! ## Usage
//!
//! This crate is published on [crates.io](https://crates.io/crates/passage-id)
//! and can be added with `cargo add passage-id` or by manually adding
//! `passage-id` to your Cargo.toml dependencies.
//!
//! ```toml
//! [dependencies]
//! passage-id = "0.2"
//! ```
extern crate reqwest;
extern crate serde;
Expand All @@ -25,9 +14,9 @@ extern crate url;
mod apis;
mod config;
mod error;
mod models;
mod passage;

pub mod models;
pub use config::Config;
pub use error::*;
pub use passage::Passage;

0 comments on commit 99d37ca

Please sign in to comment.