Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/quiet-foxes-skip.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quiet-pens-return.md

This file was deleted.

11 changes: 11 additions & 0 deletions packages/plugins/other/add/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @graphql-codegen/add

## 7.1.1

### Patch Changes

- [#10986](https://github.com/dotansimha/graphql-code-generator/pull/10986)
[`9597b5b`](https://github.com/dotansimha/graphql-code-generator/commit/9597b5bc76c24b66f3e7b000e1038ad8d6ab3450)
Thanks [@eddeee888](https://github.com/eddeee888)! - The plugin output's `content` is now an empty
string (`''`) instead of `null` when `placement` is `prepend` or `append`. This matches the
`ComplexPluginOutput` type (`content: string`). Code that calls the plugin directly and checks
`content === null` should check for an empty string instead. Generated files are unchanged.

## 7.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/other/add/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-codegen/add",
"version": "7.1.0",
"version": "7.1.1",
"type": "module",
"description": "GraphQL Code Generator plugin for adding custom content to your output file",
"repository": {
Expand Down
10 changes: 10 additions & 0 deletions packages/plugins/typescript/document-nodes/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @graphql-codegen/typescript-document-nodes

## 6.1.1

### Patch Changes

- [#10990](https://github.com/dotansimha/graphql-code-generator/pull/10990)
[`df288d8`](https://github.com/dotansimha/graphql-code-generator/commit/df288d8e047bbb7581a9bdc34c465a2988535e80)
Thanks [@eddeee888](https://github.com/eddeee888)! - Skip documents without a `document` AST
instead of throwing from `concatAST` when the plugin is called directly with one. Generated output
from the CLI is unchanged.

## 6.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/typescript/document-nodes/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-codegen/typescript-document-nodes",
"version": "6.1.0",
"version": "6.1.1",
"type": "module",
"description": "GraphQL Code Generator plugin for generating TypeScript modules with embedded GraphQL document nodes",
"repository": {
Expand Down