Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 21, 2024
1 parent b3c52a2 commit b46e4d8
Show file tree
Hide file tree
Showing 14 changed files with 56 additions and 37 deletions.
5 changes: 0 additions & 5 deletions .changeset/kind-geckos-appear.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/real-dogs-swim.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rotten-eagles-sort.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/three-spoons-call.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/two-mice-try.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/two-rockets-hear.md

This file was deleted.

19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# gql.tada

## 1.4.0

### Minor Changes

- Accept a pre-processed schema when setting up `gql.tada` for the `AbstractSetupSchema.introspection` option. This allows us to map an `IntrospectionQuery` ahead of time
Submitted by [@kitten](https://github.com/kitten) (See [#147](https://github.com/0no-co/gql.tada/pull/147))
- Add `@gql.tada/internal` package to extract common logic between the CLI and the LSP
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#149](https://github.com/0no-co/gql.tada/pull/149))
- Change the default scalar type of `ID` to be `string`, as [the GraphQL spec](https://spec.graphql.org/October2021/#sec-ID) recommends it to serialize to a string
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#146](https://github.com/0no-co/gql.tada/pull/146))

### Patch Changes

- Remove `stringLiteral` generic constraint, causing errors depending on TypeScript version
Submitted by [@kitten](https://github.com/kitten) (See [#151](https://github.com/0no-co/gql.tada/pull/151))
- Updated dependencies (See [#155](https://github.com/0no-co/gql.tada/pull/155), [#150](https://github.com/0no-co/gql.tada/pull/150), and [#149](https://github.com/0no-co/gql.tada/pull/149))
- @gql.tada/cli-utils@0.3.0
- @gql.tada/internal@0.1.0

## 1.3.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gql.tada",
"description": "The spec-compliant & magical GraphQL query language engine in the TypeScript type system",
"version": "1.3.6",
"version": "1.4.0",
"author": "0no.co <hi@0no.co>",
"source": "./src/index.ts",
"main": "./dist/gql-tada",
Expand Down
16 changes: 16 additions & 0 deletions packages/cli-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @gql.tada/cli-utils

## 0.3.0

### Minor Changes

- Enable pre-processed introspection output by default (since it only applies to `d.ts` outputs)
Submitted by [@kitten](https://github.com/kitten) (See [#155](https://github.com/0no-co/gql.tada/pull/155))
- Expose introspection output format generation from `@gql.tada/internal` and implement a new pre-processed output format, which pre-computes the output of the `mapIntrospection` type
Submitted by [@kitten](https://github.com/kitten) (See [#150](https://github.com/0no-co/gql.tada/pull/150))
- Add `@gql.tada/internal` package to extract common logic between the CLI and the LSP
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#149](https://github.com/0no-co/gql.tada/pull/149))

### Patch Changes

- Updated dependencies (See [#150](https://github.com/0no-co/gql.tada/pull/150) and [#149](https://github.com/0no-co/gql.tada/pull/149))
- @gql.tada/internal@0.1.0

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gql.tada/cli-utils",
"version": "0.2.0",
"version": "0.3.0",
"public": true,
"description": "Main logic for gql.tada’s CLI tool.",
"author": "0no.co <hi@0no.co>",
Expand Down
10 changes: 10 additions & 0 deletions packages/internal/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# @gql.tada/internal

## 0.1.0

### Minor Changes

- Expose introspection output format generation from `@gql.tada/internal` and implement a new pre-processed output format, which pre-computes the output of the `mapIntrospection` type
Submitted by [@kitten](https://github.com/kitten) (See [#150](https://github.com/0no-co/gql.tada/pull/150))
- Add `@gql.tada/internal` package to extract common logic between the CLI and the LSP
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#149](https://github.com/0no-co/gql.tada/pull/149))
2 changes: 1 addition & 1 deletion packages/internal/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gql.tada/internal",
"version": "0.0.0",
"version": "0.1.0",
"public": true,
"description": "Internal logic for gql.tada’s CLI tool and GraphQLSP.",
"author": "0no.co <hi@0no.co>",
Expand Down
7 changes: 7 additions & 0 deletions website/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @gql.tada/website-vitepress

## 0.0.5

### Patch Changes

- Updated dependencies (See [#151](https://github.com/0no-co/gql.tada/pull/151), [#147](https://github.com/0no-co/gql.tada/pull/147), [#149](https://github.com/0no-co/gql.tada/pull/149), and [#146](https://github.com/0no-co/gql.tada/pull/146))
- gql.tada@1.4.0

## 0.0.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gql.tada/website-vitepress",
"version": "0.0.4",
"version": "0.0.5",
"private": true,
"scripts": {
"dev": "vitepress dev",
Expand Down

0 comments on commit b46e4d8

Please sign in to comment.