Compare commits

...

2 Commits

Author SHA1 Message Date
Michael Lumish
3dd281b00f
Merge pull request #3014 from murgatroid99/grpc-js_v1.14_bump
grpc-js(-xds): Bump to 1.14.0 and update README
2025-09-15 13:28:41 -07:00
Michael Lumish
26c5fe4fd5 grpc-js(-xds): Bump to 1.14.0 and update README 2025-09-12 15:43:04 -07:00
3 changed files with 6 additions and 4 deletions

View File

@ -31,9 +31,11 @@ const client = new MyServiceClient('xds:///example.com:123');
- [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)
- [xDS Aggregate and Logical DNS Clusters](https://github.com/grpc/proposal/blob/master/A37-xds-aggregate-and-logical-dns-clusters.md)
- [xDS Federation](https://github.com/grpc/proposal/blob/master/A47-xds-federation.md) (Currently experimental, enabled by environment variable `GRPC_EXPERIMENTAL_XDS_FEDERATION`)
- [xDS Federation](https://github.com/grpc/proposal/blob/master/A47-xds-federation.md)
- [xDS Custom Load Balancer Configuration](https://github.com/grpc/proposal/blob/master/A52-xds-custom-lb-policies.md) (Custom load balancer registration not currently supported)
- [xDS Ring Hash LB Policy](https://github.com/grpc/proposal/blob/master/A42-xds-ring-hash-lb-policy.md)
- [`pick_first` via xDS](https://github.com/grpc/proposal/blob/master/A62-pick-first.md#pick_first-via-xds-1) (Currently experimental, enabled by environment variable `GRPC_EXPERIMENTAL_PICKFIRST_LB_CONFIG`)
- [xDS-Enabled Servers](https://github.com/grpc/proposal/blob/master/A36-xds-for-servers.md)
- [xDS-Based Security for gRPC Clients and Servers](https://github.com/grpc/proposal/blob/master/A29-xds-tls-security.md)
- [xDS RBAC Support](https://github.com/grpc/proposal/blob/master/A41-xds-rbac.md)
- [`weighted_round_robin` LB policy](https://github.com/grpc/proposal/blob/master/A58-client-side-weighted-round-robin-lb-policy.md) (Inclusion in xDS registry is currently experimental, enabled by environment variable `GRPC_EXPERIMENTAL_XDS_WRR_LB`)

View File

@ -1,6 +1,6 @@
{
"name": "@grpc/grpc-js-xds",
"version": "1.13.0",
"version": "1.14.0",
"description": "Plugin for @grpc/grpc-js. Adds the xds:// URL scheme and associated features.",
"main": "build/src/index.js",
"scripts": {
@ -55,7 +55,7 @@
"xxhash-wasm": "^1.0.2"
},
"peerDependencies": {
"@grpc/grpc-js": "~1.13.0"
"@grpc/grpc-js": "~1.14.0"
},
"engines": {
"node": ">=10.10.0"

View File

@ -1,6 +1,6 @@
{
"name": "@grpc/grpc-js",
"version": "1.13.4",
"version": "1.14.0",
"description": "gRPC Library for Node - pure JS implementation",
"homepage": "https://grpc.io/",
"repository": "https://github.com/grpc/grpc-node/tree/master/packages/grpc-js",