@thi.ng/rstream-query 2.1.100 → 2.1.102

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**: 2024-02-10T08:59:57Z
3
+ - **Last updated**: 2024-02-16T20:01:44Z
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.102](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream-query@2.1.102) (2024-02-16)
13
+
14
+ #### ♻️ Refactoring
15
+
16
+ - update LOGGER handling ([fc1df24](https://github.com/thi-ng/umbrella/commit/fc1df24))
17
+
12
18
  ### [2.1.81](https://github.com/thi-ng/umbrella/tree/@thi.ng/rstream-query@2.1.81) (2023-11-09)
13
19
 
14
20
  #### ♻️ Refactoring
package/logger.d.ts CHANGED
@@ -1,4 +1,2 @@
1
- import type { ILogger } from "@thi.ng/logger";
2
- export declare let LOGGER: ILogger;
3
- export declare const setLogger: (logger: ILogger) => ILogger;
1
+ export declare const LOGGER: import("@thi.ng/logger/root").ProxyLogger;
4
2
  //# sourceMappingURL=logger.d.ts.map
package/logger.js CHANGED
@@ -1,7 +1,5 @@
1
- import { NULL_LOGGER } from "@thi.ng/logger/null";
2
- let LOGGER = NULL_LOGGER;
3
- const setLogger = (logger) => LOGGER = logger;
1
+ import { ROOT } from "@thi.ng/logger/root";
2
+ const LOGGER = ROOT.childLogger("rs-query");
4
3
  export {
5
- LOGGER,
6
- setLogger
4
+ LOGGER
7
5
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/rstream-query",
3
- "version": "2.1.100",
3
+ "version": "2.1.102",
4
4
  "description": "@thi.ng/rstream based triple store & reactive query engine",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -36,15 +36,15 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "@thi.ng/api": "^8.9.23",
39
- "@thi.ng/associative": "^6.3.37",
39
+ "@thi.ng/associative": "^6.3.38",
40
40
  "@thi.ng/checks": "^3.4.23",
41
41
  "@thi.ng/equiv": "^2.1.47",
42
42
  "@thi.ng/errors": "^2.4.16",
43
- "@thi.ng/logger": "^2.1.10",
44
- "@thi.ng/math": "^5.9.1",
45
- "@thi.ng/rstream": "^8.3.1",
46
- "@thi.ng/rstream-dot": "^3.0.50",
47
- "@thi.ng/transducers": "^8.9.1"
43
+ "@thi.ng/logger": "^3.0.0",
44
+ "@thi.ng/math": "^5.10.0",
45
+ "@thi.ng/rstream": "^8.3.3",
46
+ "@thi.ng/rstream-dot": "^3.0.52",
47
+ "@thi.ng/transducers": "^8.9.2"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@microsoft/api-extractor": "^7.40.1",
@@ -108,5 +108,5 @@
108
108
  "parent": "@thi.ng/rstream",
109
109
  "year": 2018
110
110
  },
111
- "gitHead": "e5e7d5c6ed2eadee7a91d59cbd0c86ce880ab1c5\n"
111
+ "gitHead": "25ee18f7db6d03f0b76787267ab071d16df94888\n"
112
112
  }