Skip to content

Commit 4898efc

Browse files
committed
Publish
- apollo-codegen-core@0.30.3 - apollo-codegen-flow@0.30.3 - apollo-codegen-scala@0.30.3 - apollo-codegen-swift@0.30.3 - apollo-codegen-typescript@0.30.3 - apollo-env@0.2.5 - apollo-language-server@1.1.3 - @apollographql/apollo-tools@0.2.8 - apollo@2.1.3 - vscode-apollo@1.2.3
1 parent 6d185c9 commit 4898efc

11 files changed

Lines changed: 47 additions & 18 deletions

File tree

packages/apollo-codegen-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "apollo-codegen-core",
33
"description": "Core generator APIs for Apollo Codegen",
4-
"version": "0.30.1",
4+
"version": "0.30.3",
55
"author": "Apollo GraphQL <opensource@apollographql.com>",
66
"license": "MIT",
77
"repository": {

packages/apollo-codegen-flow/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "apollo-codegen-flow",
33
"description": "Flow generator module for Apollo Codegen",
4-
"version": "0.30.1",
4+
"version": "0.30.3",
55
"author": "Apollo GraphQL <opensource@apollographql.com>",
66
"license": "MIT",
77
"repository": {

packages/apollo-codegen-scala/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "apollo-codegen-scala",
33
"description": "Scala generator module for Apollo Codegen",
4-
"version": "0.30.1",
4+
"version": "0.30.3",
55
"author": "Apollo GraphQL <opensource@apollographql.com>",
66
"license": "MIT",
77
"repository": {

packages/apollo-codegen-swift/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "apollo-codegen-swift",
33
"description": "Swift generator module for Apollo Codegen",
4-
"version": "0.30.1",
4+
"version": "0.30.3",
55
"author": "Apollo GraphQL <opensource@apollographql.com>",
66
"license": "MIT",
77
"repository": {

packages/apollo-codegen-typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "apollo-codegen-typescript",
33
"description": "TypeScript generator module for Apollo Codegen",
4-
"version": "0.30.1",
4+
"version": "0.30.3",
55
"author": "Apollo GraphQL <opensource@apollographql.com>",
66
"license": "MIT",
77
"repository": {

packages/apollo-env/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apollo-env",
3-
"version": "0.2.3",
3+
"version": "0.2.5",
44
"author": "opensource@apollographql.com",
55
"license": "MIT",
66
"repository": {

packages/apollo-language-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "apollo-language-server",
33
"description": "A language server for Apollo GraphQL projects",
4-
"version": "1.1.1",
4+
"version": "1.1.3",
55
"author": "Apollo GraphQL <opensource@apollographql.com>",
66
"license": "MIT",
77
"repository": {

packages/apollo-tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apollographql/apollo-tools",
3-
"version": "0.2.6",
3+
"version": "0.2.8",
44
"author": "Apollo GraphQL <opensource@apollographql.com>",
55
"license": "MIT",
66
"repository": {

packages/apollo/README.md

Lines changed: 37 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ $ npm install -g apollo
2121
$ apollo COMMAND
2222
running command...
2323
$ apollo (-v|--version|version)
24-
apollo/2.1.1 darwin-x64 node-v10.10.0
24+
apollo/2.1.3 darwin-x64 node-v10.10.0
2525
$ apollo --help [COMMAND]
2626
USAGE
2727
$ apollo COMMAND
@@ -66,9 +66,16 @@ OPTIONS
6666
6767
--endpoint=endpoint The url of your service
6868
69+
--excludes=excludes Glob of files to exclude for GraphQL operations. Caveat: this doesn't currently
70+
work in watch mode
71+
6972
--header=header Additional headers to send to server for introspectionQuery
7073
74+
--includes=includes Glob of files to search for GraphQL operations
75+
7176
--key=key The API key for the Apollo Engine service
77+
78+
--queries=queries Deprecated in favor of the includes flag
7279
```
7380

7481
_See code: [src/commands/client/check.ts](https://github.com/apollographql/apollo-tooling/blob/master/packages/apollo/src/commands/client/check.ts)_
@@ -107,13 +114,20 @@ OPTIONS
107114
108115
--endpoint=endpoint The url of your service
109116
117+
--excludes=excludes Glob of files to exclude for GraphQL operations. Caveat: this doesn't
118+
currently work in watch mode
119+
110120
--globalTypesFile=globalTypesFile By default, TypeScript will put a file named "globalTypes.ts" inside the
111121
"output" directory. Set "globalTypesFile" to specify a different path.
112122
113123
--header=header Additional headers to send to server for introspectionQuery
114124
125+
--includes=includes Glob of files to search for GraphQL operations
126+
115127
--key=key The API key for the Apollo Engine service
116128
129+
--localSchemaFile=localSchemaFile Path to your local GraphQL schema file (introspection result or SDL)
130+
117131
--mergeInFieldsFromFragmentSpreads Merge fragment fields onto its enclosing type
118132
119133
--namespace=namespace The namespace to emit generated code into.
@@ -132,7 +146,7 @@ OPTIONS
132146
133147
--passthroughCustomScalars Use your own types for custom scalars
134148
135-
--queries=queries Glob of files to watch for recompilation
149+
--queries=queries Deprecated in favor of the includes flag
136150
137151
--tagName=tagName [default: gql] Name of the template literal tag used to identify template
138152
literals containing GraphQL queries in Javascript/Typescript code
@@ -154,7 +168,7 @@ _See code: [src/commands/client/codegen.ts](https://github.com/apollographql/apo
154168

155169
## `apollo client:extract OUTPUT`
156170

157-
Push a service to Engine
171+
Extract queries from a client
158172

159173
```
160174
USAGE
@@ -175,9 +189,16 @@ OPTIONS
175189
176190
--endpoint=endpoint The url of your service
177191
192+
--excludes=excludes Glob of files to exclude for GraphQL operations. Caveat: this doesn't currently
193+
work in watch mode
194+
178195
--header=header Additional headers to send to server for introspectionQuery
179196
197+
--includes=includes Glob of files to search for GraphQL operations
198+
180199
--key=key The API key for the Apollo Engine service
200+
201+
--queries=queries Deprecated in favor of the includes flag
181202
```
182203

183204
_See code: [src/commands/client/extract.ts](https://github.com/apollographql/apollo-tooling/blob/master/packages/apollo/src/commands/client/extract.ts)_
@@ -202,9 +223,16 @@ OPTIONS
202223
203224
--endpoint=endpoint The url of your service
204225
226+
--excludes=excludes Glob of files to exclude for GraphQL operations. Caveat: this doesn't currently
227+
work in watch mode
228+
205229
--header=header Additional headers to send to server for introspectionQuery
206230
231+
--includes=includes Glob of files to search for GraphQL operations
232+
207233
--key=key The API key for the Apollo Engine service
234+
235+
--queries=queries Deprecated in favor of the includes flag
208236
```
209237

210238
_See code: [src/commands/client/push.ts](https://github.com/apollographql/apollo-tooling/blob/master/packages/apollo/src/commands/client/push.ts)_
@@ -396,11 +424,12 @@ USAGE
396424
$ apollo service:push
397425
398426
OPTIONS
399-
-c, --config=config Path to your Apollo config file
400-
-t, --tag=tag [default: current] The published tag to check this service against
401-
--endpoint=endpoint The url of your service
402-
--header=header Additional headers to send to server for introspectionQuery
403-
--key=key The API key for the Apollo Engine service
427+
-c, --config=config Path to your Apollo config file
428+
-t, --tag=tag [default: current] The tag to publish this service to
429+
--endpoint=endpoint The url of your service
430+
--header=header Additional headers to send to server for introspectionQuery
431+
--key=key The API key for the Apollo Engine service
432+
--localSchemaFile=localSchemaFile Path to your local GraphQL schema file (introspection result or SDL)
404433
405434
ALIASES
406435
$ apollo schema:publish

packages/apollo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "apollo",
33
"description": "Command line tool for Apollo GraphQL",
4-
"version": "2.1.1",
4+
"version": "2.1.3",
55
"referenceID": "21ad0845-c235-422e-be7d-a998310df972",
66
"author": "Apollo GraphQL <opensource@apollographql.com>",
77
"license": "MIT",

0 commit comments

Comments
 (0)