File tree 12 files changed +107
-41
lines changed
examples/graphiql-webpack
graphiql-plugin-code-exporter
12 files changed +107
-41
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 9
9
"start" : " NODE_ENV=development webpack-cli serve"
10
10
},
11
11
"dependencies" : {
12
- "@graphiql/plugin-code-exporter" : " ^4.0.0 " ,
13
- "@graphiql/plugin-explorer" : " ^4.0.0 " ,
12
+ "@graphiql/plugin-code-exporter" : " ^4.0.1 " ,
13
+ "@graphiql/plugin-explorer" : " ^4.0.1 " ,
14
14
"@graphiql/toolkit" : " ^0.11.2" ,
15
- "@graphiql/react" : " ^0.30 .0" ,
16
- "graphiql" : " ^4.0.0 " ,
15
+ "@graphiql/react" : " ^0.31 .0" ,
16
+ "graphiql" : " ^4.0.1 " ,
17
17
"graphql" : " ^16.9.0" ,
18
18
"graphql-ws" : " ^5.5.5" ,
19
19
"react" : " ^19.1.0" ,
Original file line number Diff line number Diff line change 1
1
# @graphiql/plugin-code-exporter
2
2
3
+ ## 4.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[ ` e7c436b ` ] ( https://github.com/graphql/graphiql/commit/e7c436b329a68981bdbd2b662be94875a546a1d6 )] :
8
+ - @graphiql/react @0.31.0
9
+
3
10
## 4.0.0
4
11
5
12
### Major Changes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @graphiql/plugin-code-exporter" ,
3
- "version" : " 4.0.0 " ,
3
+ "version" : " 4.0.1 " ,
4
4
"sideEffects" : false ,
5
5
"repository" : {
6
6
"type" : " git" ,
39
39
"graphiql-code-exporter" : " ^3.0.3"
40
40
},
41
41
"peerDependencies" : {
42
- "@graphiql/react" : " ^0.30 .0" ,
42
+ "@graphiql/react" : " ^0.31 .0" ,
43
43
"graphql" : " ^15.5.0 || ^16.0.0 || ^17.0.0-alpha.2" ,
44
44
"react" : " ^18 || ^19" ,
45
45
"react-dom" : " ^18 || ^19"
46
46
},
47
47
"devDependencies" : {
48
- "@graphiql/react" : " ^0.30 .0" ,
48
+ "@graphiql/react" : " ^0.31 .0" ,
49
49
"@vitejs/plugin-react" : " ^4.4.1" ,
50
50
"graphql" : " ^16.9.0" ,
51
51
"react" : " ^19.1.0" ,
Original file line number Diff line number Diff line change 1
1
# @graphiql/plugin-explorer
2
2
3
+ ## 4.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[ ` e7c436b ` ] ( https://github.com/graphql/graphiql/commit/e7c436b329a68981bdbd2b662be94875a546a1d6 )] :
8
+ - @graphiql/react @0.31.0
9
+
3
10
## 4.0.0
4
11
5
12
### Major Changes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @graphiql/plugin-explorer" ,
3
- "version" : " 4.0.0 " ,
3
+ "version" : " 4.0.1 " ,
4
4
"sideEffects" : false ,
5
5
"repository" : {
6
6
"type" : " git" ,
38
38
"graphiql-explorer" : " ^0.9.0"
39
39
},
40
40
"peerDependencies" : {
41
- "@graphiql/react" : " ^0.30 .0" ,
41
+ "@graphiql/react" : " ^0.31 .0" ,
42
42
"graphql" : " ^15.5.0 || ^16.0.0 || ^17.0.0-alpha.2" ,
43
43
"react" : " ^18 || ^19" ,
44
44
"react-dom" : " ^18 || ^19"
45
45
},
46
46
"devDependencies" : {
47
- "@graphiql/react" : " ^0.30 .0" ,
47
+ "@graphiql/react" : " ^0.31 .0" ,
48
48
"@vitejs/plugin-react" : " ^4.4.1" ,
49
49
"graphql" : " ^16.9.0" ,
50
50
"react" : " ^19.1.0" ,
Original file line number Diff line number Diff line change
1
+ # @graphiql/plugin-history
2
+
3
+ ## 0.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [ #3911 ] ( https://github.com/graphql/graphiql/pull/3911 ) [ ` e7c436b ` ] ( https://github.com/graphql/graphiql/commit/e7c436b329a68981bdbd2b662be94875a546a1d6 ) Thanks [ @dimaMachina ] ( https://github.com/dimaMachina ) ! - - export ` cn ` from ` @graphiql/react `
8
+
9
+ - remove following exports from ` @graphiql/react ` and move them in ` @graphiql/plugin-history ` package:
10
+ - ` History `
11
+ - ` HistoryContext `
12
+ - ` HistoryContextType `
13
+ - ` HistoryContextProvider `
14
+ - ` useHistoryContext `
15
+ - ` HISTORY_PLUGIN `
16
+ - remove types from ` @graphiql/react ` (use ` ComponentProps<typeof MyContextProviderProps> ` instead):
17
+ - ` HistoryContextProviderProps `
18
+ - ` ExecutionContextProviderProps `
19
+ - ` EditorContextProviderProps `
20
+ - ` ExplorerContextProviderProps `
21
+ - ` PluginContextProviderProps `
22
+ - ` SchemaContextProviderProps `
23
+ - ` StorageContextProviderProps `
24
+ - ` GraphiQLProviderProps `
25
+
26
+ - Updated dependencies [[ ` e7c436b ` ] ( https://github.com/graphql/graphiql/commit/e7c436b329a68981bdbd2b662be94875a546a1d6 )] :
27
+ - @graphiql/react @0.31.0
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @graphiql/plugin-history" ,
3
- "version" : " 0.0.0 " ,
3
+ "version" : " 0.0.1 " ,
4
4
"sideEffects" : false ,
5
5
"repository" : {
6
6
"type" : " git" ,
41
41
"dependencies" : {
42
42
"react-compiler-runtime" : " 19.1.0-rc.1" ,
43
43
"@graphiql/toolkit" : " ^0.11.2" ,
44
- "@graphiql/react" : " ^0.30 .0"
44
+ "@graphiql/react" : " ^0.31 .0"
45
45
},
46
46
"devDependencies" : {
47
47
"@testing-library/react" : " ^16.1.0" ,
Original file line number Diff line number Diff line change 1
1
# @graphiql/react
2
2
3
+ ## 0.31.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [ #3911 ] ( https://github.com/graphql/graphiql/pull/3911 ) [ ` e7c436b ` ] ( https://github.com/graphql/graphiql/commit/e7c436b329a68981bdbd2b662be94875a546a1d6 ) Thanks [ @dimaMachina ] ( https://github.com/dimaMachina ) ! - - export ` cn ` from ` @graphiql/react `
8
+
9
+ - remove following exports from ` @graphiql/react ` and move them in ` @graphiql/plugin-history ` package:
10
+ - ` History `
11
+ - ` HistoryContext `
12
+ - ` HistoryContextType `
13
+ - ` HistoryContextProvider `
14
+ - ` useHistoryContext `
15
+ - ` HISTORY_PLUGIN `
16
+ - remove types from ` @graphiql/react ` (use ` ComponentProps<typeof MyContextProviderProps> ` instead):
17
+ - ` HistoryContextProviderProps `
18
+ - ` ExecutionContextProviderProps `
19
+ - ` EditorContextProviderProps `
20
+ - ` ExplorerContextProviderProps `
21
+ - ` PluginContextProviderProps `
22
+ - ` SchemaContextProviderProps `
23
+ - ` StorageContextProviderProps `
24
+ - ` GraphiQLProviderProps `
25
+
3
26
## 0.30.0
4
27
5
28
### Minor Changes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @graphiql/react" ,
3
- "version" : " 0.30 .0" ,
3
+ "version" : " 0.31 .0" ,
4
4
"sideEffects" : false ,
5
5
"repository" : {
6
6
"type" : " git" ,
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## 4.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [ #3911 ] ( https://github.com/graphql/graphiql/pull/3911 ) [ ` e7c436b ` ] ( https://github.com/graphql/graphiql/commit/e7c436b329a68981bdbd2b662be94875a546a1d6 ) Thanks [ @dimaMachina ] ( https://github.com/dimaMachina ) ! - - export ` cn ` from ` @graphiql/react `
8
+
9
+ - remove following exports from ` @graphiql/react ` and move them in ` @graphiql/plugin-history ` package:
10
+ - ` History `
11
+ - ` HistoryContext `
12
+ - ` HistoryContextType `
13
+ - ` HistoryContextProvider `
14
+ - ` useHistoryContext `
15
+ - ` HISTORY_PLUGIN `
16
+ - remove types from ` @graphiql/react ` (use ` ComponentProps<typeof MyContextProviderProps> ` instead):
17
+ - ` HistoryContextProviderProps `
18
+ - ` ExecutionContextProviderProps `
19
+ - ` EditorContextProviderProps `
20
+ - ` ExplorerContextProviderProps `
21
+ - ` PluginContextProviderProps `
22
+ - ` SchemaContextProviderProps `
23
+ - ` StorageContextProviderProps `
24
+ - ` GraphiQLProviderProps `
25
+
26
+ - Updated dependencies [[ ` e7c436b ` ] ( https://github.com/graphql/graphiql/commit/e7c436b329a68981bdbd2b662be94875a546a1d6 )] :
27
+ - @graphiql/plugin-history @0.0.1
28
+ - @graphiql/react @0.31.0
29
+
3
30
## 4.0.0
4
31
5
32
### Major Changes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " graphiql" ,
3
- "version" : " 4.0.0 " ,
3
+ "version" : " 4.0.1 " ,
4
4
"sideEffects" : false ,
5
5
"description" : " An graphical interactive in-browser GraphQL IDE." ,
6
6
"contributors" : [
47
47
},
48
48
"dependencies" : {
49
49
"react-compiler-runtime" : " 19.1.0-rc.1" ,
50
- "@graphiql/react" : " ^0.30 .0" ,
51
- "@graphiql/plugin-history" : " ^0.0.0 "
50
+ "@graphiql/react" : " ^0.31 .0" ,
51
+ "@graphiql/plugin-history" : " ^0.0.1 "
52
52
},
53
53
"peerDependencies" : {
54
54
"graphql" : " ^15.5.0 || ^16.0.0 || ^17.0.0" ,
You can’t perform that action at this time.
0 commit comments