Skip to content

Aurora DSQL Connector for node-postgres v0.1.2

Choose a tag to compare

@danielfrankcom danielfrankcom released this 04 Feb 17:49
node/node-postgres/v0.1.2
c4a3da5

Note: This release was originally published on Dec 11, 2025 by @danielfrankcom in awslabs/aurora-dsql-nodejs-connector.


This release exports CommonJS files for consumption by CommonJS module users.

This avoids import errors like the following, which occurred for non-ESM imports:

src/index.ts:1:34 - error TS1479: The current file is a CommonJS module whose imports will produce 'require' calls;
however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a
dynamic 'import("@aws/aurora-dsql-node-postgres-connector")' call instead.

To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json
file with `{ "type": "module" }`.

1 import { AuroraDSQLClient } from "@aws/aurora-dsql-node-postgres-connector";
                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Found 1 error in src/index.ts:1

What's Changed

New Contributors

Full Changelog: node/node-postgres/v0.1.1...node/node-postgres/v0.1.2