@eik/core 1.3.0 → 1.3.4

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,3 +1,31 @@
1
+ ## [1.3.4](https://github.com/eik-lib/core/compare/v1.3.3...v1.3.4) (2022-01-15)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency busboy to v1.4.0 ([ed0e88b](https://github.com/eik-lib/core/commit/ed0e88b60c0f46b8b1dd80eb1b19f92911174906))
7
+
8
+ ## [1.3.3](https://github.com/eik-lib/core/compare/v1.3.2...v1.3.3) (2022-01-07)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** update dependency @eik/sink to v1.2.1 ([#300](https://github.com/eik-lib/core/issues/300)) ([59ef0a8](https://github.com/eik-lib/core/commit/59ef0a8f2cebe14cd13539759cbaf363093b9b85))
14
+
15
+ ## [1.3.2](https://github.com/eik-lib/core/compare/v1.3.1...v1.3.2) (2022-01-07)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * Expose the internal test sink ([#299](https://github.com/eik-lib/core/issues/299)) ([c3c24a8](https://github.com/eik-lib/core/commit/c3c24a85b3e0be947bd1a06775cf3f92e8feb8e6))
21
+
22
+ ## [1.3.1](https://github.com/eik-lib/core/compare/v1.3.0...v1.3.1) (2022-01-07)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * **deps:** update dependency @eik/sink to v1.2.0 ([#298](https://github.com/eik-lib/core/issues/298)) ([d60a704](https://github.com/eik-lib/core/commit/d60a7047e2451cb4985329e728e2e42acc26bf6d))
28
+
1
29
  # [1.3.0](https://github.com/eik-lib/core/compare/v1.2.29...v1.3.0) (2022-01-07)
2
30
 
3
31
 
package/lib/main.js CHANGED
@@ -10,6 +10,7 @@ import PkgPut from './handlers/pkg.put.js';
10
10
  import MapGet from './handlers/map.get.js';
11
11
  import MapPut from './handlers/map.put.js';
12
12
 
13
+ import TEST from './sinks/test.js';
13
14
  import MEM from './sinks/mem.js';
14
15
  import FS from './sinks/fs.js';
15
16
 
@@ -31,6 +32,7 @@ const http = {
31
32
  };
32
33
 
33
34
  const sink = {
35
+ TEST,
34
36
  MEM,
35
37
  FS,
36
38
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eik/core",
3
- "version": "1.3.0",
3
+ "version": "1.3.4",
4
4
  "description": "Core server package",
5
5
  "main": "lib/main.js",
6
6
  "type": "module",
@@ -20,10 +20,10 @@
20
20
  "license": "MIT",
21
21
  "dependencies": {
22
22
  "@eik/common": "3.0.0",
23
- "@eik/sink": "1.1.0",
23
+ "@eik/sink": "1.2.1",
24
24
  "@metrics/client": "2.5.0",
25
25
  "abslog": "2.4.0",
26
- "busboy": "1.3.0",
26
+ "busboy": "1.4.0",
27
27
  "http-errors": "2.0.0",
28
28
  "mime": "3.0.0",
29
29
  "original-url": "1.2.3",