Skip to content

Commit dde0a27

Browse files
authored
Release 2.2.0 (#561)
## What's Changed * Export QueryOptions and similar types by @paul-sachs in #552 * Drop support for Node.js 18 by @timostamm in #553 * Add support for headers by @paul-sachs in #558 * Ignore page param when generating infinite key in createInfiniteQueryOptions by @paul-sachs in #559 **Full Changelog**: v2.1.1...v2.2.0 Signed-off-by: Paul Sachs <psachs@buf.build>
1 parent 634e19e commit dde0a27

7 files changed

Lines changed: 22 additions & 34 deletions

File tree

package-lock.json

Lines changed: 12 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/connect-query-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@connectrpc/connect-query-core",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"description": "Core of Connect-Query, framework agnostic helpers for type-safe queries.",
55
"license": "Apache-2.0",
66
"repository": {

packages/connect-query/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@connectrpc/connect-query",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"description": "TypeScript-first expansion pack for TanStack Query that gives you Protobuf superpowers.",
55
"license": "Apache-2.0",
66
"repository": {
@@ -30,7 +30,7 @@
3030
}
3131
},
3232
"dependencies": {
33-
"@connectrpc/connect-query-core": "^2.1.1"
33+
"@connectrpc/connect-query-core": "^2.2.0"
3434
},
3535
"devDependencies": {
3636
"@arethetypeswrong/cli": "^0.18.1",

packages/examples/react/basic/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@connectrpc/connect-query-example-basic",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"private": true,
55
"type": "module",
66
"scripts": {
@@ -17,9 +17,9 @@
1717
"@bufbuild/protobuf": "^2.5.1",
1818
"@bufbuild/protoc-gen-es": "^2.5.1",
1919
"@connectrpc/connect": "^2.0.2",
20-
"@connectrpc/connect-query": "^2.1.1",
20+
"@connectrpc/connect-query": "^2.2.0",
2121
"@connectrpc/connect-web": "^2.0.2",
22-
"@connectrpc/protoc-gen-connect-query": "^2.1.1",
22+
"@connectrpc/protoc-gen-connect-query": "^2.2.0",
2323
"@tanstack/react-query": "^5.79.0",
2424
"@tanstack/react-query-devtools": "^5.79.0",
2525
"@testing-library/jest-dom": "^6.6.3",

packages/examples/react/basic/src/gen/eliza-ElizaService_connectquery.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
// @generated by protoc-gen-connect-query v2.1.1 with parameter "target=ts"
15+
// @generated by protoc-gen-connect-query v2.2.0 with parameter "target=ts"
1616
// @generated from file eliza.proto (package connectrpc.eliza.v1, syntax proto3)
1717
/* eslint-disable */
1818

packages/protoc-gen-connect-query/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@connectrpc/protoc-gen-connect-query",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"description": "Code generator for connect-query",
55
"license": "Apache-2.0",
66
"sideEffects": false,
@@ -30,7 +30,7 @@
3030
"@bufbuild/buf": "1.54.0",
3131
"@bufbuild/protoc-gen-es": "^2.5.1",
3232
"@connectrpc/connect": "^2.0.2",
33-
"@connectrpc/connect-query": "^2.1.1",
33+
"@connectrpc/connect-query": "^2.2.0",
3434
"@tanstack/react-query": "^5.79.0",
3535
"typescript": "^5.8.3"
3636
},

packages/test-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "test-utils",
33
"private": true,
4-
"version": "2.1.1",
4+
"version": "2.2.0",
55
"type": "module",
66
"scripts": {
77
"generate": "buf generate",

0 commit comments

Comments
 (0)