Skip to content

Commit a84bb64

Browse files
Version Packages (#105)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @gqlkit-ts/cli@0.3.0 ### Minor Changes - [#126](#126) [`88586a0`](88586a0) Thanks [@izumin5210](https://github.com/izumin5210)! - feat: add `docs` command to generate AI agent skill files - [#107](#107) [`59eefd0`](59eefd0) Thanks [@izumin5210](https://github.com/izumin5210)! - feat: auto-generate Payload types from inline types in resolver return types - [#103](#103) [`6501429`](6501429) Thanks [@izumin5210](https://github.com/izumin5210)! - feat: auto-generate GraphQL Union types from inline unions and `@oneOf` Input Objects from inline unions in input context - [#129](#129) [`a2a884b`](a2a884b) Thanks [@izumin5210](https://github.com/izumin5210)! - feat: add enum prefix stripping for cleaner GraphQL enum values - [#121](#121) [`7ae9406`](7ae9406) Thanks [@izumin5210](https://github.com/izumin5210)! - feat: add `ignoreFields` option to exclude fields from generated GraphQL schema - [#114](#114) [`e0d093c`](e0d093c) Thanks [@izumin5210](https://github.com/izumin5210)! - feat: auto-generate `resolveType` from `__typename` and `$typeName` fields ### Patch Changes - [#117](#117) [`0cc4e7a`](0cc4e7a) Thanks [@izumin5210](https://github.com/izumin5210)! - fix: auto-generate `resolveType` for inline unions where all members are named types with `__typename` or `$typeName` fields - [#108](#108) [`eefdabd`](eefdabd) Thanks [@izumin5210](https://github.com/izumin5210)! - refactor: remove `EMPTY_TYPE_PROPERTIES` warning ## @gqlkit-ts/runtime@0.2.0 ### Minor Changes - [#121](#121) [`7ae9406`](7ae9406) Thanks [@izumin5210](https://github.com/izumin5210)! - feat: add `ignoreFields` option to exclude fields from generated GraphQL schema Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent a2a884b commit a84bb64

12 files changed

Lines changed: 30 additions & 43 deletions

.changeset/add-docs-command.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/auto-generate-inline-payload.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/auto-generate-inline-union.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/enum-prefix-stripping.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/ignore-fields-support.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/inline-union-named-types-resolve-type.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/remove-empty-type-warning.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/typename-auto-resolve-type.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/cli/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# @gqlkit-ts/cli
22

3+
## 0.3.0
4+
5+
### Minor Changes
6+
7+
- [#126](https://github.com/izumin5210/gqlkit/pull/126) [`88586a0`](https://github.com/izumin5210/gqlkit/commit/88586a00445f5432726d4c995942c96bbf1429da) Thanks [@izumin5210](https://github.com/izumin5210)! - feat: add `docs` command to generate AI agent skill files
8+
9+
- [#107](https://github.com/izumin5210/gqlkit/pull/107) [`59eefd0`](https://github.com/izumin5210/gqlkit/commit/59eefd0951c8c6fceb313e002518445296b24fdf) Thanks [@izumin5210](https://github.com/izumin5210)! - feat: auto-generate Payload types from inline types in resolver return types
10+
11+
- [#103](https://github.com/izumin5210/gqlkit/pull/103) [`6501429`](https://github.com/izumin5210/gqlkit/commit/65014296069e4753d143ef323b07aaab6d0fbfdb) Thanks [@izumin5210](https://github.com/izumin5210)! - feat: auto-generate GraphQL Union types from inline unions and `@oneOf` Input Objects from inline unions in input context
12+
13+
- [#129](https://github.com/izumin5210/gqlkit/pull/129) [`a2a884b`](https://github.com/izumin5210/gqlkit/commit/a2a884b544179e10b364e1d6afd420555d94291f) Thanks [@izumin5210](https://github.com/izumin5210)! - feat: add enum prefix stripping for cleaner GraphQL enum values
14+
15+
- [#121](https://github.com/izumin5210/gqlkit/pull/121) [`7ae9406`](https://github.com/izumin5210/gqlkit/commit/7ae94065e4cafb3e81717e1943a7700ea23bfa35) Thanks [@izumin5210](https://github.com/izumin5210)! - feat: add `ignoreFields` option to exclude fields from generated GraphQL schema
16+
17+
- [#114](https://github.com/izumin5210/gqlkit/pull/114) [`e0d093c`](https://github.com/izumin5210/gqlkit/commit/e0d093c29fa9eed74021cd81e038fd01b758f6dc) Thanks [@izumin5210](https://github.com/izumin5210)! - feat: auto-generate `resolveType` from `__typename` and `$typeName` fields
18+
19+
### Patch Changes
20+
21+
- [#117](https://github.com/izumin5210/gqlkit/pull/117) [`0cc4e7a`](https://github.com/izumin5210/gqlkit/commit/0cc4e7ababa74c64c159303fe239358dd27bc370) Thanks [@izumin5210](https://github.com/izumin5210)! - fix: auto-generate `resolveType` for inline unions where all members are named types with `__typename` or `$typeName` fields
22+
23+
- [#108](https://github.com/izumin5210/gqlkit/pull/108) [`eefdabd`](https://github.com/izumin5210/gqlkit/commit/eefdabd3e2179c209a9ccf56fc973ed96924e904) Thanks [@izumin5210](https://github.com/izumin5210)! - refactor: remove `EMPTY_TYPE_PROPERTIES` warning
24+
325
## 0.2.0
426

527
### Minor 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": "@gqlkit-ts/cli",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "Just types and functions — write TypeScript, generate GraphQL.",
55
"type": "module",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)