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 Apr 15, 2024
1 parent aa7ee38 commit b57971f
Show file tree
Hide file tree
Showing 26 changed files with 88 additions and 99 deletions.
5 changes: 0 additions & 5 deletions .changeset/breezy-ducks-promise.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/fair-otters-lie.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/funny-boxes-reply.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/gorgeous-avocados-push.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/green-waves-tie.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/healthy-shrimps-pretend.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/late-mice-type.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/light-files-travel.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/mighty-taxis-end.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/nasty-ducks-hug.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nasty-masks-count.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/plenty-games-smoke.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pretty-falcons-leave.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silver-cooks-heal.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/strange-ways-poke.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tender-keys-act.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thin-bikes-help.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twelve-kiwis-fail.md

This file was deleted.

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

## 1.5.0

### Minor Changes

- Allow GraphQL enum types to be remapped with the `scalars` configuration option
Submitted by [@kitten](https://github.com/kitten) (See [#184](https://github.com/0no-co/gql.tada/pull/184))
- Support a second argument in `graphql.persisted` which accepts a `TadaDocumentNode` rather than passing a generic. This allows the document node to not be hidden, to still generate `documentId` via `gql.tada` without having to hide the document during runtime
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#188](https://github.com/0no-co/gql.tada/pull/188))

### Patch Changes

- Updated dependencies (See [#203](https://github.com/0no-co/gql.tada/pull/203), [#184](https://github.com/0no-co/gql.tada/pull/184), [#197](https://github.com/0no-co/gql.tada/pull/197), [#183](https://github.com/0no-co/gql.tada/pull/183), [#175](https://github.com/0no-co/gql.tada/pull/175), [#176](https://github.com/0no-co/gql.tada/pull/176), [#188](https://github.com/0no-co/gql.tada/pull/188), [#205](https://github.com/0no-co/gql.tada/pull/205), [#200](https://github.com/0no-co/gql.tada/pull/200), [#170](https://github.com/0no-co/gql.tada/pull/170), [#169](https://github.com/0no-co/gql.tada/pull/169), [#192](https://github.com/0no-co/gql.tada/pull/192), [#185](https://github.com/0no-co/gql.tada/pull/185), [#182](https://github.com/0no-co/gql.tada/pull/182), [#193](https://github.com/0no-co/gql.tada/pull/193), [#199](https://github.com/0no-co/gql.tada/pull/199), [#200](https://github.com/0no-co/gql.tada/pull/200), and [#200](https://github.com/0no-co/gql.tada/pull/200))
- @gql.tada/cli-utils@1.0.0
- @gql.tada/internal@0.2.0

## 1.4.3

### 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.4.3",
"version": "1.5.0",
"author": "0no.co <hi@0no.co>",
"source": "./src/index.ts",
"main": "./dist/gql-tada",
Expand Down
42 changes: 42 additions & 0 deletions packages/cli-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,47 @@
# @gql.tada/cli-utils

## 1.0.0

### Major Changes

- Add stdout-piping support in some commands and adjust command arguments for consistency
Submitted by [@kitten](https://github.com/kitten) (See [#197](https://github.com/0no-co/gql.tada/pull/197))
- Add stylised log output and threading to commands
Submitted by [@kitten](https://github.com/kitten) (See [#200](https://github.com/0no-co/gql.tada/pull/200))

### Minor Changes

- Add `gql-tada turbo` which will calculate all the types from `graphql()` calls so subsequent
clones, ... won't have to calculate all the types
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#183](https://github.com/0no-co/gql.tada/pull/183))
- Implement `generate-persisted` as a way to go through all of the codebase and generate a persisted operations manifest
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#176](https://github.com/0no-co/gql.tada/pull/176))
- Support a second argument in `graphql.persisted` which accepts a `TadaDocumentNode` rather than passing a generic. This allows the document node to not be hidden, to still generate `documentId` via `gql.tada` without having to hide the document during runtime
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#188](https://github.com/0no-co/gql.tada/pull/188))
- Add `check` as a way to run the GraphQLSP diagnostics as part of our CLI
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#170](https://github.com/0no-co/gql.tada/pull/170))
- Add `doctor` command to diagnose common issues with the LSP and gql.tada
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#169](https://github.com/0no-co/gql.tada/pull/169))
- Add the `init` command for the CLI
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#182](https://github.com/0no-co/gql.tada/pull/182))
- Add `--tsconfig` option to the `check` command, update its log output, and add support for GitHub Actions annotations to it
Submitted by [@kitten](https://github.com/kitten) (See [#199](https://github.com/0no-co/gql.tada/pull/199))
- Add annotations for GitHub actions to command outputs that report diagnostics
Submitted by [@kitten](https://github.com/kitten) (See [#200](https://github.com/0no-co/gql.tada/pull/200))

### Patch Changes

- Remove interactive output in non-interactive environments
Submitted by [@kitten](https://github.com/kitten) (See [#203](https://github.com/0no-co/gql.tada/pull/203))
- Add bundled licenses of internalized modules
Submitted by [@kitten](https://github.com/kitten) (See [#175](https://github.com/0no-co/gql.tada/pull/175))
- ⚠️ Fix crash in `generate turbo` command when `returnType.symbol` is undefined
Submitted by [@kitten](https://github.com/kitten) (See [#205](https://github.com/0no-co/gql.tada/pull/205))
- Improve log output of `doctor` command
Submitted by [@kitten](https://github.com/kitten) (See [#193](https://github.com/0no-co/gql.tada/pull/193))
- Updated dependencies (See [#184](https://github.com/0no-co/gql.tada/pull/184), [#175](https://github.com/0no-co/gql.tada/pull/175), [#170](https://github.com/0no-co/gql.tada/pull/170), [#192](https://github.com/0no-co/gql.tada/pull/192), [#185](https://github.com/0no-co/gql.tada/pull/185), and [#200](https://github.com/0no-co/gql.tada/pull/200))
- @gql.tada/internal@0.2.0

## 0.3.3

### Patch 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.3.3",
"version": "1.0.0",
"public": true,
"description": "Main logic for gql.tada’s CLI tool.",
"author": "0no.co <hi@0no.co>",
Expand Down
20 changes: 20 additions & 0 deletions packages/internal/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @gql.tada/internal

## 0.2.0

### Minor Changes

- Add `check` as a way to run the GraphQLSP diagnostics as part of our CLI
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#170](https://github.com/0no-co/gql.tada/pull/170))
- Implement new config resolution helpers
Submitted by [@kitten](https://github.com/kitten) (See [#200](https://github.com/0no-co/gql.tada/pull/200))

### Patch Changes

- Allow GraphQL enum types to be remapped with the `scalars` configuration option
Submitted by [@kitten](https://github.com/kitten) (See [#184](https://github.com/0no-co/gql.tada/pull/184))
- Add bundled licenses of internalized modules
Submitted by [@kitten](https://github.com/kitten) (See [#175](https://github.com/0no-co/gql.tada/pull/175))
- Support opting out of `includeDeprecated` on `__Directive` and `__Field` in accordance with the October 2021 spec
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#192](https://github.com/0no-co/gql.tada/pull/192))
- Replace `minifyIntrospectionQuery` utility with a version that sorts fields and types by name
Submitted by [@kitten](https://github.com/kitten) (See [#185](https://github.com/0no-co/gql.tada/pull/185))

## 0.1.3

### Patch Changes
Expand Down
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.1.3",
"version": "0.2.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.9

### Patch Changes

- Updated dependencies (See [#184](https://github.com/0no-co/gql.tada/pull/184) and [#188](https://github.com/0no-co/gql.tada/pull/188))
- gql.tada@1.5.0

## 0.0.8

### 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.8",
"version": "0.0.9",
"private": true,
"scripts": {
"dev": "vitepress dev",
Expand Down

0 comments on commit b57971f

Please sign in to comment.