Skip to content
Closed
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
1 change: 1 addition & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"@tanstack/angular-query-experimental",
"@tanstack/angular-query-persist-client",
"@tanstack/eslint-plugin-query",
"@tanstack/lit-query",
"@tanstack/preact-query",
"@tanstack/preact-query-devtools",
"@tanstack/preact-query-persist-client",
Expand Down
7 changes: 7 additions & 0 deletions .changeset/lit-query-version-align.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'@tanstack/lit-query': patch
---

Realign `@tanstack/lit-query` to the main TanStack Query version line.

The package is now part of the main fixed version group alongside `@tanstack/react-query`, `@tanstack/vue-query`, `@tanstack/solid-query`, etc., so its version tracks the rest of the core lineup.
5 changes: 2 additions & 3 deletions examples/lit/basic/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
{
"name": "@tanstack/query-example-lit-basic",
"private": true,
"version": "0.0.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview"
},
"dependencies": {
"@tanstack/lit-query": "^0.2.0",
"@tanstack/query-core": "^5.99.0",
"@tanstack/lit-query": "^5.100.9",
"@tanstack/query-core": "^5.100.9",
"lit": "^3.3.1"
},
"devDependencies": {
Expand Down
5 changes: 2 additions & 3 deletions examples/lit/pagination/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
{
"name": "@tanstack/query-example-lit-pagination",
"private": true,
"version": "0.0.2",
"type": "module",
"scripts": {
"dev": "node ./scripts/dev.mjs",
"build": "tsc --noEmit && vite build",
"preview": "vite preview"
},
"dependencies": {
"@tanstack/lit-query": "^0.2.0",
"@tanstack/query-core": "^5.99.0",
"@tanstack/lit-query": "^5.100.9",
"@tanstack/query-core": "^5.100.9",
"lit": "^3.3.1"
},
"devDependencies": {
Expand Down
5 changes: 2 additions & 3 deletions examples/lit/ssr/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
{
"name": "@tanstack/query-example-lit-ssr",
"private": true,
"version": "0.0.2",
"type": "module",
"scripts": {
"dev": "node ./scripts/dev.mjs",
"build": "tsc --noEmit && vite build"
},
"dependencies": {
"@lit-labs/ssr": "^3.3.0",
"@tanstack/lit-query": "^0.2.0",
"@tanstack/query-core": "^5.99.0",
"@tanstack/lit-query": "^5.100.9",
"@tanstack/query-core": "^5.100.9",
"lit": "^3.3.1"
},
"devDependencies": {
Expand Down
15 changes: 13 additions & 2 deletions packages/lit-query/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
{
"name": "@tanstack/lit-query",
"version": "0.2.0",
"description": "Lit adapter for TanStack Query Core",
"version": "5.100.9",
"description": "Controllers for managing, caching and syncing asynchronous and remote data in Lit",
"author": "tannerlinsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/query.git",
"directory": "packages/lit-query"
},
"homepage": "https://tanstack.com/query",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"type": "module",
"main": "dist-cjs/index.js",
"module": "dist/index.js",
Expand Down
Loading