Node.js Driver release notes for 2026¶
This article contains the release notes for the Node.js Driver, including the following when applicable:
Behavior changes
New features
Customer-facing bug fixes
Snowflake uses semantic versioning for Node.js Driver updates.
See Node.js Driver for documentation.
Version 2.3.6 (Mar 25, 2026)¶
New features and updates¶
Added support for every authenticator type (including external browser and Okta) in
connect(), matchingconnectAsync().Removed the
@google-cloud/storagedependency. GCS transfers now use the JSON API directly. TheforceGCPUseDownscopedCredentialconnection option has been removed as it is no longer needed.Updated the default
jsonColumnVariantParserto fall back to eval-based parsing for non-JSON-compliant variant values (such asundefined,NaN, andInfinity), restoring pre-2.3.5 behavior while keepingJSON.parseas the primary parser.
Bug fixes¶
Fixed the
OAUTH_AUTHORIZATION_CODEauthenticator not honoring theopenExternalBrowserCallbackconnection option.Fixed
createConnection()andcreatePool()types to accept no arguments, matching the runtime behavior of loading configuration fromconnections.toml.Fixed the
accountfield in theConnectionOptionstype to be optional, since it can be derived fromaccessUrlorhost.Fixed external browser SSO authentication crashing when the SSO URL request returns a server-side error.
Version 2.3.5 (Mar 17, 2026)¶
New features and updates¶
Added the ability to skip token file permission checks by using the
SF_SKIP_TOKEN_FILE_PERMISSIONS_VERIFICATIONenvironment variable.Added Node 18+ to engines, which is the minimum officially supported version since the 2.x release.
Added the
PLATFORMfield tologin-requesttelemetry.Added request retries to previously uncovered query execution paths.
Added the
rowStreamHighWaterMarkconnection option to control how many rows are buffered when streaming query results throughstatement.streamRows().Added a warning when converting query results to JavaScript numbers with precision loss.
Added snake_case key support when loading
connections.tomlthroughcreateConnection()with no arguments.Exported the
normalizeConnectionOptions()utility to convert snake_case connection keys to camelCase, with key aliases and acronym overrides.Added the
LIBC_FAMILYandLIBC_VERSIONfields tologin-requesttelemetry.Added the
crlDownloadMaxSizeconfiguration option to enforce a maximum response size limit when downloading CRL files.Added RSASSA-PSS signature verification support for CRL validation.
Improved error details when OAuth fails.
Changed the default
jsonColumnVariantParsertoJSON.parse.Updated Linux GNU minicore binaries to target glibc 2.18 for broader compatibility with older Linux distributions.
Bug fixes¶
Fixed OAuth crashing when using bundlers.
Fixed
Bindstyping to allow readonly arrays.Fixed the
connectAsync()method resolving before the connection is completed.Fixed incorrect handling of a callback argument that should be optional in
connect()andconnectAsync().Fixed a bug where an invalid JWT was generated if a user accidentally set both the account and the host in the configuration.
Fixed a bug where parsing the JSON media type failed when it included an optional parameter from Microsoft Identity Platform v2.0 tokens, causing the OAuth Client Credentials flow to fail.
Fixed
disableSamlUrlChecktyping to use the correct casing:disableSamlURLCheck.Fixed
getDefaultCacheDir()crashing in environments where no user home directory is configured by falling back toos.tmpdir().Fixed
SF_OCSP_RESPONSE_CACHE_DIRnot being used directly as the OCSP cache directory.Fixed bugs in
noProxyandNO_PROXYhandling:The
.domain.comwildcard format was not correctly matching the destination host..was incorrectly matching as any character instead of a literal dot.Partial strings were incorrectly matching instead of requiring a full destination match.
Fixed CRL ADVISORY mode to log failures at the warn level instead of debug.
Fixed OAuth Authorization Code reauthentication not using the refreshed access token when the cached access token is expired.
Fixed OAuth Authorization Code refresh token being removed from cache when the IDP does not return a new one.
Fixed an unhandled promise rejection when the server returns malformed query responses.
Version 2.3.4 (Feb 09, 2026)¶
New features and updates¶
Reduced memory usage during PUT operations.
Added
APPLICATION_PATHtologin-requesttelemetry.Added Linux distribution details parsed from
/etc/os-releasetologin-requesttelemetry.Bumped axios to version 1.13.4 to address a bug in axios interceptors.
Bumped other dependencies to their latest minor versions.
Bug fixes¶
Fixed inconsistent retry behavior across HTTP requests and ensured all recoverable failures are properly retried.
Fixed invalid oauth scope when
roleandoauthScopeare missing from the connection configuration.Fixed
APPLICATIONfield not being passed from the connection configuration tologin-requesttelemetry.Fixed build errors in bundlers caused by the
minicoremodule.