@thi.ng/rstream-query 2.1.6 → 2.1.9

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +7 -1
  2. package/package.json +24 -24
  3. package/qvar.js +1 -1
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2022-03-11T12:13:49Z
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/rstream-query",
3
- "version": "2.1.6",
3
+ "version": "2.1.9",
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.4",
38
- "@thi.ng/associative": "^6.1.5",
39
- "@thi.ng/checks": "^3.1.4",
40
- "@thi.ng/equiv": "^2.1.4",
41
- "@thi.ng/errors": "^2.1.4",
42
- "@thi.ng/logger": "^1.1.4",
43
- "@thi.ng/math": "^5.3.0",
44
- "@thi.ng/rstream": "^7.2.3",
45
- "@thi.ng/rstream-dot": "^2.1.6",
46
- "@thi.ng/transducers": "^8.3.0"
37
+ "@thi.ng/api": "^8.3.6",
38
+ "@thi.ng/associative": "^6.1.8",
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.6",
45
+ "@thi.ng/rstream-dot": "^2.1.9",
46
+ "@thi.ng/transducers": "^8.3.3"
47
47
  },
48
48
  "devDependencies": {
49
- "@microsoft/api-extractor": "^7.19.4",
50
- "@thi.ng/testament": "^0.2.4",
49
+ "@microsoft/api-extractor": "^7.23.1",
50
+ "@thi.ng/testament": "^0.2.7",
51
51
  "rimraf": "^3.0.2",
52
52
  "tools": "^0.0.1",
53
- "typedoc": "^0.22.13",
54
- "typescript": "^4.6.2"
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": "0fc692a3225c068aacafdc4cb6140cf603c67ad8\n"
111
+ "gitHead": "e23901b8582af71d8a29e0ce4929f15ac509f9e5\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`,