Skip to content

Commit c10eb07

Browse files
committed
chore: add changelog and release v0.1.2
1 parent dc4db7e commit c10eb07

File tree

3 files changed

+36
-2
lines changed

3 files changed

+36
-2
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ function UserList() {
4040

4141
See [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
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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

packages/eden-tanstack-query/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",
@@ -14,7 +14,8 @@
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",

0 commit comments

Comments
 (0)