File tree Expand file tree Collapse file tree 3 files changed +36
-2
lines changed
packages/eden-tanstack-query Expand file tree Collapse file tree 3 files changed +36
-2
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,8 @@ function UserList() {
4040
4141See [ full documentation] ( ./packages/eden-tanstack-query/README.md ) for details.
4242
43+ See [ CHANGELOG] ( ./packages/eden-tanstack-query/CHANGELOG.md ) for release history.
44+
4345## Development
4446
4547``` bash
Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ All notable changes to this project will be documented in this file.
4+
5+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
6+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7+
8+ ## [ 0.1.2] - 2025-12-04
9+
10+ ### Added
11+ - CHANGELOG.md
12+
13+ ## [ 0.1.1] - 2025-12-04
14+
15+ ### Changed
16+ - Renamed package from ` @eden-tanstack-query/react ` to ` eden-tanstack-react-query `
17+
18+ ## [ 0.1.0] - 2025-12-04
19+
20+ ### Added
21+ - Initial release
22+ - ` createEdenTanStackQuery() ` factory for creating typed hooks
23+ - ` EdenProvider ` component for React context
24+ - ` useEden() ` hook for accessing typed query options
25+ - ` useEdenClient() ` hook for raw Eden client access
26+ - Query options: ` queryOptions() ` , ` queryKey() `
27+ - Mutation options: ` mutationOptions() ` , ` mutationKey() `
28+ - Infinite query options: ` infiniteQueryOptions() `
29+ - Full TypeScript inference from Elysia routes
30+ - Path parameter support (` eden.users({ id }).get.queryOptions() ` )
31+ - Automatic query key generation from route paths
Original file line number Diff line number Diff line change 11{
22 "name" : " eden-tanstack-react-query" ,
3- "version" : " 0.1.1 " ,
3+ "version" : " 0.1.2 " ,
44 "description" : " Type-safe TanStack Query integration for Elysia Eden - like tRPC for Elysia" ,
55 "type" : " module" ,
66 "main" : " ./dist/index.js" ,
1414 },
1515 "files" : [
1616 " dist" ,
17- " src"
17+ " src" ,
18+ " CHANGELOG.md"
1819 ],
1920 "scripts" : {
2021 "build" : " bun run build:js && bun run build:types" ,
You can’t perform that action at this time.
0 commit comments