Skip to content

Commit 1011318

Browse files
authored
Merge pull request #446 from OpenAPI-Qraft/feat/2.14.x-no-infer
fix: compatibility with `@tanstack/react-query@^5.100.14` by relying on TypeScript's built-in `NoInfer` type
2 parents ac66e3e + 22159a0 commit 1011318

27 files changed

Lines changed: 75 additions & 33 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name: Main Suite
33
on:
44
pull_request:
55
branches:
6-
- '*'
6+
- main
7+
- 'versions/**'
78
push:
89
branches:
910
- main

.github/workflows/docs-validation.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
pull_request:
55
branches:
66
- main
7+
- 'versions/**'
78
# Review gh actions docs if you want to further define triggers, paths, etc
89
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
910

.github/workflows/e2e.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name: E2E Suite
33
on:
44
pull_request:
55
branches:
6-
- '*'
6+
- main
7+
- 'versions/**'
78
push:
89
branches:
910
- main
@@ -40,7 +41,7 @@ jobs:
4041
cp -r playground "$TEST_PROJECTS_DIR"
4142
cp -a e2e/projects/. "$TEST_PROJECTS_DIR/"
4243
env:
43-
TEST_PROJECTS_DIR: "${{ runner.temp }}/projects"
44+
TEST_PROJECTS_DIR: '${{ runner.temp }}/projects'
4445

4546
- name: Remove Verdaccio Storage
4647
run: rm -rf e2e/verdaccio-storage
@@ -52,4 +53,4 @@ jobs:
5253
run: TEST_PROJECTS_DIR=${{ runner.temp }}/projects yarn run "e2e:update-projects-from-private-registry"
5354

5455
- name: Build E2E Projects
55-
run: TEST_PROJECTS_DIR=${{ runner.temp }}/projects yarn run "e2e:build-projects"
56+
run: TEST_PROJECTS_DIR=${{ runner.temp }}/projects yarn run "e2e:build-projects"

packages/cli/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @openapi-qraft/cli
22

3+
## 2.14.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [04f84b1]
8+
- @openapi-qraft/tanstack-query-react-plugin@2.14.1
9+
- @openapi-qraft/plugin@2.14.1
10+
- @openapi-qraft/openapi-typescript-plugin@2.14.1
11+
312
## 2.14.0
413

514
### Patch Changes

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openapi-qraft/cli",
3-
"version": "2.14.0",
3+
"version": "2.14.1",
44
"description": "CLI for generating typed TanStack Query React Hooks and services from OpenAPI Document, improving type safety in React apps",
55
"scripts": {
66
"build": "tsc --project tsconfig.build.json",

packages/eslint-plugin-query/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @openapi-qraft/eslint-plugin-query
22

3+
## 2.14.1
4+
35
## 2.14.0
46

57
## 2.13.0

packages/eslint-plugin-query/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openapi-qraft/eslint-plugin-query",
3-
"version": "2.14.0",
3+
"version": "2.14.1",
44
"description": "ESLint plugin for OpenAPI Qraft",
55
"homepage": "https://openapi-qraft.github.io/openapi-qraft/docs/eslint/eslint-plugin-query",
66
"packageManager": "yarn@4.0.2",

packages/openapi-typescript-plugin/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @openapi-qraft/openapi-typescript
22

3+
## 2.14.1
4+
5+
### Patch Changes
6+
7+
- @openapi-qraft/plugin@2.14.1
8+
39
## 2.14.0
410

511
### Patch Changes

packages/openapi-typescript-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openapi-qraft/openapi-typescript-plugin",
3-
"version": "2.14.0",
3+
"version": "2.14.1",
44
"type": "module",
55
"scripts": {
66
"build": "tsc --project tsconfig.build.json",

packages/plugin/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @openapi-qraft/plugin
22

3+
## 2.14.1
4+
35
## 2.14.0
46

57
## 2.13.0

0 commit comments

Comments
 (0)