Skip to content

Commit

Permalink
Version Packages (#3487)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
acao and github-actions[bot] committed Jan 10, 2024
1 parent 334224b commit b8268e4
Show file tree
Hide file tree
Showing 11 changed files with 54 additions and 30 deletions.
10 changes: 0 additions & 10 deletions .changeset/clean-spies-sip.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/plenty-bees-fry.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/slimy-fireants-dream.md

This file was deleted.

11 changes: 11 additions & 0 deletions packages/graphql-language-service-cli/CHANGELOG.md
@@ -1,5 +1,16 @@
# graphql-language-service-cli

## 3.3.29

### Patch Changes

- [#3488](https://github.com/graphql/graphiql/pull/3488) [`d5028be2`](https://github.com/graphql/graphiql/commit/d5028be252ed385af972e090dda22788835da71e) Thanks [@acao](https://github.com/acao)! - Bump graphql & graphql-tools version to fix potential runtime security bugs

- [`22771f35`](https://github.com/graphql/graphiql/commit/22771f35d00e4f80cb851e2a1f93db074e238e18) Thanks [@acao](https://github.com/acao)! - Fixes to svelte parsing, tag parsing refactor

- Updated dependencies [[`d5028be2`](https://github.com/graphql/graphiql/commit/d5028be252ed385af972e090dda22788835da71e), [`22771f35`](https://github.com/graphql/graphiql/commit/22771f35d00e4f80cb851e2a1f93db074e238e18)]:
- graphql-language-service-server@2.11.7

## 3.3.28

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/graphql-language-service-cli/package.json
@@ -1,6 +1,6 @@
{
"name": "graphql-language-service-cli",
"version": "3.3.28",
"version": "3.3.29",
"description": "An interface for building GraphQL language services for IDEs",
"contributors": [
"Hyohyeon Jeong <asiandrummer@fb.com>",
Expand Down Expand Up @@ -38,7 +38,7 @@
"@babel/polyfill": "^7.12.1",
"@types/yargs": "16.0.5",
"graphql-language-service": "^5.2.0",
"graphql-language-service-server": "^2.11.6",
"graphql-language-service-server": "^2.11.7",
"yargs": "^16.2.0"
},
"devDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/graphql-language-service-server/CHANGELOG.md
@@ -1,5 +1,13 @@
# graphql-language-service-server

## 2.11.7

### Patch Changes

- [#3488](https://github.com/graphql/graphiql/pull/3488) [`d5028be2`](https://github.com/graphql/graphiql/commit/d5028be252ed385af972e090dda22788835da71e) Thanks [@acao](https://github.com/acao)! - Bump graphql & graphql-tools version to fix potential runtime security bugs

- [`22771f35`](https://github.com/graphql/graphiql/commit/22771f35d00e4f80cb851e2a1f93db074e238e18) Thanks [@acao](https://github.com/acao)! - Fixes to svelte parsing, tag parsing refactor

## 2.11.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql-language-service-server/package.json
@@ -1,6 +1,6 @@
{
"name": "graphql-language-service-server",
"version": "2.11.6",
"version": "2.11.7",
"description": "Server process backing the GraphQL Language Service",
"contributors": [
"Greg Hurrell <greg@hurrell.net> (https://greg.hurrell.net/)",
Expand Down
11 changes: 11 additions & 0 deletions packages/vscode-graphql-syntax/CHANGELOG.md
@@ -1,5 +1,16 @@
# vscode-graphql-syntax

## 1.2.3

### Patch Changes

- [#3490](https://github.com/graphql/graphiql/pull/3490) [`334224b4`](https://github.com/graphql/graphiql/commit/334224b4502fda9fd77684da63cac00b8a7c1ee7) Thanks [@acao](https://github.com/acao)! - - add ruby syntax support

- add graphql syntax support in markdown codeblocks for js, ts, jsx, tsx, svelte, vue, ruby, rescript, reason, ocaml, php and python
- make textmate injectors more performant and specific, eliminate redundant config

Big thanks to [@RedCMD](https://github.com/RedCMD) and [@aeschli](https://github.com/aeschli) for your help!

## 1.2.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-graphql-syntax/package.json
@@ -1,6 +1,6 @@
{
"name": "vscode-graphql-syntax",
"version": "1.2.2",
"version": "1.2.3",
"displayName": "GraphQL: Syntax Highlighting",
"description": "Adds syntax highlighting support for .graphql & embedded support for javascript, typescript, vue, markdown, python, php, reason, ocaml and rescript",
"publisher": "GraphQL",
Expand Down
18 changes: 18 additions & 0 deletions packages/vscode-graphql/CHANGELOG.md
@@ -1,5 +1,23 @@
# Change Log

## 0.8.22

### Patch Changes

- [#3490](https://github.com/graphql/graphiql/pull/3490) [`334224b4`](https://github.com/graphql/graphiql/commit/334224b4502fda9fd77684da63cac00b8a7c1ee7) Thanks [@acao](https://github.com/acao)! - - add ruby syntax support

- add graphql syntax support in markdown codeblocks for js, ts, jsx, tsx, svelte, vue, ruby, rescript, reason, ocaml, php and python
- make textmate injectors more performant and specific, eliminate redundant config

Big thanks to [@RedCMD](https://github.com/RedCMD) and [@aeschli](https://github.com/aeschli) for your help!

- [#3488](https://github.com/graphql/graphiql/pull/3488) [`d5028be2`](https://github.com/graphql/graphiql/commit/d5028be252ed385af972e090dda22788835da71e) Thanks [@acao](https://github.com/acao)! - Bump graphql & graphql-tools version to fix potential runtime security bugs

- [`22771f35`](https://github.com/graphql/graphiql/commit/22771f35d00e4f80cb851e2a1f93db074e238e18) Thanks [@acao](https://github.com/acao)! - Fixes to svelte parsing, tag parsing refactor

- Updated dependencies [[`d5028be2`](https://github.com/graphql/graphiql/commit/d5028be252ed385af972e090dda22788835da71e), [`22771f35`](https://github.com/graphql/graphiql/commit/22771f35d00e4f80cb851e2a1f93db074e238e18)]:
- graphql-language-service-server@2.11.7

## 0.8.21

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/vscode-graphql/package.json
@@ -1,6 +1,6 @@
{
"name": "vscode-graphql",
"version": "0.8.21",
"version": "0.8.22",
"private": true,
"license": "MIT",
"displayName": "GraphQL: Language Feature Support",
Expand Down Expand Up @@ -173,7 +173,7 @@
},
"dependencies": {
"graphql": "^16.8.1",
"graphql-language-service-server": "^2.11.6",
"graphql-language-service-server": "^2.11.7",
"vscode-languageclient": "8.0.2"
}
}

0 comments on commit b8268e4

Please sign in to comment.