@thi.ng/rstream-query 2.1.5 → 2.1.8

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,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2021-12-13T10:26:00Z
3
+ - **Last updated**: 2022-05-07T11:33:36Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
@@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
9
9
  **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
10
10
  and/or version bumps of transitive dependencies.
11
11
 
12
+ ### [2.1.7](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream-query@2.1.7) (2022-04-07)
13
+
14
+ #### ♻️ Refactoring
15
+
16
+ - replace deprecated .substr() w/ .substring() ([0710509](https://github.com/thi-ng/umbrella/commit/0710509))
17
+
12
18
  ## [2.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream-query@2.1.0) (2021-11-17)
13
19
 
14
20
  #### 🚀 Features
package/README.md CHANGED
@@ -248,4 +248,4 @@ If this project contributes to an academic publication, please cite it as:
248
248
 
249
249
  ## License
250
250
 
251
- © 2018 - 2021 Karsten Schmidt // Apache Software License 2.0
251
+ © 2018 - 2022 Karsten Schmidt // Apache Software License 2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/rstream-query",
3
- "version": "2.1.5",
3
+ "version": "2.1.8",
4
4
  "description": "@thi.ng/rstream based triple store & reactive query engine",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,24 +34,24 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.3.3",
38
- "@thi.ng/associative": "^6.1.4",
39
- "@thi.ng/checks": "^3.1.3",
40
- "@thi.ng/equiv": "^2.1.3",
41
- "@thi.ng/errors": "^2.1.3",
42
- "@thi.ng/logger": "^1.1.3",
43
- "@thi.ng/math": "^5.2.0",
44
- "@thi.ng/rstream": "^7.2.2",
45
- "@thi.ng/rstream-dot": "^2.1.5",
46
- "@thi.ng/transducers": "^8.2.0"
37
+ "@thi.ng/api": "^8.3.6",
38
+ "@thi.ng/associative": "^6.1.7",
39
+ "@thi.ng/checks": "^3.1.6",
40
+ "@thi.ng/equiv": "^2.1.6",
41
+ "@thi.ng/errors": "^2.1.6",
42
+ "@thi.ng/logger": "^1.1.6",
43
+ "@thi.ng/math": "^5.3.2",
44
+ "@thi.ng/rstream": "^7.2.5",
45
+ "@thi.ng/rstream-dot": "^2.1.8",
46
+ "@thi.ng/transducers": "^8.3.2"
47
47
  },
48
48
  "devDependencies": {
49
- "@microsoft/api-extractor": "^7.19.2",
50
- "@thi.ng/testament": "^0.2.3",
49
+ "@microsoft/api-extractor": "^7.23.1",
50
+ "@thi.ng/testament": "^0.2.6",
51
51
  "rimraf": "^3.0.2",
52
52
  "tools": "^0.0.1",
53
- "typedoc": "^0.22.10",
54
- "typescript": "^4.5.3"
53
+ "typedoc": "^0.22.15",
54
+ "typescript": "^4.6.4"
55
55
  },
56
56
  "keywords": [
57
57
  "database",
@@ -80,33 +80,33 @@
80
80
  ],
81
81
  "exports": {
82
82
  ".": {
83
- "import": "./index.js"
83
+ "default": "./index.js"
84
84
  },
85
85
  "./api": {
86
- "import": "./api.js"
86
+ "default": "./api.js"
87
87
  },
88
88
  "./convert": {
89
- "import": "./convert.js"
89
+ "default": "./convert.js"
90
90
  },
91
91
  "./logger": {
92
- "import": "./logger.js"
92
+ "default": "./logger.js"
93
93
  },
94
94
  "./pattern": {
95
- "import": "./pattern.js"
95
+ "default": "./pattern.js"
96
96
  },
97
97
  "./qvar": {
98
- "import": "./qvar.js"
98
+ "default": "./qvar.js"
99
99
  },
100
100
  "./store": {
101
- "import": "./store.js"
101
+ "default": "./store.js"
102
102
  },
103
103
  "./xforms": {
104
- "import": "./xforms.js"
104
+ "default": "./xforms.js"
105
105
  }
106
106
  },
107
107
  "thi.ng": {
108
108
  "parent": "@thi.ng/rstream",
109
109
  "year": 2018
110
110
  },
111
- "gitHead": "1ba92c6b9509e74e509b4c0b875fc380a97bbbc1\n"
111
+ "gitHead": "cf084be5fd5932226054d2dd32bad35481379f5d\n"
112
112
  }
package/qvar.js CHANGED
@@ -4,7 +4,7 @@ let AUTO_QVAR_ID = 0;
4
4
  export const isQVar = (x) => isString(x) && x.charAt(0) === "?";
5
5
  export const isAutoQVar = (x) => isString(x) && x.indexOf(AUTO_QVAR_PREFIX) == 0;
6
6
  export const autoQVar = () => AUTO_QVAR_PREFIX + (AUTO_QVAR_ID++).toString(36);
7
- export const qvarName = (x) => x.substr(1);
7
+ export const qvarName = (x) => x.substring(1);
8
8
  /**
9
9
  * Returns an optimized query variable solution extractor function based
10
10
  * on given pattern type. `vs`, `vp`, `vo` are flags to indicate if `s`,