Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@naturalcycles/db-lib

Package Overview
Dependencies
Maintainers
3
Versions
301
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@naturalcycles/db-lib - npm Package Compare versions

Comparing version 1.13.0 to 1.13.1

7

CHANGELOG.md

@@ -0,1 +1,8 @@

## [1.13.1](https://github.com/NaturalCycles/db-lib/compare/v1.13.0...v1.13.1) (2019-09-18)
### Bug Fixes
* daoTest ([808e4a7](https://github.com/NaturalCycles/db-lib/commit/808e4a7))
# [1.13.0](https://github.com/NaturalCycles/db-lib/compare/v1.12.0...v1.13.0) (2019-09-18)

@@ -2,0 +9,0 @@

2

dist/testing/daoTest.js

@@ -48,3 +48,3 @@ "use strict";

expect(js_lib_1._sortBy(itemsLoaded, 'id')).toEqual(expectedItems.filter(i => i.even));
q = new dbQuery_1.DBQuery(test_model_1.TEST_TABLE, 'desc').order('id', true);
q = new dbQuery_1.DBQuery(test_model_1.TEST_TABLE, 'desc').order('k1', true);
itemsLoaded = await dao.runQuery(q);

@@ -51,0 +51,0 @@ expect(itemsLoaded).toEqual([...expectedItems].reverse());

@@ -38,3 +38,3 @@ {

},
"version": "1.13.0",
"version": "1.13.1",
"description": "Lowest Common Denominator API to supported Databases",

@@ -41,0 +41,0 @@ "keywords": [

@@ -69,3 +69,3 @@ import { _pick, _sortBy } from '@naturalcycles/js-lib'

q = new DBQuery<TestItem>(TEST_TABLE, 'desc').order('id', true)
q = new DBQuery<TestItem>(TEST_TABLE, 'desc').order('k1', true)
itemsLoaded = await dao.runQuery(q)

@@ -72,0 +72,0 @@ expect(itemsLoaded).toEqual([...expectedItems].reverse())

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