Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .changes/pre.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
{
"tag": "beta",
"changes": []
"changes": [
".changes/better-handler-macro-errors.md",
".changes/handler-rename-fix.md",
".changes/loosen-async-requirement.md",
".changes/re-export-ts-rs.md",
".changes/rewrite-macro.md",
".changes/router-refactor.md",
".changes/update-ts-rs.md"
]
}
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## \[1.0.0-beta.0]

- [`3287e96`](https://github.com/andogq/qubit/commit/3287e96175ef8a58afe95645245a13609ab4facc) correct invalid generated handler ident when using `name` attribute.
- [`bf34c4c`](https://github.com/andogq/qubit/commit/bf34c4c7f99edf8d0fc7d6d9c0347ff95b7e488d) Expose `ts-rs::TS` functionality via `ts` attribute macro. To migrate, replace any instances of
`#[derive(ts_rs::TS)]` with `#[qubit::ts]`, and remove `ts-rs` from package dependencies.
- [`c4cd986`](https://github.com/andogq/qubit/commit/c4cd986bbfca64299e1a028726cf55a25f10c9fb) Rewrite `handler` macro to be easier to maintain and test. This isn't inherently a breaking change,
however there's no guarentee that the previous implementation wasn't broken or inconsistent in some
way.
- [`0b46323`](https://github.com/andogq/qubit/commit/0b46323c68a54a2418b185ddfd573921e2a64587) **(BREAKING)** Refactor router to separate RPC functionality from type generation functionality.
Now, use `router.as_codegen().write_type(path, TypeScript::new())` to generate types, and
`router.as_rpc(ctx).into_service()` to build the service.
- [`c67ced6`](https://github.com/andogq/qubit/commit/c67ced6f572065032510557feb45225f9e925648) Update `ts-rs` to `11.0.0`

### Dependencies

- Upgraded to `[email protected]`

## \[0.10.3]

- [`a5f1638`](https://github.com/andogq/qubit/commit/a5f1638e4a21c9f5fd4e7d1dfa740f5522753e99) Update Axum to 0.8, and other dependencies (#94, thanks @epatters).
Expand Down
Loading