-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: reset to 0.1 and rename project
- Loading branch information
Showing
3 changed files
with
21 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,72 +1,15 @@ | ||
# Changelog | ||
|
||
<!-- Instructions | ||
This changelog follows the patterns described here: <https://keepachangelog.com/en/1.0.0/>. | ||
Subheadings to categorize changes are `added, changed, deprecated, removed, fixed, security`. | ||
## 1.5.0 | ||
|
||
### changed | ||
|
||
- To Bevy 0.13 | ||
|
||
|
||
## 1.4.2 | ||
|
||
### fixed | ||
|
||
- `KeyRotationEvent` events are now in the plugin | ||
|
||
## 1.4.1 | ||
|
||
### added | ||
|
||
- Added `KeyRotationEvent` events triggered on start, rotation, failure, and stoppage | ||
|
||
### changed | ||
|
||
- Changed `instant::{Duration, Instant}` to `web_time::{Duration, Instant}` | ||
- Exposed `StopKeyRotationExt` | ||
|
||
## v1.4.0 | ||
|
||
### changed | ||
|
||
- Updated to bevy 0.12 | ||
|
||
## v1.3.1 | ||
|
||
### fixed | ||
|
||
- `AuthProvider` is now `?Send` on wasm32 | ||
|
||
## v1.3.0 | ||
|
||
### changed | ||
|
||
- `Kegen` resource is now public | ||
|
||
## v1.2.0 | ||
|
||
### added | ||
|
||
- `commands.start_key_rotation_with_keystore(keystore)` begins key rotation without blocking | ||
|
||
### fixed | ||
|
||
- On initial authentication, expired tokens no longer grant a `KeystoreState::Conformant` state | ||
|
||
## v1.1.0 | ||
|
||
### added | ||
|
||
- `commands.start_key_rotation(username, password)` begins key rotation | ||
- `commands.stop_key_rotation()` stops key rotation | ||
|
||
### changed | ||
--> | ||
|
||
- `KeystoreState` now starts as `KeystoreState::NonConformant` by default | ||
## Unreleased | ||
|
||
## v1.0.0 | ||
## 0.1.0 | ||
|
||
Initial release | ||
- Initial release. Crate was renamed to `bevy_key_rotation` from `bevy-key-rotation` and republished. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
[package] | ||
name = "bevy-key-rotation" | ||
name = "bevy_key_rotation" | ||
description = "Access and refresh token rotation for Bevy applications" | ||
license = "MIT/Apache-2.0" | ||
repository = "https://github.com/vectorgameexperts/bevy-key-rotation" | ||
repository = "https://github.com/loopystudios/bevy_key_rotation" | ||
authors = ["Spencer C. Imbleau"] | ||
keywords = ["gamedev"] | ||
version = "1.5.0" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[dependencies] | ||
web-time = "1.0" | ||
thiserror = "1.0" | ||
bevy-async-task = "1.4" | ||
async-trait = "0.1" | ||
web-time = "1.1.0" | ||
thiserror = "1.0.58" | ||
bevy_async_task = "0.1.0" | ||
async-trait = "0.1.79" | ||
bevy = { version = "0.13", default-features = false } | ||
|
||
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] | ||
getrandom = { version = "0.2" } | ||
getrandom = { version = "0.2.12" } | ||
|
||
[target.'cfg(target_arch = "wasm32")'.dev-dependencies] | ||
wasm-bindgen-test = "0.3" | ||
getrandom = { version = "0.2", features = ["js"] } | ||
wasm-bindgen-test = "0.3.42" | ||
getrandom = { version = "0.2.12", features = ["js"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters