You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

nukak-postgres

Package Overview
Dependencies
Maintainers
1
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nukak-postgres - npm Package Versions

1
35
8

0.3.1

Diff
r
rogerpadilla
published 0.3.1 •

Changelog

Source

[0.3.1] - 2023-10-19

  • Remove $group and $having as they detriment type safety as currently implemented (support may be redesigned later if required).
  • Improve type safety of $project operator.
  • Improve type safety of $filter operator.
  • Remove projection operators ($count, $min, $max, $min, and $sum) as they detriment type safety as currently implemented. This can be done via Virtual fields instead as currently supported for better type safety.
r
rogerpadilla
published 0.3.0 •

Changelog

Source

[0.3.0] - 2023-10-18

  • Add support for transaction operations using a QuerierPool. Automatically wraps the code of the callback inside a transaction, and auto-releases the querier after running.

  • Update dependencies.

    const ids = await querierPool.transaction(async (querier) => {
      const data = await querier.findMany(...);
      const ids = await querier.insertMany(...);
      return ids;
    });
    
r
rogerpadilla
published 0.2.32 •
r
rogerpadilla
published 0.2.31 •
r
rogerpadilla
published 0.2.30 •
r
rogerpadilla
published 0.2.25 •
r
rogerpadilla
published 0.2.24 •
r
rogerpadilla
published 0.2.23 •
r
rogerpadilla
published 0.2.22 •
r
rogerpadilla
published 0.2.21 •

Changelog

Source

[0.2.21] 2023-04-15

  • fix(nukak-browser): check if ids are returned before use $in to delete them.

  • Reuse community open-source npm packages to escape literal-values according to each DB vendor.