mirror of https://github.com/grpc/grpc-node.git
grpc-js: Prepare for 1.8.0 release
De-experimentalize xDS retry support, and update versions and documentation
This commit is contained in:
parent
8d6b590adc
commit
161af8ca7b
|
@ -15,7 +15,7 @@ JWT Access and Service Account Credentials | provided by the [Google Auth Librar
|
||||||
Interceptors | :heavy_check_mark: | :heavy_check_mark:
|
Interceptors | :heavy_check_mark: | :heavy_check_mark:
|
||||||
Connection Keepalives | :heavy_check_mark: | :heavy_check_mark:
|
Connection Keepalives | :heavy_check_mark: | :heavy_check_mark:
|
||||||
HTTP Connect Support | :heavy_check_mark: | :heavy_check_mark:
|
HTTP Connect Support | :heavy_check_mark: | :heavy_check_mark:
|
||||||
Retries | :heavy_check_mark: | :x:
|
Retries | :heavy_check_mark: (without hedging) | :heavy_check_mark: (including hedging)
|
||||||
Stats/tracing/monitoring | :heavy_check_mark: | :x:
|
Stats/tracing/monitoring | :heavy_check_mark: | :x:
|
||||||
Load Balancing | :heavy_check_mark: | :heavy_check_mark:
|
Load Balancing | :heavy_check_mark: | :heavy_check_mark:
|
||||||
Initial Metadata Options | :heavy_check_mark: | only `waitForReady`
|
Initial Metadata Options | :heavy_check_mark: | only `waitForReady`
|
||||||
|
|
|
@ -29,3 +29,4 @@ const client = new MyServiceClient('xds:///example.com:123');
|
||||||
- [xDS Client-Side Fault Injection](https://github.com/grpc/proposal/blob/master/A33-Fault-Injection.md)
|
- [xDS Client-Side Fault Injection](https://github.com/grpc/proposal/blob/master/A33-Fault-Injection.md)
|
||||||
- [Client Status Discovery Service](https://github.com/grpc/proposal/blob/master/A40-csds-support.md)
|
- [Client Status Discovery Service](https://github.com/grpc/proposal/blob/master/A40-csds-support.md)
|
||||||
- [Outlier Detection](https://github.com/grpc/proposal/blob/master/A50-xds-outlier-detection.md)
|
- [Outlier Detection](https://github.com/grpc/proposal/blob/master/A50-xds-outlier-detection.md)
|
||||||
|
- [xDS Retry Support](https://github.com/grpc/proposal/blob/master/A44-xds-retry.md)
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@grpc/grpc-js-xds",
|
"name": "@grpc/grpc-js-xds",
|
||||||
"version": "1.7.0",
|
"version": "1.8.0",
|
||||||
"description": "Plugin for @grpc/grpc-js. Adds the xds:// URL scheme and associated features.",
|
"description": "Plugin for @grpc/grpc-js. Adds the xds:// URL scheme and associated features.",
|
||||||
"main": "build/src/index.js",
|
"main": "build/src/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -47,7 +47,7 @@
|
||||||
"re2-wasm": "^1.0.1"
|
"re2-wasm": "^1.0.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@grpc/grpc-js": "~1.7.0"
|
"@grpc/grpc-js": "~1.8.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=10.10.0"
|
"node": ">=10.10.0"
|
||||||
|
|
|
@ -17,4 +17,4 @@
|
||||||
|
|
||||||
export const EXPERIMENTAL_FAULT_INJECTION = (process.env.GRPC_XDS_EXPERIMENTAL_FAULT_INJECTION ?? 'true') === 'true';
|
export const EXPERIMENTAL_FAULT_INJECTION = (process.env.GRPC_XDS_EXPERIMENTAL_FAULT_INJECTION ?? 'true') === 'true';
|
||||||
export const EXPERIMENTAL_OUTLIER_DETECTION = (process.env.GRPC_EXPERIMENTAL_ENABLE_OUTLIER_DETECTION ?? 'true') === 'true';
|
export const EXPERIMENTAL_OUTLIER_DETECTION = (process.env.GRPC_EXPERIMENTAL_ENABLE_OUTLIER_DETECTION ?? 'true') === 'true';
|
||||||
export const EXPERIMENTAL_RETRY = process.env.GRPC_XDS_EXPERIMENTAL_ENABLE_RETRY === 'true';
|
export const EXPERIMENTAL_RETRY = (process.env.GRPC_XDS_EXPERIMENTAL_ENABLE_RETRY ?? 'true') === 'true';
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@grpc/grpc-js",
|
"name": "@grpc/grpc-js",
|
||||||
"version": "1.7.3",
|
"version": "1.8.0",
|
||||||
"description": "gRPC Library for Node - pure JS implementation",
|
"description": "gRPC Library for Node - pure JS implementation",
|
||||||
"homepage": "https://grpc.io/",
|
"homepage": "https://grpc.io/",
|
||||||
"repository": "https://github.com/grpc/grpc-node/tree/master/packages/grpc-js",
|
"repository": "https://github.com/grpc/grpc-node/tree/master/packages/grpc-js",
|
||||||
|
|
Loading…
Reference in New Issue