Skip to content

Commit 7d1c25a

Browse files
committed
chore(release): v0.0.1
1 parent 1a2763d commit 7d1c25a

File tree

2 files changed

+70
-1
lines changed

2 files changed

+70
-1
lines changed

CHANGELOG.md

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Changelog
2+
3+
4+
## v0.0.1
5+
6+
7+
### 🚀 Enhancements
8+
9+
- Add initial configuration and components ([010b981](https://github.com/peterbud/nuxt-query/commit/010b981))
10+
- Implement QueryListItem component add basic query display ([632a61c](https://github.com/peterbud/nuxt-query/commit/632a61c))
11+
- Add query client options to module ([bbaa55a](https://github.com/peterbud/nuxt-query/commit/bbaa55a))
12+
- Add more Vue QUery state information ([3e09912](https://github.com/peterbud/nuxt-query/commit/3e09912))
13+
- Enable using hooks for defining complex QueryClient, improved query display ([ca1b0ea](https://github.com/peterbud/nuxt-query/commit/ca1b0ea))
14+
- Improve query change handling ([0fadcfc](https://github.com/peterbud/nuxt-query/commit/0fadcfc))
15+
- Implement user selection and posts fetching in playground ([5a85bb4](https://github.com/peterbud/nuxt-query/commit/5a85bb4))
16+
- Integrate vue-json-pretty for query data visualization ([37a7200](https://github.com/peterbud/nuxt-query/commit/37a7200))
17+
- Add logging for module setup ([a922363](https://github.com/peterbud/nuxt-query/commit/a922363))
18+
- Add mutation functionality to playground ([a7e7b60](https://github.com/peterbud/nuxt-query/commit/a7e7b60))
19+
- Enhance query status display with color coding ([55775fa](https://github.com/peterbud/nuxt-query/commit/55775fa))
20+
- Add meta information display to selected query ([fbdbda0](https://github.com/peterbud/nuxt-query/commit/fbdbda0))
21+
- Update build scripts with client generation and release process ([1bf9f80](https://github.com/peterbud/nuxt-query/commit/1bf9f80))
22+
- Add action buttons for refetch, invalidate, and reset in query overview ([60611c4](https://github.com/peterbud/nuxt-query/commit/60611c4))
23+
- Add options display for selected query and trigger error ([01f1463](https://github.com/peterbud/nuxt-query/commit/01f1463))
24+
- Update README and enhance Vue Query page styling ([1281028](https://github.com/peterbud/nuxt-query/commit/1281028))
25+
- Add image for Nuxt DevTools in README ([72dad68](https://github.com/peterbud/nuxt-query/commit/72dad68))
26+
- Update package description and add keywords in package.json ([1a2763d](https://github.com/peterbud/nuxt-query/commit/1a2763d))
27+
28+
### 🩹 Fixes
29+
30+
- Change default autoImports ([ff3e54d](https://github.com/peterbud/nuxt-query/commit/ff3e54d))
31+
- Update TypeScript version and add sirv dependency ([7f8d825](https://github.com/peterbud/nuxt-query/commit/7f8d825))
32+
- Update package links in README to reflect new namespace ([320f327](https://github.com/peterbud/nuxt-query/commit/320f327))
33+
- Update CI workflow to use 'pnpm build' ([3db01f2](https://github.com/peterbud/nuxt-query/commit/3db01f2))
34+
35+
### 💅 Refactors
36+
37+
- Simplify QueryListItem component and update query state handling ([273df47](https://github.com/peterbud/nuxt-query/commit/273df47))
38+
- Clean up unused code and add query filtering logic ([8975473](https://github.com/peterbud/nuxt-query/commit/8975473))
39+
40+
### 📖 Documentation
41+
42+
- Update README ([0f9aa18](https://github.com/peterbud/nuxt-query/commit/0f9aa18))
43+
- Update README for module installation and configuration instructions ([3a64182](https://github.com/peterbud/nuxt-query/commit/3a64182))
44+
- Update installation command in README and add @tanstack/vue-query dependency ([36d34d0](https://github.com/peterbud/nuxt-query/commit/36d34d0))
45+
- Enhance README with updated feature descriptions and installation options ([e01f624](https://github.com/peterbud/nuxt-query/commit/e01f624))
46+
47+
### 📦 Build
48+
49+
- Upgrade to latest module-builder and drop cjs support ([920e3e3](https://github.com/peterbud/nuxt-query/commit/920e3e3))
50+
51+
### 🏡 Chore
52+
53+
- Initialize Nuxt Query module with basic setup and configurations ([142d8d4](https://github.com/peterbud/nuxt-query/commit/142d8d4))
54+
- Update package.json with new version, description, and repository details ([f7526dd](https://github.com/peterbud/nuxt-query/commit/f7526dd))
55+
56+
### 🤖 CI
57+
58+
- Update CI workflow with simplified build steps ([42b3200](https://github.com/peterbud/nuxt-query/commit/42b3200))
59+
- Add testing step to CI workflow ([15dc4dd](https://github.com/peterbud/nuxt-query/commit/15dc4dd))
60+
- Use latest corepack ([82aea9b](https://github.com/peterbud/nuxt-query/commit/82aea9b))
61+
- Switch corepack installation from pnpm to npm ([0595020](https://github.com/peterbud/nuxt-query/commit/0595020))
62+
- Set package manager to pnpm@10.2.0 ([3cfcffa](https://github.com/peterbud/nuxt-query/commit/3cfcffa))
63+
- Add matrix strategy for cross-platform CI runs ([3b36359](https://github.com/peterbud/nuxt-query/commit/3b36359))
64+
- Force install latest corepack version ([93067b5](https://github.com/peterbud/nuxt-query/commit/93067b5))
65+
66+
### ❤️ Contributors
67+
68+
- Peter Budai <peterbudai@hotmail.com>
69+

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nuxt-query",
3-
"version": "0.0.0",
3+
"version": "0.0.1",
44
"description": "Nuxt integration for Tanstack Query",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)