dt-toolbox 7.1.1 → 7.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Changelog.md CHANGED
@@ -1,7 +1,13 @@
1
1
  ## Release History
2
2
 
3
+ ### 7.1.2 (2023-09-12)
4
+ - [x] Fix: Dt-Storage method 'from' is not filtering the list if requested 'breadcrumbs' does not exist;
5
+
6
+
7
+
3
8
  ### 7.1.1 (2023-09-05 )
4
9
  - [x] Fix: Multiple queries in same programming scope;
10
+ - [ ] Bug: Dt-Storage method 'from' is not filtering the list if requested 'breadcrumbs' does not exist;
5
11
 
6
12
 
7
13
 
@@ -12,6 +18,7 @@
12
18
  - [x] Fix: Convertor to files shows 'root' in the beginning of the path;
13
19
  - [x] Fix: Convertor to breadcrumbs shows 'root' in the beginning of the path;
14
20
  - [ ] Bug: Multiple queries in same programming scope;
21
+ - [ ] Bug: Dt-Storage method 'from' is not filtering the list if requested 'breadcrumbs' does not exist;
15
22
 
16
23
 
17
24
 
@@ -28,6 +35,7 @@
28
35
  - [ ] Bug: Convertor to files shows 'root' in the beginning of the path;
29
36
  - [ ] Bug: Convertor to breadcrumbs shows 'root' in the beginning of the path;
30
37
  - [ ] Bug: Multiple queries in same programming scope;
38
+ - [ ] Bug: Dt-Storage method 'from' is not filtering the list if requested 'breadcrumbs' does not exist;
31
39
 
32
40
 
33
41
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dt-toolbox",
3
3
  "description": "Data manipulation tool",
4
- "version": "7.1.1",
4
+ "version": "7.1.2",
5
5
  "license": "MIT",
6
6
  "author": "Peter Naydenov",
7
7
  "keywords": [
@@ -1,3 +1,7 @@
1
+ /**
2
+ * Build a new dt-model api
3
+ */
4
+
1
5
  import push from './push.js'
2
6
  import set from './set.js'
3
7
  import connect from './connect.js'
@@ -9,7 +9,10 @@ return function fr ( breadcrumbs ) {
9
9
  , list = []
10
10
  ;
11
11
 
12
- if ( !start ) return this
12
+ if ( !start ) {
13
+ flatIO.setupScanList ( [] )
14
+ return this
15
+ }
13
16
  list.push ( start )
14
17
  findDeep ( indexes, list, start[3] )
15
18
  flatIO.setupScanList ( list )