Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kaplanelad authored Dec 3, 2024
1 parent 7292558 commit 721755d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,30 @@
* fix: guard jwt error behind feature flag. [https://github.com/loco-rs/loco/pull/1032](https://github.com/loco-rs/loco/pull/1032)
* fix: logger file_appender not using the seperated format setting. [https://github.com/loco-rs/loco/pull/1036](https://github.com/loco-rs/loco/pull/1036)
* seed cli command. [https://github.com/loco-rs/loco/pull/1046](https://github.com/loco-rs/loco/pull/1046)
* Updated validator to 0.19. [https://github.com/loco-rs/loco/pull/993](https://github.com/loco-rs/loco/pull/993)
* Testing helpers: simplified function calls + adding html selector. [https://github.com/loco-rs/loco/pull/1047](https://github.com/loco-rs/loco/pull/1047)
### Breaking Changes
#### Updated Import Paths
The testing module import path has been updated. To adapt your code, update imports from:
```rust
use loco_rs::testing;
```
to:
```rust
use testing::prelude::*;
```
#### Simplified Function Calls
Function calls within the testing module no longer require the testing:: prefix. Update your code accordingly. For example:

Before:
```rust
let boot = testing::boot_test::<App>().await.unwrap();
```

After:
```rust
let boot = boot_test::<App>().await.unwrap();
```

## v0.13.2

Expand Down

0 comments on commit 721755d

Please sign in to comment.