New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nukak-express

Package Overview
Dependencies
Maintainers
0
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nukak-express - npm Package Versions

1
9

1.0.2

Diff

rogerpadilla
published 1.0.1 •

Changelog

Source

[1.0.1] - 2024-08-10

  • Rename $project operator to $select for consistency with most established frameworks so far.
  • Rename $filter operator to $where for consistency with most established frameworks so far.
rogerpadilla
published 1.0.0 •

Changelog

Source

[1.0.0] - 2024-08-10

  • Allow to set a field as non-eager (i.e. lazy) with eager: false (by default fields are eager: true).
  • Allow to set a field as non-updatable (i.e. insertable and read-only) with updatable: false (by default fields are updatable: true).
rogerpadilla
published 0.4.6 •

rogerpadilla
published 0.4.2 •

rogerpadilla
published 0.4.1 •

rogerpadilla
published 0.3.2 •

Changelog

Source

[0.3.2] - 2023-10-24

  • Improve usage examples in the README.md, and make the overview section more concise.
rogerpadilla
published 0.3.1 •

Changelog

Source

[0.3.1] - 2023-10-19

  1. Remove $group and $having as they detriment type safety as currently implemented (support may be redesigned later if required).
  2. Improve type safety of $project operator.
  3. Improve type safety of $filter operator.
  4. 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.
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;
    });
    
rogerpadilla
published 0.2.32 •

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc