From 6d3f313a9defd12489b621896439b3f9ec8cb1ae Mon Sep 17 00:00:00 2001 From: Matt Broadstone Date: Thu, 13 Feb 2020 09:23:50 -0500 Subject: [PATCH] feat: bump wire protocol version for 4.4 NODE-2150 --- lib/core/wireprotocol/constants.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/wireprotocol/constants.js b/lib/core/wireprotocol/constants.js index df2293b515f..49893f8fecf 100644 --- a/lib/core/wireprotocol/constants.js +++ b/lib/core/wireprotocol/constants.js @@ -1,9 +1,9 @@ 'use strict'; const MIN_SUPPORTED_SERVER_VERSION = '2.6'; -const MAX_SUPPORTED_SERVER_VERSION = '4.2'; +const MAX_SUPPORTED_SERVER_VERSION = '4.4'; const MIN_SUPPORTED_WIRE_VERSION = 2; -const MAX_SUPPORTED_WIRE_VERSION = 8; +const MAX_SUPPORTED_WIRE_VERSION = 9; module.exports = { MIN_SUPPORTED_SERVER_VERSION,