Commit Graph

496 Commits

Author SHA1 Message Date
murgatroid99 31a0019d99 Set _XOPEN_SOURCE only for BoringSSL 2018-10-24 12:35:45 -07:00
murgatroid99 b7f7bf0dce Increase _XOPEN_SOURCE macro to 700 2018-10-24 11:00:25 -07:00
murgatroid99 3eb67d8038 Remove use of OPENSSL_NO_THREADS with BoringSSL 2018-10-24 10:38:25 -07:00
Michael Lumish 8df65a91a2
Merge pull request #557 from WeiranFang/call-invocation-transformer
Call invocation transformer
2018-10-19 10:35:34 -07:00
Michael Lumish 1e10613649
Merge pull request #576 from murgatroid99/v1.16.0-pre1_bump
Bump submodule and version to 1.16.0-pre1
2018-10-18 09:14:03 -07:00
Michael Lumish eddfe265bd
Merge pull request #577 from murgatroid99/proto_loader_abs_path_fix
@grpc/proto-loader: Fix absolute path handling and improve reporting of loading failures
2018-10-18 09:03:37 -07:00
murgatroid99 6364d0a92f @grpc/proto-loader: Fix absolute path handling and improve reporting of loading failures 2018-10-17 15:35:05 -07:00
murgatroid99 6e7035925d Bump submodule and version to 1.16.0-pre1 2018-10-17 13:35:39 -07:00
Max Vorobev 0aedb0768c Generate JS file even if no services are defined in proto file; fix #574 2018-10-17 15:08:40 +03:00
murgatroid99 81a413cd84 Native: Use non-deprecated function to call checkServerIdentity cb 2018-10-16 15:43:18 -07:00
murgatroid99 5683bc3bba Bump @grpc/grpc-js to 0.3.2 2018-09-28 13:42:19 -07:00
Michael Lumish e83f240f73
Merge pull request #561 from cjihrig/dep
grpc-js-core: make semver a prod dependency
2018-09-28 12:46:03 -07:00
Michael Lumish 983297fe0a
Merge pull request #560 from cjihrig/read
grpc-js-core: update compression flag byte offset
2018-09-28 12:45:45 -07:00
cjihrig 2f6484f63d
grpc-js-core: make semver a prod dependency
semver is now used in index.ts, meaning that it needs to be
included in the "dependencies" section of the package.json,
otherwise deployments that use npm i --production will fail.
2018-09-28 11:00:53 -04:00
cjihrig b4367cd3ab
grpc-js-core: update compression flag byte offset
The compression flag is written to the first byte, but read from
the second byte. Update the read offset to match.
2018-09-27 20:12:43 -04:00
murgatroid99 0203e65f23 Bump @grpc/grpc-js to 0.3.1 2018-09-26 12:52:12 -07:00
Michael Lumish 8664fd90b0
Merge pull request #534 from cjihrig/from-h2-headers
grpc-js-core: ignore reserved headers in fromHttp2Headers()
2018-09-26 12:17:54 -07:00
Nicolas Noble 696aafe19d
s/usage/features/ 2018-09-26 11:11:34 -07:00
Nicolas Noble 41c840d186
Add a link to protobufjs' documentation. 2018-09-26 09:59:10 -07:00
Nicolas Noble a1a74ca19a
Add a jsdoc @deprecated for grpc.load. 2018-09-26 09:55:09 -07:00
Michael Lumish f3ac739175
Merge pull request #554 from cjihrig/creds
grpc-js-core: delay composing credentials
2018-09-25 15:48:51 -07:00
murgatroid99 a3e71b3eeb Fix missing property in ClientHttp2StreamMock 2018-09-25 12:20:53 -07:00
cjihrig 6e87e48607
grpc-js-core: delay composing credentials
The channel and stream credentials may change between the time
a CallCredentialsFilterFactory is created and the time that
the metadata is sent. This commit delays composing the credentials
until the time metadata is sent.
2018-09-25 12:57:38 -04:00
Weiran Fang 8320743f6d Retrieve callInvocationTransformer from constructor options. 2018-09-21 09:48:51 -07:00
murgatroid99 0646ef4afd Add protobuf submodule for grpc-tools 2018-09-20 10:32:27 -07:00
murgatroid99 b50fd9b87c Fix include paths in protoc plugin files 2018-09-20 10:27:00 -07:00
murgatroid99 2d261f03a3 Copy protoc plugin files into grpc-tools 2018-09-20 10:17:11 -07:00
Weiran Fang cd6e2062c8 Add checker for call invocation transformer. 2018-09-19 17:50:43 -07:00
Michael Lumish 1b11238d38
Merge pull request #538 from cjihrig/return-await
grpc-js-core: remove use of return await
2018-09-14 10:03:58 -07:00
Michael Lumish a4ed8a38a7
Merge pull request #547 from alexander-fenster/get-request-headers
grpc-native-core: do not use deprecated getRequestMetadata
2018-09-13 17:39:29 -07:00
Michael Lumish 10c94a9e1e
Fix indentation style 2018-09-13 16:31:57 -07:00
Alexander Fenster 4f39eae38c supporting both old and new versions of google-auth-library 2018-09-13 11:46:42 -07:00
murgatroid99 971ddc617a Native: fix build instructions to account for move to new repo 2018-09-13 11:31:03 -07:00
Alexander Fenster 2b291ed901 revert package.json change 2018-09-13 10:37:58 -07:00
Alexander Fenster 73a97f0aff fix: use getRequestHeaders instead of getRequestMetadata 2018-09-13 10:25:23 -07:00
cjihrig 4ae503abee
grpc-js-core: remove use of return await
return await isn't typically useful in async functions.
2018-09-10 17:44:31 -04:00
cjihrig 27338349a1
grpc-js-core: use Buffer.from in metadata cloning
When cloning binary metadata, use Buffer.from() instead of
Buffer.prototype.slice(), as the latter creates a new Buffer
that shares the same underlying bytes.
2018-09-09 15:42:47 -04:00
cjihrig 0c606f4408
grpc-js-core: ignore reserved headers in fromHttp2Headers()
Metadata.fromHttp2Headers() throws if any reserved headers
are passed. Instead of deleting headers before calling the
function, this commit causes the function to ignore reserved
headers.
2018-09-09 14:57:33 -04:00
Michael Lumish b7b45e6dd7
Merge pull request #527 from murgatroid99/pure_js_version_0.3
Update pure JS version, README
2018-09-06 10:19:18 -07:00
Michael Lumish 1a689a2f4a
Merge pull request #288 from kjin/status-before-end
Pure JS: emit 'status'/'error' before 'end' for server streams
2018-09-05 17:26:04 -07:00
murgatroid99 4c07ed3d66 Update pure JS version, README 2018-09-05 16:54:12 -07:00
cjihrig 0781f5df73
grpc-js-core: run linter when tests are run
This commit runs the js.core.lint job when js.core.test is
run to ensure the linting doesn't get stale.
2018-09-04 19:05:38 -04:00
cjihrig a97e81f422
grpc-js-core: remove unused variables
This commit removes unused variables reported by temporarily
enabling tslint's no-unused-variable rule. Unused function
parameters have not been removed.
2018-09-04 19:05:34 -04:00
cjihrig 03c261538b
grpc-js-core: make gts check pass
This commit makes the gts check command pass.
2018-09-04 19:04:28 -04:00
cjihrig eecefd3249
grpc-js-core: fix lint
This commit makes the lint Gulp task pass again.
2018-09-04 18:46:34 -04:00
Michael Lumish 37f956d92a
Merge pull request #525 from cjihrig/status-builder
grpc-js-core: add StatusBuilder support
2018-09-04 15:43:01 -07:00
cjihrig a4583081dd
grpc-js-core: add StatusBuilder support
This commit ports StatusBuilder to TypeScript.
2018-09-02 09:08:07 -04:00
murgatroid99 46b577a682 Pure js: fix engines field, add runtime check 2018-08-31 15:12:20 -07:00
cjihrig 2c75b64071
grpc-js-core: remove extra map() calls in fromHttp2Headers()
The extra map() calls added an extra loop over the arrays
just to trim() a string. This commit moves the trim() into
the forEach() and drops the map().
2018-08-28 17:21:07 -04:00
cjihrig b64ed1c18e
grpc-js-core: add missing space in error message
This commit adds a missing space to an error message and
updates a test to prevent regressions.
2018-08-28 17:20:32 -04:00