Socket
Socket
Sign inDemoInstall

nukak

Package Overview
Dependencies
Maintainers
1
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nukak - npm Package Versions

13
8

1.1.0

Diff

Changelog

Source

[1.1.0] - 2024-08-11

  • Add support for upsert operations.
  • Migrate SQLite package driver from sqlite3 to better-sqlite3 for better performance.
  • Make Maria package to use the RETURNING id clause to get the inserted IDs.
rogerpadilla
published 1.0.2 •

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) in the entities with eager: false (by default all fields are eager: true).
  • Allow to set a field as non-updatable (i.e. insertable and read-only) in the entities with updatable: false (by default all fields are updatable: true).
rogerpadilla
published 0.4.6 •

rogerpadilla
published 0.4.2 •

rogerpadilla
published 0.3.5 •

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;
    });
    
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