File tree 5 files changed +7
-6
lines changed
5 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ JWT Access and Service Account Credentials | provided by the [Google Auth Librar
15
15
Interceptors | :heavy_check_mark : | :heavy_check_mark :
16
16
Connection Keepalives | :heavy_check_mark : | :heavy_check_mark :
17
17
HTTP Connect Support | :heavy_check_mark : | :heavy_check_mark :
18
- Retries | :heavy_check_mark : | :x :
18
+ Retries | :heavy_check_mark : (without hedging) | :heavy_check_mark : (including hedging)
19
19
Stats/tracing/monitoring | :heavy_check_mark : | :x :
20
20
Load Balancing | :heavy_check_mark : | :heavy_check_mark :
21
21
Initial Metadata Options | :heavy_check_mark : | only ` waitForReady `
Original file line number Diff line number Diff line change @@ -28,4 +28,5 @@ const client = new MyServiceClient('xds:///example.com:123');
28
28
- [ xDS Circuit Breaking] ( https://github.com/grpc/proposal/blob/master/A32-xds-circuit-breaking.md )
29
29
- [ xDS Client-Side Fault Injection] ( https://github.com/grpc/proposal/blob/master/A33-Fault-Injection.md )
30
30
- [ Client Status Discovery Service] ( https://github.com/grpc/proposal/blob/master/A40-csds-support.md )
31
- - [ Outlier Detection] ( https://github.com/grpc/proposal/blob/master/A50-xds-outlier-detection.md )
31
+ - [ Outlier Detection] ( https://github.com/grpc/proposal/blob/master/A50-xds-outlier-detection.md )
32
+ - [ xDS Retry Support] ( https://github.com/grpc/proposal/blob/master/A44-xds-retry.md )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @grpc/grpc-js-xds" ,
3
- "version" : " 1.7 .0" ,
3
+ "version" : " 1.8 .0" ,
4
4
"description" : " Plugin for @grpc/grpc-js. Adds the xds:// URL scheme and associated features." ,
5
5
"main" : " build/src/index.js" ,
6
6
"scripts" : {
47
47
"re2-wasm" : " ^1.0.1"
48
48
},
49
49
"peerDependencies" : {
50
- "@grpc/grpc-js" : " ~1.7 .0"
50
+ "@grpc/grpc-js" : " ~1.8 .0"
51
51
},
52
52
"engines" : {
53
53
"node" : " >=10.10.0"
Original file line number Diff line number Diff line change 17
17
18
18
export const EXPERIMENTAL_FAULT_INJECTION = ( process . env . GRPC_XDS_EXPERIMENTAL_FAULT_INJECTION ?? 'true' ) === 'true' ;
19
19
export const EXPERIMENTAL_OUTLIER_DETECTION = ( process . env . GRPC_EXPERIMENTAL_ENABLE_OUTLIER_DETECTION ?? 'true' ) === 'true' ;
20
- export const EXPERIMENTAL_RETRY = process . env . GRPC_XDS_EXPERIMENTAL_ENABLE_RETRY === 'true' ;
20
+ export const EXPERIMENTAL_RETRY = ( process . env . GRPC_XDS_EXPERIMENTAL_ENABLE_RETRY ?? 'true' ) === 'true' ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @grpc/grpc-js" ,
3
- "version" : " 1.7.3 " ,
3
+ "version" : " 1.8.0 " ,
4
4
"description" : " gRPC Library for Node - pure JS implementation" ,
5
5
"homepage" : " https://grpc.io/" ,
6
6
"repository" : " https://github.com/grpc/grpc-node/tree/master/packages/grpc-js" ,
You can’t perform that action at this time.
0 commit comments